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

5 views (last 30 days)
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?

Accepted Answer

SC
SC on 30 Jun 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)

More Answers (0)

Categories

Find more on Physics in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!