Clear Filters
Clear Filters

What the imfinfo function of matlab return size of compressed or uncompressed image?

3 views (last 30 days)
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?

Accepted Answer

Walter Roberson
Walter Roberson on 25 Aug 2016
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 Comments
Image Analyst
Image Analyst on 25 Aug 2016
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.

Sign in to comment.

More Answers (0)

Categories

Find more on Read, Write, and Modify Image 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!