Threshold values [ 1 2 3 4 5 6 7.. ]
Show older comments
My prof asked me to use brute force method, using threshold value of 1 2 3 4 5 6 7.. on each images i have. May i know why is there so many value? i thot it's using level between 0 - 1? thanks!
3 Comments
Honglei Chen
on 18 Oct 2012
Why not just ask your professor? The image could have a gray scale between 0 and 255.
Walter Roberson
on 18 Oct 2012
Out1 = YourImage < 1;
Out2 = YourImage < 2;
Out3 = YourImage < 3; %...
Answers (0)
Categories
Find more on Image Thresholding in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!