multiple images stored to folder
조회 수: 1 (최근 30일)
이전 댓글 표시
Sir, I have taken images from folder, have decreased the size I am not getting how to save it back into the folder
댓글 수: 0
답변 (1개)
Thomas Koelen
2015년 4월 23일
Use the save function?
save('image.tif','X')
Where X is your image in matlab, you could do it in a for loop. like this:
for i=1:length(namecell)
save(strcat(namecell{i},num2str(i),'.tif'),'X.(strcat(X),num2str(i))')
end
where namecell is a list of names that you want for your files, and X is a struct that contains your images.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Import, Export, and Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!