gpt4 book ai didi

image - 从目录加载所有图像

转载 作者:太空宇宙 更新时间:2023-11-03 19:31:23 24 4
gpt4 key购买 nike

我在目录中有某些图像,我想加载所有这些图像以进行一些处理。我尝试使用 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...我该怎么做?

最佳答案

您可以轻松加载多个相同类型的图像,如下所示:

function Seq = loadImages(imgPath, imgType)
%imgPath = 'path/to/images/folder/';
%imgType = '*.png'; % change based on image type
images = dir([imgPath imgType]);
N = length(images);

% check images
if( ~exist(imgPath, 'dir') || N<1 )
display('Directory not found or no matching images found.');
end

% preallocate cell
Seq{N,1} = []

for idx = 1:N
Seq{d} = imread([imgPath images(idx).name]);
end
end

关于image - 从目录加载所有图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15655177/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com