Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想以 15 fps 的速度捕捉 45 秒的视频,并使用 Matlab 将其存储在文件中。视频的来源是我的笔记本电脑网络摄像头。
我将从 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...