pgm image lossless compression
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I need a suggestion of algorithm can be used to compress pgm images and retrive it back lossless
0 Commenti
Risposte (1)
Steve Eddins
il 11 Gen 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 Commenti
Vedere anche
Categorie
Scopri di più su Image Segmentation and Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!