how to use otsu's method image segmentation?

1 view (last 30 days)
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.

Accepted Answer

Guillaume
Guillaume on 10 Dec 2014
Isn't the example and explanation in the documentation of the function ( graythresh) enough?
I = imread('coins.png');
level = graythresh(I);
BW = im2bw(I,level);
imshow(BW)

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!