automatic save images
Ältere Kommentare anzeigen
- I build i loop where I can take image per 1 min, while I get several images from the camera, I have to save these images under any letter like h as a sequence (h1, h2 , etc). how can I do it automatically.Please help me
Antworten (2)
Arnaud Miege
am 20 Mai 2011
0 Stimmen
Abdulrahman altaee
am 21 Mai 2011
2 Kommentare
Abdulrahman altaee
am 21 Mai 2011
Arnaud Miege
am 22 Mai 2011
Have you looked at the links that I gave you, that's explaine din quite some detail there.
Something as simple as this should work;
g = getsnapshot(vid);
figure, imshow(g)
fname = ['A' str2num(i) '.tif'];
saveas(gcf,fname);
HTH,
Arnaud
Kategorien
Mehr zu Images finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!