imaqmontage(data); question about this code
1 回表示 (過去 30 日間)
古いコメントを表示
My settings are:
obj.FramesPerTrigger = 5;
obj.TriggerRepeat = 2;
so that i have
obj.FramesAvailable =15;
then i have
data = getdata(obj); % access the logged data
imaqmontage(data); % Display each image frame acquired
my question is why i only get 5 pictures shown in matlab?(should be 15 pictures...)
0 件のコメント
採用された回答
ChristianW
2013 年 2 月 8 日
data = getdata(obj,samples)
samples - The number of samples to extract. If samples is not specified, the number of samples extracted is given by the SamplesPerTrigger property.
data = getdata(obj,15);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Point Grey Hardware についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!