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 结构有啥区别?的主要内容,如果未能解决你的问题,请参考以下文章