Images don't show with imshow after converting them to double.
Show older comments
Hello all,
I have a very simple code, pic.png is a greyscale image:
I = imread('pic.png');
imshow(I); %displays the picture without problems
I = double(I);
imshow(I) %only displays white, nothing more.
I find this weird, why does it do this?
3 Comments
Ali Waqas
on 11 Oct 2015
You should use im2double() function for converting images to double precision!
Image Analyst
on 11 Oct 2015
Not necessarily. What if your double image is an array of temperatures? Using im2double() would cause all of the temperatures to change, which would be a major inconvenience to you.
Walter Roberson
on 11 Oct 2015
im2double() is discussed in the existing Answers, with reasoning and possible disadvantages discussed as well.
Accepted Answer
More Answers (4)
Image Analyst
on 2 Oct 2013
I wouldn't use im2double. It's usually inconvenient to scale your image when you want to do some operations, like convolution or whatever. All you need to do is to simply use [] in imshow():
imshow(yourDoubleImage, []);
and it will work beautifully for gray scale images. If it's a color image though, that won't work, you'd have to case to uint8 to display or use im2double and, unfortunately, have to deal with altered intensity values. I prefer the casting to uint8 which usually works if your values remain in the range of about 0-255. Step through this demo and it will illustrate the different things that happen depending on what you do.
% Read in a gray scale image and make it double
% in the range 0-255.
doubleGrayImage = double(imread('moon.tif'));
subplot(2,2,1);
imshow(doubleGrayImage, []) % Doesn't look right.
% Read in a gray scale image and make it double
% in the range 0-1.
doubleGrayImage = im2double(imread('moon.tif'));
subplot(2,2,2);
imshow(doubleGrayImage, []) % Doesn't look right.
% Read in an image and make it double
% in the range 0-255.
doubleRGBImage = double(imread('peppers.png'));
subplot(2,2,3);
imshow(doubleRGBImage, []) % Doesn't look right.
% Read in an image and make it double
% in the range 0-1.
doubleRGBImage = im2double(imread('peppers.png'));
subplot(2,2,4);
imshow(doubleRGBImage) % Now looks right, but values are changed.
Sean de Wolski
on 2 Oct 2013
You could also just show it over the full range by using the [] input to imshow:
imshow(I,[])
Amit Nambiar
on 2 Oct 2013
1 vote
I=uint8(round(I-1))
imshow(I)
do this to convert and show a double image...
Visweshwar Srinivasan
on 4 Dec 2017
0 votes
Simple! See, double values are just integer values, the reason why imshow doesn't work with double values is because it is made to work only with 8bit values. Hence, either convert double values to 8 bit integer values using uint8([double value]) command or use the im2double() statement which does this internally!
2 Comments
"reason why imshow doesn't work with double values is because it is made to work only with 8bit values"
Actually imshow works perfectly with double values.
Note that the solution Image Analyst gave is simpler, and does not require changing the data itself:
imshow(yourDoubleImage, [])
Image Analyst
on 4 Dec 2017
"double values are just integer values" is another incorrect statement.
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!