What the imfinfo function of matlab return size of compressed or uncompressed image?
1 回表示 (過去 30 日間)
古いコメントを表示
I imfinfo function of the matlab return the size of image in bytes. I want to know whether it returns size of the compressed or uncompressed jpeg image?
0 件のコメント
採用された回答
Walter Roberson
2016 年 8 月 25 日
The FileSize field it returns is the size of the file on disk. If you want to know the size of the uncompressed JPEG image you can multiply Width times Height times BitDepth and divide by 8
3 件のコメント
Image Analyst
2016 年 8 月 25 日
Yes. When it's on disk, it's compressed. It only gets decompressed after you call imread() which reads it from disk, uncompresses it, and places it into the variable you specified.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Import, Export, and Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!