pgm image lossless compression
1 回表示 (過去 30 日間)
古いコメントを表示
I need a suggestion of algorithm can be used to compress pgm images and retrive it back lossless
0 件のコメント
回答 (1 件)
Steve Eddins
2021 年 1 月 11 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!