我正在使用新的罗技相机c920进行物体识别 我的相机可以支持H264编解码器,可以显示H264高清输出 但是如何在我的下面的代码中将CODEC类型设置为H264以输出为H264 DECODED STREAM 通过使用OpenCV指令。
我使用以下逻辑捕获视频:ref:this link
#include "opencv2/opencv.hpp"
using namespace cv;
int main(int, char**)
{
VideoCapture cap(0); // open the default camera
if(!cap.isOpened()) // check if we succeeded
return -1;
for(;;)
{
Mat frame;
cap >> frame; // get a new frame from camera
imshow("display", frame);
if(waitKey(30) >= 0) break;
}
// the camera will be deinitialized automatically in VideoCapture destructor
return 0;
}
答案 0 :(得分:3)
通过设置fourCC属性,您应该告诉VideoCapture您的源是h.264。 openCV的所有文档都说你将获得解码的BGR数据。
cap.set(CV_CAP_PROP_FOURCC, CV_FOURCC('H', '2', '6', '4'));