6
OpenCV中的CvCapture
結構和VideoCapture
結構之間是否有區別?如果是這樣,我應該什麼時候使用CvCapture
以及何時使用VideoCapture
?CvCapture結構和VideoCapture結構有什麼區別?
OpenCV中的CvCapture
結構和VideoCapture
結構之間是否有區別?如果是這樣,我應該什麼時候使用CvCapture
以及何時使用VideoCapture
?CvCapture結構和VideoCapture結構有什麼區別?
VideoCapture
是來自新的C++接口,CvCapture
不再具有使用的公共接口。
使用C++ API時,應使用VideoCapture
。你應該避免混合兩個接口。
如果您使用C API而不是C++ API,幾種方法會返回CvCapture
指針,如cvCaptureFromFile
。