pgm image lossless compression

9 vues (au cours des 30 derniers jours)
Varsha Nataraj
Varsha Nataraj le 11 Jan 2021
I need a suggestion of algorithm can be used to compress pgm images and retrive it back lossless

Réponses (1)

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

Catégories

En savoir plus sur Image Segmentation and Analysis dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by