Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Jack Moriss
Jack Moriss le 16 Août 2016
Commenté : Jack Moriss le 17 Août 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 commentaires
Image Analyst
Image Analyst le 16 Août 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 le 16 Août 2016
my image is double and this problem happen when i use 2 band or alpha channel

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 16 Août 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 commentaire
Jack Moriss
Jack Moriss le 17 Août 2016
it is a steganography project and i need to save it in one of image format but all of them loss information

Connectez-vous pour commenter.

Catégories

En savoir plus sur Discrete Multiresolution Analysis dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by