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

Antworten (1)

Steve Eddins
Steve Eddins am 11 Jan. 2021

0 Stimmen

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

Kategorien

Mehr zu Denoising and Compression finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 11 Jan. 2021

Beantwortet:

am 11 Jan. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by