文章选自:
一、VideoCapture类
用于从视频文件、图像序列或摄像头捕获视频的类。
函数:CV_WRAP VideoCapture();@brief 默认构造函数CV_WRAP explicit VideoCapture(const String& filename, int apiPreference = CAP_ANY);@brief 使用 API 首选项打开视频文件、捕获设备或 IP 视频流进行视频捕获@param filename 可以是:- 视频文件名称(如 `video.avi`)- 图像序列(如 `img_%02d.jpg`,将读取类似于 `img_00.jpg, img_01.jpg, img_02.jpg, ...` 的样本)- 视频流 URL(如 `protocol://host:port/script_name?script_params|auth`)- GStreamer 管道字符串,格式为 gst-launch 工具格式,如果使用 GStreamer 作为后端请注意,每个视频流或IP摄像头都有自己的URL方案。@param apiPreference 首选的捕获 API 后端。可用于强制执行特定的读取器实现,如果有多个可用:例如 cv::CAP_FFMPEG 或 cv::CAP_IMAGES 或 cv::CAP_DSHOW。@sa cv::VideoCaptureAPIsCV_WRAP explicit VideoCapture(const String& filename, int apiPreference, const std::vector<int>& params)@brief 使用 API 首选项和参数打开视频文件、捕获设备或 IP 视频流进行视频捕获@param `params` 参数允许指定额外的参数,编码为成对的(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`。CV_WRAP explicit VideoCapture(int index, int apiPreference = CAP_ANY);@brief 打开摄像头进行视频捕获@param index 要打开的视频捕捉设备的ID。要使用默认后端打开默认摄像头,只需传递 0。(对于向后兼容性,当 apiPreference 为 CAP_ANY 时,camera_id + domain_offset(CAP_*)的用法是有效的)@param apiPreference 首选的捕获 API 后端。可用于强制执行特定的读取器实现,如果有多个可用:例如 cv::CAP_DSHOW 或 cv::CAP_MSMF 或 cv::CAP_V4L。CV_WRAP explicit VideoCapture(int index, int apiPreference, const std::vector<int>& params);@brief 使用 API 首选项和参数打开摄像头进行视频捕获@param `params` 参数允许指定额外的参数,编码为成对(paramId_1, paramValue_1, paramId_2, paramValue_2, ...)`。请参阅 cv::VideoCaptureProperties
二、测试code
从本地读取视频进行显示
void Samples::LoadVideoFunc()
{//【1】读入视频VideoCapture capture;capture.open("./vtest.avi");//【2】循环显示每一帧while (1) {Mat frame; //定义一个Mat变量,用于存储每一帧的图像capture >> frame; //读取当前帧//若视频播放完成,退出循环if (frame.empty()) {break;}imshow("Video", frame); //显示当前帧waitKey(30); //延时30ms}
}
从设备上读取视频进行显示
void Samples::VideoFunc()
{Mat frame;//--- 初始化videoVideoCapture cap;// 打开默认相机// cap.open(0);// OR advance usage: select any API backendint deviceID = 0; // 0 = open default cameraint apiID = cv::CAP_ANY; // 0 = autodetect default API// open selected camera using selected APIcap.open(deviceID, apiID);// 检测是否打开if (!cap.isOpened()) {cerr << "ERROR! Unable to open camera\n";//return -1;}//--- GRAB AND WRITE LOOPcout << "Start grabbing" << endl<< "Press any key to terminate" << endl;for (;;){// wait for a new frame from camera and store it into 'frame'cap.read(frame);// check if we succeededif (frame.empty()) {cerr << "ERROR! blank frame grabbed\n";break;}// show live and wait for a key with timeout long enough to show imagesimshow("Live", frame);if (waitKey(5) >= 0)break;}// the camera will be deinitialized automatically in VideoCapture destructor
}