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

2 次查看(过去 30 天)
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?

采纳的回答

SC
SC 2020-6-30
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)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Physics 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by