How to use timer?

1 次查看(过去 30 天)
Behrad kiani
Behrad kiani 2013-11-2
I need a code which take a picture in every 2 seconds and do it for 1 minutes. The sodocode is below: For 1 minutes In every 2 seconds { Cam=videoinput(‘winvideo’); }

回答(1 个)

Image Analyst
Image Analyst 2013-11-2
Why not just put into a loop - that's far simpler than using a timer.
for k = 1 : 30 % Go for 60 seconds (30 snapshots)
snappedImage = getsnapshot(videoObject);
pause(2); % Wait 2 seconds before continuing.
end

标签

Community Treasure Hunt

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

Start Hunting!

Translated by