pgm image lossless compression
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I need a suggestion of algorithm can be used to compress pgm images and retrive it back lossless
0 commentaires
Réponses (1)
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');
0 commentaires
Voir également
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!