How to convert red channel of a rgb image to grayscale image?
7 views (last 30 days)
Show older comments
I have some rgb images. I want to know is there any way to only convert the red channel of them to grayscale?
0 Comments
Accepted Answer
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
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.
More Answers (0)
See Also
Categories
Find more on Modify Image Colors in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!