Image acquisition using multiple timers.
古いコメントを表示
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!!
採用された回答
その他の回答 (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
Akshay Mhetras
2011 年 7 月 18 日
0 投票
1 件のコメント
Gerd
2011 年 7 月 18 日
You can use the timer callback function.
start(timer1)
callback function timer1:
stop(timer1)
start(timer2)
and so on
カテゴリ
ヘルプ センター および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!