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!