Adaptive threshold segmentation method
2 次查看(过去 30 天)
显示 更早的评论
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!