check if the picture exist within the database
5 次查看(过去 30 天)
显示 更早的评论
hello I have read a database of images in matlab, I want to check if all the pictures exist before i run the program, what is the command to check ?
2 个评论
Konstantinos Sofos
2015-3-19
What do you mean by read? You have a list of all the names or you have read them by imread?
回答(1 个)
Konstantinos Sofos
2015-3-19
编辑:Konstantinos Sofos
2015-3-19
Hi,
you could use an exception catcher
Directory = fullfile ('C:','Users','Documents','MATLAB','image');
Images = dir(fullfile(Directory,'*.jpg'));
Names = {Images.name}';
for k=1: numel(Names)
try
I=imread(fullfile(Directory,Names{k}));
catch
error( ...)
end
end
Regards,
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!