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

 채택된 답변

Jonathan Sullivan
Jonathan Sullivan 2012년 3월 2일

0 개 추천

im1_stats = dir(filename_image1);
im2_stats = dir(filename_image2);
ratio = im1_stats.bytes./im2_stats.bytes

댓글 수: 6

kash
kash 2012년 3월 2일
Jonathan in filename_image1 is it
im1_stats = dir(e:\image);
in my case
i get
4x1 struct array with fields:
name
date
bytes
isdir
datenum
i have 10 images
Jonathan Sullivan
Jonathan Sullivan 2012년 3월 2일
kash, You want the file name, not the directory. So for example, let's say that the image your compressed is called image_uncompressed.jpg, and the compressed image is called image_compressed.jpg. Your code should then read:
filename_image1 = 'e:\image\image_uncompressed.jpg';
filename_image2 = 'e:\image\image_compressed.jpg';
im1_stats = dir(filename_image1);
im2_stats = dir(filename_image2);
ratio = im1_stats.bytes./im2_stats.bytes
kash
kash 2012년 3월 2일
Jonathan i have 15images in that folder
Jonathan Sullivan
Jonathan Sullivan 2012년 3월 2일
편집: Walter Roberson 2019년 7월 30일
Oh. I understand now. Try this
folder1_stats = dir(folder1);
folder2_stats = dir(folder2);
size_folder1 = sum([folder1_stats.bytes]);
size_folder2 = sum([folder2_stats.bytes]);
ratio = size_folder1./size_folder2
kash
kash 2012년 3월 2일
Thanks Jonathan
Abdesselam Bassou
Abdesselam Bassou 2017년 11월 23일
txk a lot

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Convert Image Type에 대해 자세히 알아보기

질문:

2012년 3월 2일

편집:

2019년 7월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by