【opencv学习笔记】一. 网络摄像头视频储存

目标:将网络摄像头的视频流储存在电脑中

#include   
#include   
#include   

using namespace cv;
using namespace std;

int main(int, char**) {
	VideoCapture cam;
	Mat frame;

//储存网络视频流地址
	const string videoStreamAddress = "http://xxx.xxx.xxx.xxx/xxxx.mjpg"; //视频地址根据个人情况改变

//检测该视频流是否能被打开,若失败直接退出程序
	if (!cam.open(videoStreamAddress)) {
		cout << "échec à connecter IPcaméra" << endl;
		getchar();
		return -1;
	}
//获取一帧用于提取图像大小
	cam >> frame;
//创建视频储存文件
	VideoWriter video((const string)"v1.avi", CV_FOURCC('D', 'I', 'V', 'X'), cam.get(CV_CAP_PROP_FPS), Size(frame.cols, frame.rows));
//检测文件创建是否成功
	if (video.isOpened()) cout << "création du fichier réussie" << endl;
//储存视频文件,我们想录一段约2分钟的视频,而视频速度为25FPS,因此记录3000帧
	
	for (int i = 0;i<3000;) {
		//检测下一帧是否为空,为空不储存图像
		if (!cam.read(frame)) {
			cout << "aucun frame" << endl;
			waitKey();
		}
		else{
		video.write(frame);
		imshow("Output Window", frame);
		waitKey(1);
		i++;
		}
	}
	cam.release();
	return 0;
}




测试结果视频储存正常可以顺利播放,除了程序实际运行时间约为计算出的2分钟(3000 帧 /25 fps /60 秒/分 = 2分钟)的两倍长,我将提取帧数改为200尝试发现程序运行时间依然为八秒的两倍左右,而且储存的视频以25fps播放起来的时候速度明显偏快,猜测可能是从视频流里面获取的帧率信息与实际帧率有误差。

你可能感兴趣的:(opencv,C++,opencv,网络摄像头,视频流,C++)