网址:https://docs.opencv.org/3.0-last-rst/modules/videoio/doc/reading_and_writing_video.html#videocapture
建议结合自行敲代码系列之一进行查看:
videoio. Media I/O 之 VideoCapture:
类 VideoCapture (以下是介绍成员函数)
c++系列(其他可自行查看):
VideoCapture::VideoCapture //构造函数起初始化作用(选择设备或文件)
重载一:VideoCapture::VideoCapture() //默认,填0
重载二:VideoCapture::VideoCapture(const String& filename) //选择文件
重载三:VideoCapture::VideoCapture(int device) //选择设备
VideoCapture::open //打开文件或者设备(注意图一用法)
bool VideoCapture::open(const String& filename) //打开文件(参数:文件)
bool VideoCapture::open(int device) //打开设备(参数:设备号)
VideoCapture::isOpened //如果打开成功,返回true,如果打开失败,返回false
bool VideoCapture::isOpened() //自行敲代码系列一中有使用
VideoCapture::release //关闭打开的摄像头或者文件(注意图二用法)
void VideoCapture::release() //有打开就有关闭,合理使用
VideoCapture::grab //抓取下一帧
bool VideoCapture::grab() //见图三(当然,不推荐这种做法,原因嘛,ennn)
VideoCapture::retrieve //对抓取的图像进行解码
bool VideoCapture::retrieve(OutputArray image, int flag=0 )
未完待续.........
(持续更新中)