필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how to process a folder of files and save them in different folder with the same file name

조회 수: 1 (최근 30일)
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..
  댓글 수: 1
Jan
Jan 2017년 2월 27일
편집: Jan 2017년 2월 27일
You are sending 5 folders of images? Do the number of images or if they are right or left matter for this question? Does "database" mean, that you you a database program or is this only the collection of files on the disk?

답변 (1개)

Jan
Jan 2017년 2월 27일
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

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by