how to move image to a folder in for loop
Show older comments
i have 10 images. and i divide every image into 4 parts.now i want store first part of all images into one folder,second part of all images into second folder... respectively. so what is the code for it..
Answers (2)
Harri S
on 22 Apr 2013
0 votes
help imwrite
Adewale Obaro
on 10 Aug 2018
Edited: Adewale Obaro
on 10 Aug 2018
0 votes
THIS WILL DEFINITELY HELP YOU
destinationFolder = 'C:\Users\ADEWALE\Desktop\FACE\Matlab Projects\MATLAB projects\PCA ICA LDA\traindatabase';
if ~exist(destinationFolder, 'dir') mkdir(destinationFolder);
end
i=randi([140,200]);
baseFileName = sprintf('%d.JPG',i); % e.g. "1.png"
fullFileName = fullfile(destinationFolder, baseFileName);
imwrite(processed_img, fullFileName);
Categories
Find more on Images in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!