Borrar filtros
Borrar filtros

why color image is getting displayed as gray image

1 visualización (últimos 30 días)
Elysi Cochin
Elysi Cochin el 13 de Abr. de 2015
Editada: Stephen23 el 13 de Abr. de 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...

Respuesta aceptada

Stephen23
Stephen23 el 13 de Abr. de 2015
Editada: Stephen23 el 13 de Abr. de 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:

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by