Azzera filtri
Azzera filtri

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

3 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

Walter Roberson
Walter Roberson il 25 Ago 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 Commenti
Image Analyst
Image Analyst il 25 Ago 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.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Read, Write, and Modify Image in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by