How to fix graythresh error?
4 views (last 30 days)
Show older comments
Hello,
I have a simple problem with matlab.
when I run below code , it return error.
whats the problem?
I=imread('coins.png');
level=graythresh(I);
how can I fix it?
0 Comments
Accepted Answer
Image Analyst
on 27 Sep 2021
The code you gave runs fine:
I=imread('coins.png');
level=graythresh(I)
0 Comments
More Answers (0)
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!