gpt4 book ai didi

C#结合AForge实现摄像头录像

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章C#结合AForge实现摄像头录像由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

输出为mp4需要用到ffmpeg相关的文件,我打包的库已经带了,去官网找的库可以在这个目录找到

C#结合AForge实现摄像头录像

2

添加这些引用

C#结合AForge实现摄像头录像

3

两个全局变量

?
1
2
3
4
//用来操作摄像头
  private videocapturedevice camera = null ;
  //用来把每一帧图像编码到视频文件
  private videofilewriter videooutput = new videofilewriter();

开始代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//获取摄像头列表
var devs = new filterinfocollection(filtercategory.videoinputdevice);
 
//实例化设备控制类(我选了第1个)
camera = new videocapturedevice(devs[0].monikerstring);
 
//配置录像参数(宽,高,帧率,比特率等参数)videocapabilities这个属性会返回摄像头支持哪些配置,从这里面选一个赋值接即可,我选了第1个
camera.videoresolution = camera.videocapabilities[0];
 
//设置回调,aforge会不断从这个回调推出图像数据
camera.newframe += camera_newframe;
 
//打开摄像头
camera.start();
 
//打开录像文件(如果没有则创建,如果有也会清空),这里还有关于
videooutput.open( "e:/video.mp4" ,
    camera.videoresolution.framesize.width,
    camera.videoresolution.framesize.height,
    camera.videoresolution.averageframerate,
    videocodec.mpeg4,
    camera.videoresolution.bitcount);
给aforge输出图像数据的回调方法:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//图像缓存
private bitmap bmp = new bitmap(1, 1);
 
//摄像头输出回调
private void camera_newframe( object sender, newframeeventargs eventargs)
{
   //写到文件
   videooutput.writevideoframe(eventargs.frame);
   lock (bmp)
   {
     //释放上一个缓存
     bmp.dispose();
     //保存一份缓存
     bmp = eventargs.frame.clone() as bitmap;
   }
}

结束代码

?
1
2
3
4
5
//停摄像头
camera.stop();
 
//关闭录像文件,如果忘了不关闭,将会得到一个损坏的文件,无法播放
videooutput.close();

4

修改app.config,兼容net2.0的一些东西

?
1
2
3
4
5
6
7
<?xml version= "1.0" encoding= "utf-8" ?>
<configuration>
  <startup uselegacyv2runtimeactivationpolicy= "true" >
   <supportedruntime version= "v4.0" sku= ".netframework,version=v4.5" />
  </startup>
  <supportedruntime version= "v2.0.50727" />
</configuration>

C#结合AForge实现摄像头录像

原文链接:http://www.cnblogs.com/DragonStart/p/7563351.html 。

最后此篇关于C#结合AForge实现摄像头录像的文章就讲到这里了,如果你想了解更多关于C#结合AForge实现摄像头录像的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com