determing file size

5 views (last 30 days)
kash
kash on 2 Mar 2012
Edited: Walter Roberson on 30 Jul 2019
I have images in two folders,in e drive,one folder consists of normal images ,and other compressed images
image(foldername)consists of original images
image1(foldername)consists of compressed folder
i want to calculate the size of each folder and compression ratio,please help

Accepted Answer

Jonathan Sullivan
Jonathan Sullivan on 2 Mar 2012
im1_stats = dir(filename_image1);
im2_stats = dir(filename_image2);
ratio = im1_stats.bytes./im2_stats.bytes
  6 Comments
kash
kash on 2 Mar 2012
Thanks Jonathan
Abdesselam Bassou
Abdesselam Bassou on 23 Nov 2017
txk a lot

Sign in to comment.

More Answers (0)

Categories

Find more on Convert Image Type 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!