Accessing multiple folders and extracting specific image files
Afficher commentaires plus anciens
I have 15 folders and in each of them I have 997 sub-folders.In these subfolders I have multiple folders containing .png image folders and the .jpeg of those images. I want to extract specific .png files that has the name ending with '_out' in the jpeg.
Réponses (3)
KSSV
le 7 Oct 2021
0 votes
And many more links. The question has been addressed multiple times.
Walter Roberson
le 7 Oct 2021
projectdir = 'path/to/place/with/15/folders';
dinfo = dir( fullfile(projectdir, '**', '*_out.png') );
fullnames = fullfile({dinfo.folder}, {dinfo.name});
fullnames will now be a cell array of character vectors naming all the png files that end with '_out' .
You did not give any information about what you might mean by "extract" for this purpose
Image Analyst
le 7 Oct 2021
0 votes
See the FAQ for the answer to that pllus lots of other frequent questions:
Catégories
En savoir plus sur Image Preview and Device Configuration dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!