matlab实时视频提取

发布于 2024-12-12 04:18:47 字数 105 浏览 0 评论 0原文

如何从网络摄像头获取实时视频并有选择地提取其中的帧?我需要一个特殊的工具箱还是可以通过普通的 matlab 函数来完成?

我有图像采集工具箱,但还没有找到使用它的好方法......

How do you take a live video feed from a webcam and selectively extract frames of it? Do I need a special toolbox or can this be done through normal matlab functions?

I have the image acquisition toolbox, but haven't seen a good way to use it for this yet...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无力看清 2024-12-19 04:18:47

图像采集工具箱就是您所需要的。只需查看文档,它应该非常简单。

The image acquisition toolbox is all you need. Just look at the documentation and it should be pretty straight forward.

白衬杉格子梦 2024-12-19 04:18:47
  1. 确保网络摄像头已正确安装和连接。
  2. 输入以下代码:

    obj = videoinput('winvideo', 1);
    预览(对象)
    

这将生成一个捕获实时视频输入的窗口。

  1. make sure that the webcam is properly installed and connected.
  2. type the following code:

    obj = videoinput('winvideo', 1);
    preview(obj)
    

this shall generate a window capturing live video input.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文