pgm image lossless compression

I need a suggestion of algorithm can be used to compress pgm images and retrive it back lossless

Respuestas (1)

Steve Eddins
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');

Categorías

Más información sobre Denoising and Compression en Centro de ayuda y File Exchange.

Preguntada:

el 11 de En. de 2021

Respondida:

el 11 de En. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by