hello every one i want to compute the number of images from image dataset witch have many subfolder d = dir(fullfile(('.\databasee\'))) num =length(d) witch databasee it's the folder that contain many subfolder of images when i run the code it doesn't give me the number of imges
Prashant Kumar answered .
2025-11-20
d = dir('.\databasee\**\*.jpg');
num = numel(d)