hii...i want to save my images as abc1.pgm, abc2.pgm, abc3.pgm...abc5.pgm
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i tried the following code
filename=spprimtf('E:\\prajube\\abc1%d.pgm',x);
imwrite(imge1,filename);
still it saves only the last photo...for eg. suppose we have to click 5 images.. it just saves abc5.pgm and abc1.pgm to abc4.pgm are lost
please help!!! :(
Réponse acceptée
Azzi Abdelmalek
le 23 Mar 2013
Modifié(e) : Azzi Abdelmalek
le 23 Mar 2013
for k=1:3
filename=sprintf('E:\\prajube\\abc1%d.pgm',k)
imwrite(image1{k},filename);
end
3 commentaires
Plus de réponses (1)
Shivaputra Narke
le 23 Mar 2013
% first save ur images as img_cell{1}=img1; %ur imge matrix img_cell{2}=img2; img_cell{3}=img3;
for k=1:3 filename=sprintf('E:\\prajube\\abc%d.pgm',k) imwrite(img_cell{k},filename); end
0 commentaires
Voir également
Catégories
En savoir plus sur Feature Detection and Extraction 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!