Image acquisition using multiple timers.
2 次查看(过去 30 天)
显示 更早的评论
Hello,
I am working with MATLAB for continuous aquisition of images of a sedimentation system. As I need to capture the sedimentation rates, I need for the images to be captured at different time rates. I wondered whether I could use multiple timers in the same programme which work at different time rates to capture the images. How do I put successive timers in the same program? Any help in this regard will be appreciated. Thank you!!
0 个评论
采纳的回答
Walter Roberson
2011-7-18
Gerd's answer looks workable. I wonder, though, why you are using multiple timers for that case? If you only need one timer at a time, why not use a single timer and at each point set() its timeout as appropriate? There are various different ways you can keep track of which "state" you are in.
0 个评论
更多回答(2 个)
Gerd
2011-7-18
Hi Akshay,
you can generate multiple timers in Matlab.
timer1=timer;
timer2=timer;
with set method you can set the approxiate parameters to the different timers. You can use different callback function which are executed when the timer occurs.
Gerd
0 个评论
Akshay Mhetras
2011-7-18
1 个评论
Gerd
2011-7-18
You can use the timer callback function.
start(timer1)
callback function timer1:
stop(timer1)
start(timer2)
and so on
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Acquisition Using Image Acquisition Explorer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!