pgm image lossless compression
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I need a suggestion of algorithm can be used to compress pgm images and retrive it back lossless
0 comentarios
Respuestas (1)
Steve Eddins
el 11 de En. de 2021
Write the image to a PNG file. The PNG format uses lossless compression.
imwrite(A,'myfile.png')
Read it back in using imread.
A_retrieved = imread('myfile.png');
0 comentarios
Ver también
Categorías
Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!