How can I write an image mat array (class:double) of values ranging from -182000 to 137081 into gray/color image file using 'imwrite' function? Because using the below code misses so many pixels in the final image.
1 回表示 (過去 30 日間)
古いコメントを表示
load CT;
colormap(jet);
figure, imagesc(sum_CT);
set(gca,'XTickLabel',[],'YTickLabel',[]);
imwrite(sum_CT,'CT.bmp', 'bmp');
0 件のコメント
採用された回答
Walter Roberson
2013 年 6 月 3 日
Have a look at the imwrite() documentation:
If the input array is of class double, and the image is a grayscale or RGB color image, imwrite assumes the dynamic range is [0,1] and automatically scales the data by 255 before writing it to the file as 8-bit values.
Any negative double values you try to write will thus end up clipped at 0.
If you are trying to write the equivalent of the imagesc() then you need to do the scaling yourself before you imwrite() the result.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!