double data type in image processing
37 次查看(过去 30 天)
显示 更早的评论
采纳的回答
yanqi liu
2021-11-3
sir,because trait image as uint8 data,0~255
so,double data should set the pixel range,default is []
X=imread('cameraman.tif'); %read the cameraman image
figure; imshow(X)
X=double(X);
figure;imshow(X)
figure;imshow(mat2gray(X))
figure;imshow(X, [])
figure;imshow(X, [20 150])
3 个评论
更多回答(3 个)
KSSV
2021-11-3
Try to read colormap alsp. Any ways for the present image it is empty.
[I,cmap] = imread('cameraman.tif');
imshow(double(I),cmap)
imshow(double(I),[]) % also can be used
Constantino Carlos Reyes-Aldasoro
2021-11-3
Another easy way around this is to divide the doubles by 255
X=imread('cameraman.tif'); %read the cameraman image
X=double(X);
imshow(X/255)
2 个评论
Image Analyst
2021-11-3
Let me try to explain it.
If the image is uint8 it expects the image to be in the range 0-255.
If the image is uint16 it expects the image to be in the range 0-65535.
If the image is double, imshow() assumes the image will be in the range 0-1. Anything below 0 will show up as black. Anything more than 1, like 100 or 255, will show up as white. Your image was all more than 1 so that's why it showed up as all white. There are two "fixes" for this:
The first is to scale your data by dividing it by 255, 65535, or the max value of your image to scale it to the 0-1 range. Then you can use imshow(X) to see the image without clipping to black or white. X is a bad name for an image by the way. You can also change/scale your data by calling one of these:
X2 = im2double(X) ;
X2 = rescale(X, 0, 1);
X2 = gray2mat(X);
imshow(X2);
Of course you can also stick the scaled/changed data back into your original array X if you want.
The other way doesn't require you to change or scale your data, you just use [] in imshow:
imshow(X, []);
This is the way I do it because I usually don't like to change the range of my data - sometimes it causes confusion later. What this does is to take the min of your data and make it black, and the max of your data and make it white. Like if the data went from 40 to 190, 40 would show up as black (0) and 190 as white (255). You can put numbers inside the [] to specify the output range and you can also specify the input range so basically you can do any kind of "window and leveling" (as they call it in the medical field) that you want. In other words, you can have whatever value you want for the min show up as whatever output brightness you want. Same for the max/brightest value. And values in between are scaled linearly in brightness.
Does that explain it well enough? If not, ask questions, especially with specific numbers, and I'll answer them.
3 个评论
Image Analyst
2021-11-5
OK, you can accept only one answer so pick the one that gave the best solution or explained your question best. If any of the other answers were also helpful you can "Vote" for them by clicking on the icon to award the posters reputation points.
另请参阅
类别
在 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!