VideoCapture之grab()和retrieve()

本文转自: http://blog.csdn.net/weixiaomm/article/details/8725498


http://blog.csdn.net/weixiaomm/article/details/8725511

Grabs the next frame from video file or capturing device.

C++:  bool  VideoCapture:: grab ( )
Python:   cv2.VideoCapture. grab ( ) → retval
C:  int  cvGrabFrame (CvCapture*  capture )
Python:   cv. GrabFrame (capture ) → int

The methods/functions grab the next frame from video file or camera and return true (non-zero) in the case of success.

The primary use of the function is in multi-camera environments, especially when the cameras do not have hardware synchronization. That is, you call VideoCapture::grab() for each camera and after that call the slower methodVideoCapture::retrieve() to decode and get frame from each camera. This way the overhead on demosaicing or motion jpeg decompression etc. is eliminated and the retrieved frames from different cameras will be closer in time.

Also, when a connected camera is multi-head (for example, a stereo camera or a Kinect device), the correct way of retrieving data from it is to call VideoCapture::grab first and then call VideoCapture::retrieve() one or more times with different values of the channel parameter.

Decodes and returns the grabbed video frame.

C++:  bool  VideoCapture:: retrieve (Mat&  image, int  channel=0 )
Python:   cv2.VideoCapture. retrieve ( [image [, channel ] ] ) → retval, image
C:  IplImage*  cvRetrieveFrame (CvCapture*  capture, int  streamIdx=0  )
Python:   cv. RetrieveFrame (capture ) → image

The methods/functions decode and return the just grabbed frame. If no frames has been grabbed (camera has been disconnected, or there are no more frames in video file), the methods return false and the functions return NULL pointer.

Note

 

OpenCV 1.x 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.

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值