Create Checker board pattern
5 次查看(过去 30 天)
显示 更早的评论
Hello, im using this code from Matlab help but i get error.
J = checkerboard(20);
figure
imshow(J)
>> Fringe Chessboard
Undefined function or variable 'Fringe'.
Can anyone help please
2 个评论
KSSV
2020-9-30
You can create your own function: https://in.mathworks.com/matlabcentral/answers/356307-how-to-create-a-checkerboard-matrix-without-inbuilt-function
Steve Eddins
2020-9-30
编辑:Steve Eddins
2020-9-30
There is nothing wrong with the code you have quoted from the MATLAB documentation:
J = checkerboard(20);
figure
imshow(J)
That should work as long you have the Image Processing Toolbox installed. (The Image Processing Toolbox contains the checkerboard function.)
The problem is occuring in your next line:
Fringe Chessboard
What is Fringe supposed to be? Is that your function, or a function that somebody gave you? It is not a function in MATLAB or any other MathWorks product.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing and Computer Vision 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!