Borrar filtros
Borrar filtros

how to save a double m*n*3 matrix as one of image formats with no losing informataion?

2 visualizaciones (últimos 30 días)
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?

Respuestas (1)

Image Analyst
Image Analyst el 10 de Sept. de 2016
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().
  1 comentario
Jack Moriss
Jack Moriss el 10 de Sept. de 2016
but it is a steganography project and i need to save it in image format when i change the pixels and apply idwt on one of image channels it becomes double and after rejoin rgb component the image is in double format i realy dont know what to do for keeping pixels unchanging

Iniciar sesión para comentar.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by