CvCapture 结构和 VideoCapture 结构有什么区别

What is the difference between the CvCapture structure and the VideoCapture structure?

本文关键字:结构 什么 区别 VideoCapture CvCapture      更新时间:2023-10-16

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

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

使用

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

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