imread error: Unable to determine the file format.
2 views (last 30 days)
Show older comments
EDIT:: problem solved, reason for crash is corrupted image files.
i have the following code, it calculate the mean image of multiple of images (under frames folder)
i tested the same code with 40 images and it worked fine.
cd '/Users/macuser/Desktop/frames/';
fileList= dir('frame*.png');
listLength= length(fileList);
im= rgb2gray(imread(fileList(1,1).name));
sumImage= double(im);
for i=2:listLength
grayImage= rgb2gray(imread(fileList(i,1).name));
sumImage = sumImage + double(grayImage);
end;
meanImage = sumImage/listLength;
listLength
imshow(meanImage,[]);
however when i tested it with 100 images i get the error [Unable to determine the file format.]
Error using imread (line 362)
Unable to determine the file format.
Error in framesMean (line 24)
grayImage= rgb2gray(imread(fileList(i,1).name));
i've tried to trace the error, line 24 which is causing the error works fine when i get it out of the loop.
fileList(i,1).name gets the full file name including the file extension ( png).
i can't find the cause of the error. any help would be appreciated.
2 Comments
Image Analyst
on 31 Dec 2016
What is the i value when it crashes? What is the filename when that happens? Can you attach that image here? It seems to be corrupt. Can you open it in Photoshop?
Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!