how to get binary image from histogram?
5 ビュー (過去 30 日間)
古いコメントを表示
I'm new to matlab. Some on please help me to obtain binary segmentation form histogram.
thank you
0 件のコメント
回答 (1 件)
Image Analyst
2014 年 3 月 13 日
You pick a threshold and then do
binaryImage = grayImage < thresholdValue;
if you want any more advice, post an image and say what you want to find or measure. The threshold can be chosen form the histogram, for example from my interactive thresholding application: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
4 件のコメント
Image Analyst
2014 年 3 月 14 日
[pixelCounts, grayLevels] = imhist(grayImage, 256);
binaryImage = grayImage < 128;
Do the above thresholding for each color channel and then AND the 3 binary images to get the overall binary image for the color image.
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
