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.
本文介绍了使用C++和Python中的VideoCapture类从视频文件或摄像头抓取下一帧的方法。重点讲解了如何通过先调用grab()方法再调用retrieve()方法来减少不同摄像头之间的帧获取延迟,并适用于多头摄像头的数据获取。
566

被折叠的 条评论
为什么被折叠?



