Effacer les filtres
Effacer les filtres

multiple images stored to folder

1 vue (au cours des 30 derniers jours)
amogha
amogha le 23 Avr 2015
Sir, I have taken images from folder, have decreased the size I am not getting how to save it back into the folder

Réponses (1)

Thomas Koelen
Thomas Koelen le 23 Avr 2015
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.

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by