-1

我想以 15 fps 的速度捕捉 45 秒的视频,并使用 Matlab 将其存储在文件中。视频的来源是我的笔记本电脑网络摄像头。

4

1 回答 1

3

我将从 imaqtool 的文档开始。

然后尝试这样的事情......(我假设你有 imaq 工具箱)

 vid = videoinput('winvideo', 1, 'RGB24_640x480'); % or any other mode needed
 src = getselectedsource(vid);
 src.FrameRate = '15.0000';
 vid.FramesPerTrigger = 15*45;
 start(vid); 

ETC...

于 2012-09-29T16:36:58.367 回答