Borrar filtros
Borrar filtros

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

3 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

Walter Roberson
Walter Roberson el 25 de Ag. de 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 comentarios
Image Analyst
Image Analyst el 25 de Ag. de 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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by