how to compute the number of image from subfolder ?

2 visualizaciones (últimos 30 días)
youb mr
youb mr el 7 de Sept. de 2020
Editada: Jan el 7 de Sept. de 2020
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

Respuesta aceptada

Jan
Jan el 7 de Sept. de 2020
Editada: Jan el 7 de Sept. de 2020
fullfile(('.\databasee\')) is exactly the same as its input: '.\databasee\'. The unnecessary parentheses are confusing only.
To get all .jpg images in subfolders:
d = dir('.\databasee\**\*.jpg');
num = numel(d)

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by