image1.jpg, image2.jpg.....etc how?
31 ビュー (過去 30 日間)
古いコメントを表示
I want to save images without overwriting them whenever I hit the pushbutton. Can you please help me how save images without overwriting the original? What I want to do is whenever I'll hit the pushbutton, It will generated 1 image at a time without deleting the original.
here's my simple code.
vid = videoinput('winvideo',1);
set(vid, 'ReturnedColorSpace', 'RGB');
img = getsnapshot(vid);
imshow(img);
imwrite(img,'C:\Users\Sony Vaio\Documents\Appendix\images\image.jpg');
thank you :)
0 件のコメント
採用された回答
Jeff E
2013 年 9 月 11 日
counter = 1; %initialize filename increment
vid = videoinput('winvideo',1);
set(vid, 'ReturnedColorSpace', 'RGB');
img = getsnapshot(vid);
imshow(img);
savename = strcat('C:\Users\Sony Vaio\Documents\Appendix\images\image_' , num2str(counter) , '.jpg'); %this is where and what your image will be saved
imwrite(img, savename);
counter = counter +1; %counter should increment each time you push the button
Instead of using a counter, you could also use a timestamp, as from CLOCK or DATESTR.
その他の回答 (1 件)
Image Analyst
2013 年 9 月 11 日
Lloyd:
Use sprintf() to construct a unique filename based on a loop counter. See the FAQ for details: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F
baseFileName = sprintf('Frame %d.png', frameCounter);
fullFileName = fullfile(folder, baseFileName);
imwrite(img, fullFileName);
frameCounter = frameCounter + 1;
Put the above in a loop that keeps snapping and saving images until you stop it somehow.
3 件のコメント
Image Analyst
2013 年 9 月 12 日
So it's not in a loop - it's in a pushbutton callback. So you can either make frameCounter global or persistent, or you can get a directory listing, figure out what the highest number so far is, and then increment it (which is the most complicated and longest method but probably the most robust and reliable.)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!