How to I get a threshold value from looking at histogram
12 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Youssef Khmou
2015 年 3 月 29 日
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.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!