Filter löschen
Filter löschen

how to get binary image from histogram?

1 Ansicht (letzte 30 Tage)
Ibrahim Thorig
Ibrahim Thorig am 13 Mär. 2014
Kommentiert: Image Analyst am 14 Mär. 2014
I'm new to matlab. Some on please help me to obtain binary segmentation form histogram.
thank you

Antworten (1)

Image Analyst
Image Analyst am 13 Mär. 2014
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 Kommentare
Ibrahim Thorig
Ibrahim Thorig am 14 Mär. 2014
sorry its histogram, initially generate histogram of the image, then remove background, so the only white area (image) should show.
Image Analyst
Image Analyst am 14 Mär. 2014
[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.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by