Info
この質問は閉じられています。 編集または回答するには再度開いてください。
I have a binary image wit noise. i found the thresholding value is 96 by randomly applying it to the image. can any one help me provide code for calculating the threshold value equal to 96, its ok if any help me to with the method of calculating it..
1 回表示 (過去 30 日間)
古いコメントを表示
its ok even if i get a algorithm or concept..
0 件のコメント
回答 (1 件)
venkat vasu
2012 年 10 月 22 日
Hi...
You can get in command window itself to type a help graythresh or see the code below
I = imread('coins.png');
level = graythresh(I);
BW = im2bw(I,level);
figure, imshow(BW)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!