How do I check if an image is RGB color or gray scale before execution?

85 vues (au cours des 30 derniers jours)
How do I check if an image is RGB (true color) or gray scale before execution of my code?

Réponse acceptée

Image Analyst
Image Analyst le 1 Sep 2015
See this snippet where I check if the number of color channels is 1 and then, if it's not, and I wanted a grayscale image instead of an RGB image, I convert it to gray scale:
grayImage = imread(fullFileName);
% Get the dimensions of the image.
% numberOfColorBands should be = 1.
[rows, columns, numberOfColorChannels] = size(grayImage);
if numberOfColorChannels > 1
% It's not really gray scale like we expected - it's color.
% Convert it to gray scale by taking only the green channel.
grayImage = grayImage(:, :, 2); % Take green channel.
end
Of course you can call the image array anything you want, and check if numberOfColorChannels > 1 or if numberOfColorChannels == 3, or however you want to do it, and then take whatever actions you want to based on knowing how many color channels it has.
  2 commentaires
Martin Makay
Martin Makay le 30 Juin 2021
Your code helped me out big time, stay cool bro.
Image Analyst
Image Analyst le 30 Juin 2021
@Martin Makay, thanks for the nice comment.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by