saved images in matlab
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
when i want to save an image in matlab i just use ( im write ) command , but if i want to save a lot of images according to certain processing i can't use (imwrite) in a loop or something coz every time the new image will overwrite the last one ,, for ex; >> imwrite(A,'*name*.jpg'); at each time it's name will still "name" ... how can i fix this issue*bold*
0 commentaires
Réponse acceptée
Honglei Chen
le 31 Août 2012
You can dynamically change the file name. for example
for m = 1:10
% ...
fname = sprintf('name%d.jpg',m);
imwrite(A,fname);
% ...
end
0 commentaires
Plus de réponses (2)
Voir également
Catégories
En savoir plus sur Image Preview and Device Configuration dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!