How to remove G from RGB image

12 次查看(过去 30 天)
How would you remove G from an RGB image?
  2 个评论
Image Analyst
Image Analyst 2013-10-5
What does this mean? Do you want to set the entire green channel to zero, like Walter did? Do you want to set green looking objects in the image to black? Do you want to go from a 3D color array with 3 color channels to a 3D array with only two color channels? Do you want to extract (segment) the green objects in the image and place them in a new, separate image? Please explain what you want to do so we can remove the uncertainty in your question.

请先登录,再进行评论。

采纳的回答

Feynman
Feynman 2013-10-5
This is for a project and the purpose of this specific task is to see the effects of removing a channel from an image. My professor asks that we create a new matrix that does not include the green color values I am not sure whether he means complete removal of the channel or setting it to 0. He gives an example of what the image is suppose to look like before and after and once he creates the new image (picture of a man), the man is purple.
  2 个评论
dk
dk 2013-10-5
when you remove all green by setting the green layer to 0, the image will look purple-ish as red + blue is roughly purple.
Image Analyst
Image Analyst 2013-10-5
This is what Walter correctly guessed that you meant. His code does that - did you try it yet? Please try it and then mark his answer "Accepted".
You can't display anything except a one color channel image or a three color channel image. If you want anything else (2 colors, 4, 5, 6, etc. hyperspectral image), then you're going to have to figure out some way to get it into a 3 channel true color image. So I doubt he meant to remove the second color channel and almost certainly meant to just set it to 0, which is what Walter's code does.

请先登录,再进行评论。

更多回答(1 个)

Walter Roberson
Walter Roberson 2013-10-5
YourImage = imread('TheImage.jpg');
YourImage(:,:,2) = 0;
image(YourImage);
imwrite(YourImage, 'TheNewImage.jpg');

Community Treasure Hunt

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

Start Hunting!

Translated by