Problem with imwrite a color image
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Angela
el 14 de Ag. de 2018
Comentada: Angela
el 16 de Ag. de 2018
I am trying to save the output color image of a program as a jpg or png file. I have tried
outfile='image.jpg'
imwrite(im2uint16(Image),outfile,'BitDepth',12,'Mode','lossless','Quality',100)
When i tried to open this using Gimp or ImageMagick , the image could not open, it was not recognized. Can anyone suggest the right way to save a color image as a jpg using imwrite? Thank you.
4 comentarios
Respuesta aceptada
Image Analyst
el 14 de Ag. de 2018
Photoshop doesn't recognize it either. But this works:
rgbImage = imread('peppers.png');
outfile='image.jp2' % JPEG 2000
imwrite(im2uint16(rgbImage),outfile,'Mode','lossless')
And I'd recommend you use PNG rather than JPG or JPEG2000 (jp2).
PNG has pretty much become the widespread de facto standard.
8 comentarios
Walter Roberson
el 15 de Ag. de 2018
Editada: Walter Roberson
el 15 de Ag. de 2018
writejpg>set_jpeg_props would never be called for file extension .png .
If you go the dual-file route, then
imwrite(im2uint16(rgbImage), 'newimage.png'); %for archive quality
imwrite(im2uint8(rgbImage), 'newimage.jpg'); %for quick access that is not archive quality
Más respuestas (1)
Walter Roberson
el 14 de Ag. de 2018
JPEG does not support 16 bit images. Some JPEG libraries support 12 bit images.
JPEG XR supports 16 bit images, but MATLAB does not support JPEG XR.
8 comentarios
Walter Roberson
el 16 de Ag. de 2018
.. So write two copies of the image like I suggested, one archive quality and the other reduced bit depth for speed.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!