Filter löschen
Filter löschen

why color image is getting displayed as gray image

1 Ansicht (letzte 30 Tage)
Elysi Cochin
Elysi Cochin am 13 Apr. 2015
Bearbeitet: Stephen23 am 13 Apr. 2015
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...

Akzeptierte Antwort

Stephen23
Stephen23 am 13 Apr. 2015
Bearbeitet: Stephen23 am 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:

Weitere Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by