Clear Filters
Clear Filters

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

1 view (last 30 days)
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 Comments
Image Analyst
Image Analyst on 16 Aug 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 on 16 Aug 2016
my image is double and this problem happen when i use 2 band or alpha channel

Sign in to comment.

Answers (1)

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

Sign in to comment.

Categories

Find more on Discrete Multiresolution Analysis in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!