how to read the pixels of image and convert it to binary representation?

1 view (last 30 days)
hello., i need ur guidance to read the pixel values of rgb image and convert those to binary representation.,
thanks in advance

Accepted Answer

Image Analyst
Image Analyst on 27 Mar 2014
You can threshold
binaryImageRed = rgbImage(:,:,1) > someThresholdValueR;
binaryImageGreen = rgbImage(:,:,2) > someThresholdValueG;
binaryImageBlue = rgbImage(:,:,3) > someThresholdValueB;
What are you thinking would be foreground and what is background? I can't tell because you forgot to attach your image.
  3 Comments
Image Analyst
Image Analyst on 27 Mar 2014
You should use imshow() instead of disp(). imshow() displays the image while disp spews every pixel value in decimal to the command window (not what you want).
Also, I don't know what the binstring stuff is for. I'd get rid of it.

Sign in to comment.

More Answers (0)

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!