how to use otsu's method image segmentation?
1 view (last 30 days)
Show older comments
hye everyone, i'm learning about otsu's method. can someone please tell me about the step and example of the algorithm in matlab. i'm new user of matlab and i don't know much. please help me.
0 Comments
Accepted Answer
Guillaume
on 10 Dec 2014
I = imread('coins.png');
level = graythresh(I);
BW = im2bw(I,level);
imshow(BW)
0 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!