필터 지우기
필터 지우기

copying multiple images from one folder to other folder with conditions

조회 수: 10 (최근 30일)
Dear Matlab Users
I have a folder with 14 pictures (C:\DT3\Pictures), i need to selected picture smaller than 512 x 512 pixel and copy it to SmallPicture.txt folder.
Thanks for the help!

채택된 답변

Walter Roberson
Walter Roberson 2021년 8월 29일
편집: Walter Roberson 2021년 8월 29일
sourcefolder = 'C:\DT3\Pictures';
destfolder = 'C:\DT3\Pictures\SmallPicture';
if ~isfolder(destfolder); mkdir(destfolder); end
dinfo = dir(sourcefolder);
dinfo([dinfo.isdir]) = []; %remove subfolders and . and ..
filenames = fullfile({dinfo.folder}, {dinfo,name});
nfiles = length(filenames);
for K = 1 : nfiles
thisfile = filenames{K};
try
info = imfinfo(thisfile);
if ~isempty(info) && isfield(info, 'Width') && isfield(info,'Height') && info.Width <= 512 && info.Height <= 512
copyfile(thisfile, destfolder);
end
catch ME
%not an image, or headers not readable or copyfile failed
end
end

추가 답변 (1개)

TADA
TADA 2021년 8월 29일
use dir to loop through all files in the folder you mentioned.
use imfinfo to check the width and height of each image file in that folder.
use copyfile to copy the relevant files and mkdir if needed to create the SmallPicture directory
  댓글 수: 2
TADA
TADA 2021년 8월 29일
Sir Roberson, your answer was posted about 2 hours ago, same as mine. Obviously, I wrote this answer while you wrote yours, hence i missed it. Honestly, this happens quite often and I fail to see why you reproach or tease me on that matter.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by