read all .exr files

조회 수: 3 (최근 30일)
shazwani seth
shazwani seth 2016년 12월 6일
댓글: Walter Roberson 2016년 12월 7일
Hi, I'm using this user-defined function (exrread) to read .exr file but how can I read all of my .exr files at once? I try to use dir and put .* after the name of the file but I still couldn't get the list of all my files. k=exrread('file.exr'); This k value will be used to calculate MSE.

답변 (1개)

Walter Roberson
Walter Roberson 2016년 12월 6일
dinfo = dir('*.exr');
nfile = length(dinfo);
for K = 1 : nfile
thisfile = dinfo(K).name;
try
data = exrread(thisfile);
fprintf('Was able to read file "%s"\n', thisfile);
catch
fprintf('Was not able to read file "%s"\n', thisfile);
end
end
  댓글 수: 4
shazwani seth
shazwani seth 2016년 12월 7일
I have 94 compressed images to be compared to their respective original images.
Walter Roberson
Walter Roberson 2016년 12월 7일
Are the compressed files and the original files in different directories? Given the name of a compressed file, how can you determine the name of the original file (or the other way around) ?

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

카테고리

Help CenterFile Exchange에서 Import, Export, and Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by