Filter löschen
Filter löschen

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

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

Akzeptierte Antwort

Image Analyst
Image Analyst am 25 Mai 2018
Yes. Very easy:
redChannel = rgbImage(:, :, 1); % Extract the red channel only into a gray scale image.
  3 Kommentare
Image Analyst
Image Analyst am 25 Mai 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.
Ghazal Hnr
Ghazal Hnr am 25 Mai 2018
Thank you for your response.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Modify Image Colors finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by