how to use otsu's method image segmentation?

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

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)

Asked:

on 10 Dec 2014

Answered:

on 10 Dec 2014

Community Treasure Hunt

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

Start Hunting!