How to save 4 images in 4 sub folders in the directory
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to save 4 different images 4 different sub folders in directory using fullfile command . how to give command in matlab
댓글 수: 0
답변 (2개)
Image Analyst
2013년 10월 11일
baseFileName1 = 'image1.png'
folder1 = 'd:\images1';
fullFileName = fullfile(folder1, baseFileName1);
imwrite(yourImageArray, fullFileName);
% Repeat for files and folders 2, 3, and 4.
댓글 수: 0
Azzi Abdelmalek
2013년 10월 11일
file1=fullfile(sub_folder1,filename1)
imwrite(im1,file1)
% Do the same for the other files
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!