How to I get a threshold value from looking at histogram
Show older comments
I need to get a threshold value not by looking at the graph I was told there is a way to calculate the threshold value from the histogram, Can someone help me
2 Comments
Youssef Khmou
on 29 Mar 2015
what is the purpose of this threshold ?
Chok Chuan
on 29 Mar 2015
Edited: Chok Chuan
on 29 Mar 2015
Answers (1)
Youssef Khmou
on 29 Mar 2015
Otsu's method exists as built in function with name graythresh, here is an example taken from Mathworks help page :
I = imread('coins.png');
level = graythresh(I);
BW = im2bw(I,level);
there might be other techniques to choose an adequate threshold.
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!