imread() wrong gray values

29 views (last 30 days)
Kaijun
Kaijun on 26 Mar 2020
Answered: Walter Roberson on 27 Mar 2020
When I tried to imread an simple gray scale image I drew in paint.net, the gray scale of the image data was totally off -- the background changed from origianl white (255) to some random gray value (55).
  1 Comment
Image Analyst
Image Analyst on 27 Mar 2020
Unfortunately you forgot to attach your image with the paper clip icon. I'll check back tomorrow.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 27 Mar 2020
The image file is not RGB, it is an colormapped image.
[img,cmap] = imread('image.png');
RGB = ind2rgb(img,cmap);
imshow(RGB)

More Answers (0)

Categories

Find more on Image Processing Toolbox 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!