我在目录中有某些图像,我想加载所有这些图像以进行一些处理。我尝试使用该load
功能。
imagefiles = dir('F:\SIFT_Yantao\demo-data\*.jpg');
nfiles = length(imagefiles); % Number of files found
for i=1:nfiles
currentfilename=imagefiles(i).name;
I2 = imread(currentfilename);
[pathstr, name, ext] = fileparts(currentfilename);
textfilename = [name '.mat'];
fulltxtfilename = [pathstr textfilename];
load(fulltxtfilename);
descr2 = des2;
frames2 = loc2;
do_match(I1, descr1, frames1, I2, descr2, frames2) ;
end
我收到一个错误,因为无法读取 xyz.jpg 没有找到这样的文件或目录,其中 xyz 是我在该目录中的第一个图像。
我还想从目录中加载所有格式的图像,而不仅仅是 jpg……我该怎么做?