how to save a double m*n*3 matrix as one of image formats with no losing informataion?
4 次查看(过去 30 天)
显示 更早的评论
Hi. I have a double m*n*3 matrix and I want to save it as one of the standard image formats. I converted it to uint16, and saved it as png:
imwrite(im2uint16(im)),'rgb.png','BitDepth',16,'map','RGB','Mode','lossless');
but when I read it again
i =imread('rgb.png');
% convert it to double again
i=im2double(i)*255;
some pixels had changed one number bigger or smaller. How can I prevent it?
0 个评论
回答(1 个)
Image Analyst
2016-9-10
Don't use im2uint16. Just use uint16. Your floating point data had better be integers in the uint16 range though. Otherwise the number will get changes as it's rounded to the nearest integer. If you want to retain the full floating point accuracy, then use save() to save it to a .mat file, instead of using imwrite().
另请参阅
类别
在 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!