CvCapture 结构和 VideoCapture 结构有啥区别?

Posted

技术标签:

【中文标题】CvCapture 结构和 VideoCapture 结构有啥区别?【英文标题】:What is the difference between the CvCapture structure and the VideoCapture structure?CvCapture 结构和 VideoCapture 结构有什么区别? 【发布时间】:2012-11-30 23:23:04 【问题描述】:

OpenCV中CvCapture结构和VideoCapture结构有什么区别吗?如果是这样,我应该何时使用CvCapture,何时使用VideoCapture

【问题讨论】:

【参考方案1】:

VideoCapture 来自新的 C++ 接口,CvCapture 不再有公共接口可供使用。

使用 C++ API 时,应使用VideoCapture。您应该避免混合使用这两个接口。

如果您使用的是 C API,而不是 C++ API,有几个方法会返回 CvCapture 指针,例如 cvCaptureFromFile

【讨论】:

以上是关于CvCapture 结构和 VideoCapture 结构有啥区别?的主要内容,如果未能解决你的问题,请参考以下文章

如何将“rs2::video frame”转换为“CvCapture*”?

2017.3.29 opencv学习笔记

基于opencv3.0下的人脸识别和识别部分的高斯模糊处理

使用 VideoCapture 读取目录中的图像不起作用

如何使用 CV_CAP_PROP_FOURCC?

通过网络摄像头实时采集视频,采用OpenCV识别运动物体,实现有运动物体经过时存储,没有时则不存储.