Azzera filtri
Azzera filtri

why color image is getting displayed as gray image

1 visualizzazione (ultimi 30 giorni)
i have a color image, when i display it shows as gray image, when i check the size also it shows as d = 1;
Img = imread('Afternoon Rain.bmp');
figure; imshow(Img);
how and why does it come like that...

Risposta accettata

Stephen23
Stephen23 il 13 Apr 2015
Modificato: Stephen23 il 13 Apr 2015
Indexed images also require the use of the map output of imread, which you will find explained in the documentation, along with complete working examples which I only slightly altered for you here:
>> [X,map] = imread('Afternoon Rain.bmp');
>> Y = ind2rgb(X,map);
>> image(Y)
which creates this figure:
You can check if the image is indexed by checking the map output: if it is empty then the image is not indexed. Alternatively you can use an external program to know if an image is indexed: for example this is the image information that GIMP shows, the fourth line clearly states that the colorspace of this image is indexed:

Più risposte (0)

Categorie

Scopri di più su Images in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by