Adaptive threshold segmentation method
2 ビュー (過去 30 日間)
古いコメントを表示
mohd akmal masud
2020 年 11 月 1 日
コメント済み: mohd akmal masud
2020 年 11 月 1 日
Hi all
i just try adaptive method for segmentation.
but i want to know what does mean by this coding
I = imread('rice.png');
BW = imbinarize(I,T);
T = adaptthresh(I, 0.4);
figure
imshowpair(I, BW, 'montage')
what is 0.4 mean?
is it percentage? 40%?
0 件のコメント
採用された回答
Image Analyst
2020 年 11 月 1 日
They call that the sensitivity. Not really sure what it means without digging into the algorithm, but basically try different values until it works like you want. Some values may do a better job at segmentation than others.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!