所有子文件夹中图片个数matlab代码实现

Posted double-vane

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了所有子文件夹中图片个数matlab代码实现相关的知识,希望对你有一定的参考价值。

clc
clear all
close all

%% 查看子文件下有多少张图片

maindir=‘G:\CASIA-maxpy-clean‘;
subdir = dir( maindir ); % 先确定子文件夹
N=0;
lensubdir=length(subdir);
fprintf(‘一共有%d个子文件夹‘,lensubdir-2) ; %去除两个符号文件
for i = 1 : lensubdir
%从第三个开始
if( isequal( subdir( i ).name, ‘.‘ ) || ...
isequal( subdir( i ).name, ‘..‘ ) || ...
~subdir( i ).isdir ) % 如果不是目录跳过
continue;
end
fprintf(‘第%d个子文件夹\n‘,i);
subdirpath = fullfile( maindir, subdir( i ).name, ‘*.jpg‘ );
images = dir( subdirpath ); % 在这个子文件夹下找后缀为jpg的文件
N=N+length(images);
% % 遍历每张图片
% for j = 1 : length( images )
% imagepath = fullfile( maindir, subdir( i ).name, images( j ).name )
% % imgdata = imread( imagepath ); % 这里进行你的读取操作
% end
end
fprintf(‘共有%d个图片‘,N);

以上是关于所有子文件夹中图片个数matlab代码实现的主要内容,如果未能解决你的问题,请参考以下文章

matlab图像处理之检测成熟番茄个数检测

求高手给一个matlab提取图像lbp的代码 谢谢啦

怎样用matlab读取一个文件夹下的多个子文件夹中的多个jpg图片,急用啊~~~

高光谱解混和图片去噪(Matlab代码实现)

利用BPSO与KNN进行特征选择及matlab代码实现

matlab 把一个文件夹下的所有图片(可以包含在子文件夹下)考到指定文件夹下