Clear Filters
Clear Filters

How to convert red channel of a rgb image to grayscale image?

4 views (last 30 days)
I have some rgb images. I want to know is there any way to only convert the red channel of them to grayscale?

Accepted Answer

Image Analyst
Image Analyst on 25 May 2018
Yes. Very easy:
redChannel = rgbImage(:, :, 1); % Extract the red channel only into a gray scale image.
  3 Comments
Image Analyst
Image Analyst on 25 May 2018
That is a bad explanation and they should know better. When you extract the red channel, it is already a grayscale image at that point -- there is no need for a second step of converting it to a gray scale image.

Sign in to comment.

More Answers (0)

Categories

Find more on Modify Image Colors 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!