我是靠谱客的博主 老实蛋挞,最近开发中收集的这篇文章主要介绍class VideoCapture之VideoCapture::grab,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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.

最后

以上就是老实蛋挞为你收集整理的class VideoCapture之VideoCapture::grab的全部内容,希望文章能够帮你解决class VideoCapture之VideoCapture::grab所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部