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

2 次查看(过去 30 天)
hello., i need ur guidance to read the pixel values of rgb image and convert those to binary representation.,
thanks in advance

采纳的回答

Image Analyst
Image Analyst 2014-3-27
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 个评论
Image Analyst
Image Analyst 2014-3-27
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by