Borrar filtros
Borrar filtros

how to save image in png format by keeping data values?

1 visualización (últimos 30 días)
Jack Moriss
Jack Moriss el 16 de Ag. de 2016
Comentada: Jack Moriss el 17 de Ag. de 2016
hi...i apply dwt on redchannel of an image and after that i change pixel value of hh and hl bands and apply idwt and after obtain new image i save it in png format. in extraction part the value of hh band is correct but HL band has changed.Why is this happening?while png format is losseless
  2 comentarios
Image Analyst
Image Analyst el 16 de Ag. de 2016
Is HL integer or floating point? (Sorry, I'm not that familiar with wavelets.) And can PNG handle floating point - I don't know since I only use PNG for integer images.
Jack Moriss
Jack Moriss el 16 de Ag. de 2016
my image is double and this problem happen when i use 2 band or alpha channel

Iniciar sesión para comentar.

Respuestas (1)

Image Analyst
Image Analyst el 16 de Ag. de 2016
Why do you need PNG format? If you just need to recall it in MATLAB, use a .mat file. Otherwise, if other programs, like Photoshop need to use it, then convert it to uint8.
image8 = uint8(255 * mat2gray(HLImage));
imwrite(image8, filename);
  1 comentario
Jack Moriss
Jack Moriss el 17 de Ag. de 2016
it is a steganography project and i need to save it in one of image format but all of them loss information

Iniciar sesión para comentar.

Categorías

Más información sobre Discrete Multiresolution Analysis en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by