can someone write the line code that checks if the image is rgb and convert it to gfrayscale
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i want to make sure if uts rgb because i keep getting the m*3 map error and after it checks if its rgb to convert it to grayscale plz and thank u
0 Kommentare
Antworten (1)
Kevin Holly
am 2 Dez. 2022
If you want a quick fix you can do the following:
try
rgb2gray(Image)
catch
disp("Error using rgb2gray")
end
or you can look at the dimensions of the image:
if size(Image,3)==1
disp('RGB Image')
else
disp('Gray Image')
rgb2gray(Image)
end
0 Kommentare
Siehe auch
Kategorien
Mehr zu Convert Image Type 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!