pgm image lossless compression
Show older comments
I need a suggestion of algorithm can be used to compress pgm images and retrive it back lossless
Answers (1)
Steve Eddins
on 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');
Categories
Find more on Denoising and Compression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!