Why do I see the 3-band image in a single band?

3 visualizaciones (últimos 30 días)
Merve YILDIRIM
Merve YILDIRIM el 30 de Jun. de 2020
Comentada: Merve YILDIRIM el 30 de Jun. de 2020
I have an image(3 bands(RGB)). it is .png file.
a = imread('mervveee.png');
imshow(a)
My color image look like gray image. why?
how can I open colour image?

Respuesta aceptada

SC
SC el 30 de Jun. de 2020
I don't think that should happen. (It would be helpful if you could attach the .png file too)
Try the following, incase:
imdata = imread('mervveee.png');
RC = imdata(:,:,1);
GC = imdata(:,:,2);
BC = imdata(:,:,3);
im = cat(3,RC,GC,BC);
isequal(imdata,im)
imshow(im)

Más respuestas (0)

Categorías

Más información sobre Physics 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