color-problem with imread and image

I'm working on a mirror anamorphosis by a cilindrical mirror. I'm having a problem with using colors. The problem can be reduced to this simple script:
picture = imread('pict.jpg')
image(picture)
This is the picture that I want to get:
This is the picture that I do get:
Does anyone know what went wrong? Many thanks.

5 Comments

Not sure what your edit was, but with what I see now, my answer below still stands.
OK. I get the problem now and I've found the solution. Thank you.
The answer is unclear to me, Can someone clarify?
@Omer Al Sumeri, sure. Just start a new thread and attach your indexed image file. There, show us a screenshot of what you're getting when you use my answer from below
[indexedImage, cmap] = imread('Charizard.jpg.png');
imshow(indexedImage, cmap);

Sign in to comment.

 Accepted Answer

Image Analyst
Image Analyst on 13 Aug 2017
It's an indexed image. Get the second output of imread(), which you are not asking for now. It will be the color map. Then apply it with the colornap() function.

2 Comments

[indexedImage, cmap] = imread('Charizard.jpg.png');
imshow(indexedImage, cmap);
Glad this fixed it for you. If you're done, you can "Accept" the answer.

Sign in to comment.

More Answers (0)

Categories

Find more on Convert Image Type in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!