Images don't show with imshow after converting them to double.
54 次查看(过去 30 天)
显示 更早的评论
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 个评论
Image Analyst
2015-10-11
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
2015-10-11
im2double() is discussed in the existing Answers, with reasoning and possible disadvantages discussed as well.
采纳的回答
Walter Roberson
2013-10-2
MATLAB looks at the datatype to decide which range of values to expect. uint8 are expected to be 0 to 255. double are expected to be 0 to 1. When you double() a uint8 you end up with 0. to 255. and everyt value from 1 upwards will be considered to saturate the maximum 9 to 1 range.
You im2double() instead of double()
更多回答(4 个)
Image Analyst
2013-10-2
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
2013-10-2
You could also just show it over the full range by using the [] input to imshow:
imshow(I,[])
0 个评论
Visweshwar Srinivasan
2017-12-4
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 个评论
Stephen23
2017-12-4
编辑:Stephen23
2017-12-4
"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, [])
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!