how save image in jpeg format by keeping pixel value?

20 次查看(过去 30 天)
i have an rgb image in double format and i want to save it as jpeg so i convert it to uint8 and use imwrite to save it but it changes pixel value . how can i save it by keeping values beacuse i need former values?
  1 个评论
sb icse
sb icse 2018-11-23
Have you found out the solution to your question?If yes then can you share the code and thank you in advance.

请先登录,再进行评论。

回答(2 个)

Walter Roberson
Walter Roberson 2016-6-21
imwrite(YourImage, 'YourFile.jpg', 'mode', 'lossless')
This will use the seldom-used JPEG lossless compression.
I would advise that unless you have a strict requirement to use JPEG that instead you use one of the lossless image formats such as PNG or TIFF. When you use JPEG, it is all too likely that at some point someone (you) will forget (or not know) that it is important that the pixels remain unchanged when read back in.
Note: if you are trying to do watermarking or steganography, then you should pretty much assume that the image will be converted to lossy JPEG at some point, and you need the information to survive even so. One of the several ways to handle that is to do your own DCT, embed the information in the DCT coefficients, and do an inverse DCT and imwrite() that. Then when the JPEG library does its DCT, the result it is going to end up with will be the result that holds the embedded information. For recovery afterwards, DCT the loaded image and extract the bits.
  7 个评论
Doanh Ho
Doanh Ho 2018-7-13
Thank you Walter, I want to embed bits to the DC Coefficient. I do dct() on R value, quantize the dctmaxtrix, modifiy the DC coefficient to embed a bit and then do an inverse dct to get back the new R value. Then I save the image with new R value.
image.save(output_file, format='JPEG', subsampling=0, quality=95)
After saving jpeg, it compresses and when I read the image back, I cannot got the new R value. I think I'm wrong when I do image.save() by this way. Because it compressed the image one more time and change RGB value. Could you pleased give me some guides to get the right value after idct() and get the new R value. How to save the new R value? Thank you so much.
Walter Roberson
Walter Roberson 2018-7-13
image.save(output_file, format='JPEG', subsampling=0, quality=95)
is not MATLAB code.

请先登录,再进行评论。


Muhammad Usman Saleem
try this
save('myimage.gpeg','originalImage');
  1 个评论
Walter Roberson
Walter Roberson 2016-6-21
编辑:Walter Roberson 2016-6-21
That would result in something that was in .mat file format but with a .gpeg file extension, and which would not be readable by any image viewer.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by