今天写程序的时候,要处理一个文件夹及其子文件夹下的所有图片,所以有了如下代码
clc;clear all;
srcDir=uigetdir('Choose source directory');
cd(srcDir);
p = genpath(srcDir);% 获得文件夹data下所有子文件的路径,这些路径存在字符串p中,以';'分割
length_p = size(p,2);%字符串p的长度
path = {};%建立一个单元数组,数组的每个单元中包含一个目录
temp = [];
for i = 1:length_p %寻找分割符';',一旦找到,则将路径temp写入path数组中
if p(i) ~= ';'
temp = [temp p(i)];
else
temp = [temp '\']; %在路径的最后加入 '\'
path = [path ; temp];
temp = [];
end
end
clear p length_p temp;
%至此获得data文件夹及其所有子文件夹(及子文件夹的子文件夹)的路径,存于数组path中。
%下面是逐一文件夹中读取图像
file_num = size(path,1);% 子文件夹的个数
for i = 1:file_num
file_path = path{i}; % 图像文件夹路径
img_path_list = dir(strcat(file_path,'*.jpg'));
img_num = length(img_path_list); %该文件夹中图像数量
if img_num > 0
for j = 1:img_num
image_name = img_path_list(j).name;% 图像名
image = imread(strcat(file_path,image_name));
fprintf('%d %d %s\n',i,j,strcat(file_path,image_name));% 显示正在处理的路径和图像名
%图像处理过程 省略
end
end
end
然而循环到第二遍时matlab报错:没有为类 'struct' 的值定义函数 'subsindex'。指向
img_num = length(img_path_list); %该文件夹中图像数量
这一语句
这说明问题出在img_path_list这个结构体身上,我也不知道为什么会出错,但是将结构体更改为cell矩阵以后,问题就解决了
img_path_list = struct2cell(dir(strcat(file_path,'*.jpg')));
[k1,img_num]=size(img_path_list); %该文件夹中图像数量
if img_num > 0
for ii = 1:img_num
name = img_path_list{1,ii};% 图像名
%图像处理过程