Info
This question is closed. Reopen it to edit or answer.
how to process a folder of files and save them in different folder with the same file name
1 view (last 30 days)
Show older comments
i have a database of iris images in 224 folders, each corresponding to 224 subjects. Now the database has a label 'L' or 'R' which designates left or right eye. There are 1288 images from 224 subject that are from left eyes while the rest images from 211 subjects are from right eyes.Except folders 1-13, 27, 55 and 65 all other folders have five left and 5 right eye images. Now,i want to read each image from the folder and do some calculations and save the output in another folder.can anyone help me with this??? i am sending 5 folder of images..
Answers (1)
Jan
on 27 Feb 2017
BaseFolder = 'C:\Temp'; % Adjust accordingly
FolderList = dir(fullfile(BaseFolder, '*.*'));
FolderList = FolderList([FolderList.isdir]); % folders only
for iFolder = 1:numel(FolderList)
Folder = fullfile(BaseFolder, FolderList(iFolder).name);
FileList = dir(fullfile(Folder, '*.jpg')); % Or however your files are found
for iFile = 1:numel(FileList)
File = fullfile(Folder, FileList(iFile).name);
... Do what you want with this file
... Save it to different folder
end
end
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!