imfinfo unable to open a file

조회 수: 25 (최근 30일)
Pavlov
Pavlov 2014년 8월 26일
댓글: David Young 2017년 8월 15일
My goal is ultimately to get time stamps for a large number of JPEG images so that I know the time that each frame of video data was collected.
cd(video_dir);
info = imfinfo([video_dir],'jpg');
Which gives the error, "Unable to open file ..." (imfinfo line 163).
I've used this function successfully to extract information about tiff images on the same data, but I don't see why this isn't working for JPEG images.

답변 (2개)

dpb
dpb 2014년 8월 26일
info = imfinfo([video_dir],'jpg');
Because you didn't give imfinfo a legitimate file name...it's simply looking for a filename that is just a directory name with '.jpg' appended.
There's no indication in the doc's that imfinfo can work on multiple files at a time via wildcard expansion, use dir for that and the process the resulting structure.

Ben11
Ben11 2014년 8월 26일
It looks like you try to open a directory instead of an image. I tried your syntax and got the same error.
What if you try something like this:
imfinfo(strcat(video_dir,'/YourImageName.jpg'))
  댓글 수: 1
David Young
David Young 2017년 8월 15일
Better to use fullfile than strcat.

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

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by