博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
opencv 操作本地摄像头实现录像
阅读量:5846 次
发布时间:2019-06-18

本文共 704 字,大约阅读时间需要 2 分钟。

直接上代码:

// demo1.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include 
using namespace std;#include
#include
#include
#include
using namespace cv;int main(){ Mat frame; //mat数据类型 VideoCapture capture(0); capture >> frame; //流操作 VideoWriter writer("e:\\VideoTest.avi", CV_FOURCC('M', 'J', 'P', 'G'), 25.0, Size(frame.cols,frame.rows)); int f=frame.cols; int p=frame.rows; //cout<
<
> frame; //流操作 writer << frame; imshow("video", frame); if (cvWaitKey(30) == 113) //按下q键 程序退出 { break; } cout<<"程序执行过程耗时:"<
<<"毫秒"<

转载于:https://www.cnblogs.com/audi-car/p/4611700.html

你可能感兴趣的文章
游戏引擎cocos2d-android使用大全
查看>>
oracle job 定时执行参数
查看>>
Android命令Monkey压力测试,详解
查看>>
负载均衡(LB)集群 dr
查看>>
(转)直接拿来用!最火的iOS开源项目(一)
查看>>
div+css+js 树形菜单
查看>>
android EventBus 3.0 混淆配置
查看>>
我的友情链接
查看>>
DNS区域委派与转发
查看>>
Windows Server 2008 RemoteApp---发布应用程序
查看>>
白帽子技术分析会话劫持实战讲解
查看>>
我的友情链接
查看>>
yum的三种方式
查看>>
人生苦短我用python(02)动态加载模块
查看>>
Redis分布式缓存安装和使用
查看>>
PHP环境搭建:Windows 7下安装配置PHP+Apache+Mysql环境教程以及注意事项
查看>>
20天精通 Windows 8:系列课程资料集
查看>>
html5 <figure> 标签
查看>>
linux的I/O多路转接select的fd_set数据结构和相应FD_宏的实现分析
查看>>
Mysql数据库InnoDB存储引擎的隔离级别
查看>>