目录
成员函数:
open
grab
read
release
实现摄像头实时显示
视频的读操作由VideoCapture类完成
class CV_EXPORTS_W VideoCapture
/** @brief Class for video capturing from video files, image sequences or cameras.
The class provides C++ API for capturing video from cameras or for reading video files and image sequences.
Here is how the class can be used:
@include samples/cpp/videocapture_basic.cpp@note In @ref videoio_c "C API" the black-box structure `CvCapture` is used instead of %VideoCapture.
@note
- (C++) A basic sample on using the %VideoCapture interface can be found at
`OPENCV_SOURCE_CODE/samples/cpp/videocapture_starter.cpp`
- (Python) A basic sample on using the %VideoCapture interface can be found at
`OPENCV_SOURCE_CODE/samples/python/video.py`
- (Python) A multi threaded video processing sample can be found at
`OPENCV_SOURCE_CODE/samples/python/video_threaded.py`
- (Python) %VideoCapture sample showcasing some features of the Video4Linux2 backend
`OPENCV_SOURCE_CODE/samples/python/video_v4l2.py`
*/
成员函数:
-
open
CV_WRAP virtual bool open(int index, int apiPreference = CAP_ANY);
/** @brief Opens a camera for video capturing
@overload
Parameters are same as the constructor VideoCapture(int index, int apiPreference = CAP_ANY)
@return `true` if the camera has been successfully opened.The method first calls VideoCapture::release to close the already opened file or camera.
*/
-
grab
CV_WRAP virtual bool grab();
/** @brief Grabs the next frame from video file or capturing device.
@return `true` (non-zero) in the case of success.
The method/function grabs the next frame from video file or camera and returns true (non-zero) in the case of success.
@ref tutorial_kinect_openni
*/
-
read
CV_WRAP virtual bool read(OutputArray image);
/** @brief Grabs, decodes and returns the next video frame.
@param [out] image the video frame is returned here. If no frames has been grabbed the image will be empty.
@return `false` if no frames has been grabbedThe method/function combines VideoCapture::grab() and VideoCapture::retrieve() in one call. This is the
most convenient method for reading video files or capturing data from decode and returns the just
grabbed frame. If no frames has been grabbed (camera has been disconnected, or there are no more
frames in video file), the method returns false and the function returns empty image (with %cv::Mat, test it with Mat::empty()).@note In @ref videoio_c "C API", functions cvRetrieveFrame() and cv.RetrieveFrame() return image stored inside the video
capturing structure. It is not allowed to modify or release the image! You can copy the frame using
cvCloneImage and then do whatever you want with the copy.
*/
-
release
CV_WRAP virtual void release();
/** @brief Closes video file or capturing device.
The method is automatically called by subsequent VideoCapture::open and by VideoCapture
destructor.The C function also deallocates memory and clears \*capture pointer.
*/
实现摄像头实时显示
#include <iostream>
#include <opencv.hpp>
using namespace cv;
using namespace std;int main()
{cout << "Hello World!" << endl;VideoCapture cameraCap;cameraCap.open(0); // step1.open打开摄像头while(1){Mat srcImage; // 定义Mat数据类型变量 存放读取的视频帧/*// method 1cameraCap >> srcImage;if(srcImage.empty()) break;*/// method 2if(cameraCap.grab()) // step2.grab获取摄像头{cameraCap.read(srcImage); //step3.读取一帧数据,存入Mat变量}if(srcImage.data == nullptr) return -1;imshow("show", srcImage); // step4.showif(waitKey(20) == 'q') //延时20ms,获取用户是否按键的情况,如果按下q,会推出程序break;}cameraCap.release(); //释放摄像头资源destroyAllWindows(); //释放全部窗口return 0;
}