aforge net(AForge.NET的特点)
本文目录
- AForge.NET的特点
- AForge.NET的介绍
- x64 平台 win10 vs2012 c#(.NET 4.5框架)开发视频录制软件使用AForge.Net
- c# 利用AForge.NET组件操作摄像头,报错:未引用实例
- AForge.NET的简介
- AForge.NET的参考资料
- Aforge.net 调用pYthon
- AForge.net如何加到C#工程里边
AForge.NET的特点
该框架架构合理,易于扩展,涉及多个较前沿的技术模块,可以为相关开发人员或科研人员的工作提供极大便利。该框架使用LGPLv3 协议,2.0以前版本遵循GPLv3 协议,如果对于协议有协商需要可以联系项目作者。
AForge.NET的介绍
AForge.NET是一个专门为开发者和研究者基于C#框架设计的,这个框架提供了不同的类库和关于类库的资源,还有很多应用程序例子,包括计算机视觉与人工智能,图像处理,神经网络,遗传算法,机器学习,机器人等领域。
x64 平台 win10 vs2012 c#(.NET 4.5框架)开发视频录制软件使用AForge.Net
AForge.video依赖于AForge (core library) 2.2.5。
你需要同时引用Aforge核心库,才能使用Aforge.video。
我上传到附件里,你下载引用它。
c# 利用AForge.NET组件操作摄像头,报错:未引用实例
//看了下你的代码,错误的原因就是连接的时候重新定义了一个对象。稍改下就好。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Drawing.Imaging;using System.Text;using System.Windows.Forms;using System.Threading;using AForge;using AForge.Video;using AForge.Video.DirectShow;using AForge.Imaging;using AForge.Imaging.Filters;using System.IO;namespace Camera{ public partial class Form1 : Form { private FilterInfoCollection videoDevices; public VideoCaptureDevice videoSource; private int flag = 1; private string dirc = System.AppDomain.CurrentDomain.BaseDirectory + “JPG“; //截图保存的目录 public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { if (!Directory.Exists(dirc)) Directory.CreateDirectory(dirc); try { // 枚举所有视频输入设备 videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice); if (videoDevices.Count == 0) throw new ApplicationException(); foreach (FilterInfo device in videoDevices) { tscbxCameras.Items.Add(device.Name); } tscbxCameras.SelectedIndex = 0; } catch (ApplicationException) { tscbxCameras.Items.Add(“No local capture devices“); videoDevices = null; } } private void toolStripButton1_Click(object sender, EventArgs e) { CameraConn(); } private void CameraConn() { //你这里重新定义了一个对象,所以出错 videoSource = new VideoCaptureDevice(videoDevices.MonikerString); videoSource.DesiredFrameSize = new Size(320, 240); videoSource.DesiredFrameRate = 1; videPlayer.VideoSource = videoSource; videPlayer.Start(); } private void toolStripButton2_Click(object sender, EventArgs e) { videPlayer.SignalToStop(); videPlayer.WaitForStop(); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { toolStripButton2_Click(null, null); } private void toolStripButton3_Click(object sender, EventArgs e) { //不懂截图,但还是给你简单完善了下 flag = 0; if (videoSource == null) { MessageBox.Show(“请先连接摄像头“); } else if (!videoSource.IsRunning) { MessageBox.Show(“摄像头已经关闭,请重新打开“); } else { videoSource.NewFrame += new NewFrameEventHandler(video_NewFrame); } } private void video_NewFrame(object sender, NewFrameEventArgs eventArgs) { Bitmap bitmap = (Bitmap)eventArgs.Frame.Clone(); if (flag == 0) { string img = dirc + “/“ + DateTime.Now.ToString(“yyyyMMddhhmmss“) + “.jpg“; bitmap.Save(img); flag = 1; } } }}
AForge.NET的简介
AForge.NET是一个专门为开发者和研究者基于C#框架设计的,他包括计算机视觉与人工智能,图像处理,神经网络,遗传算法,机器学习,模糊系统,机器人控制等领域。
AForge.NET的参考资料
AFORGE .NET 的资料相当丰富,官方SVN自带例子若干,博客园,51CTO等技术网站均有大量相关文章 。下面是一些示例展示。1.基于符号识别的3D现实增强技术2.基于模糊系统的自动导航3.运动检测4.2D增强技术
Aforge.net 调用pYthon
可以。.NET环境可以调用Python,叫做IRONPython,Python环境下,无法调用C#,C#是编译型语言,Python是解释型语言,也就是脚本语言。
AForge.net如何加到C#工程里边
首先用到AForge类库下载地址
然后引用AForge,AForge.Controls(这个是控件,可以添加到工具箱中),AForge.Imaging,AForge.Video,AForge.Video.DirectShow;
然后直接上代码
view plain copy print?
private FilterInfoCollection videoDevices;
private VideoCaptureDevice videoSource;
public int selectedDeviceIndex = 0;
- private FilterInfoCollection videoDevices;
- private VideoCaptureDevice videoSource;
- public int selectedDeviceIndex = 0;
public FilterInfoCollection GetDevices()
{
try
{
//枚举所有视频输入设备
videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice);
if (videoDevices.Count != 0)
{
LogClass.WriteFile(“已找到视频设备.“);
return videoDevices;
}
else
return null;
}
catch (Exception ex)
{
LogClass.WriteFile(“error:没有找到视频设备!具体原因:“ + ex.Message);
return null;
}
}
- public FilterInfoCollection GetDevices()
- {
- try
- {
- //枚举所有视频输入设备
- videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice);
- if (videoDevices.Count != 0)
- {
- LogClass.WriteFile(“已找到视频设备.“);
- return videoDevices;
- }
- else
- return null;
- }
- catch (Exception ex)
- {
- LogClass.WriteFile(“error:没有找到视频设备!具体原因:“ + ex.Message);
- return null;
- }
- }
《p》 /// 《summary》
/// 连接视频摄像头
/// 《/summary》
/// 《param name=“deviceIndex“》《/param》
/// 《param name=“resolutionIndex“》《/param》
/// 《returns》《/returns》
public VideoCaptureDevice VideoConnect(int deviceIndex = 0, int resolutionIndex = 0)
{
if (videoDevices.Count 《= 0)
return null;
selectedDeviceIndex = deviceIndex;
videoSource = new VideoCaptureDevice(videoDevices.MonikerString);《/p》《p》 return videoSource;
}《/p》
- 《p》 /// 《summary》
- /// 连接视频摄像头
- /// 《/summary》
- /// 《param name=“deviceIndex“》《/param》
- /// 《param name=“resolutionIndex“》《/param》
- /// 《returns》《/returns》
- public VideoCaptureDevice VideoConnect(int deviceIndex = 0, int resolutionIndex = 0)
- {
- if (videoDevices.Count 《= 0)
- return null;
- selectedDeviceIndex = deviceIndex;
- videoSource = new VideoCaptureDevice(videoDevices.MonikerString);《/p》《p》 return videoSource;
- }《/p》
//抓图,拍照,单帧
public void GrabBitmap(string path)
{
if (videoSource == null)
return;
g_Path = path;
videoSource.NewFrame += new NewFrameEventHandler(videoSource_NewFrame);
}
- //抓图,拍照,单帧
- public void GrabBitmap(string path)
- {
- if (videoSource == null)
- return;
- g_Path = path;
- videoSource.NewFrame += new NewFrameEventHandler(videoSource_NewFrame);
- }
void videoSource_NewFrame(object sender, AForge.Video.NewFrameEventArgs eventArgs)
{
Bitmap bmp = (Bitmap)eventArgs.Frame.Clone();
string fullPath = path + “temp\\“;
if (!Directory.Exists(fullPath))
Directory.CreateDirectory(fullPath);
string img = fullPath + DateTime.Now.ToString(“yyyyMMdd hhmmss“) + “.bmp“;
bmp.Save(img);
- void videoSource_NewFrame(object sender, AForge.Video.NewFrameEventArgs eventArgs)
- {
- Bitmap bmp = (Bitmap)eventArgs.Frame.Clone();
- string fullPath = path + “temp\\“;
- if (!Directory.Exists(fullPath))
- Directory.CreateDirectory(fullPath);
- string img = fullPath + DateTime.Now.ToString(“yyyyMMdd hhmmss“) + “.bmp“;
- bmp.Save(img);
//如果这里不写这个,一会儿会不停的拍照,
videoSource.NewFrame -= new NewFrameEventHandler(videoSource_NewFrame);
}
- //如果这里不写这个,一会儿会不停的拍照,
- videoSource.NewFrame -= new NewFrameEventHandler(videoSource_NewFrame);
- }
下面是获取设备
view plain copy print?
选择设备,然后连接摄像头
view plain copy print?
view plain copy print?
view plain copy print?
view plain copy print?
这样就完成了操作摄像头的工作
但是发现一个问题,如果要拍照得到的照片先要处理在保存,这里就有问题了,所以需要在界面前台中添加控件,医用AForge.Controls,然后添加到工具箱,然后将VideoSourcePlayer控件拖到窗体中,想要得到单张图像处理:
Bitmap bmp = videoSourcePlayer1.GetCurrentFrame();
这样就可以拿来处理了,AForge类库是非常的强大,这里只是冰山一角,文章不足之处还请大家多多指正,欢迎提出宝贵意见和建议。谢谢。。。
更多文章:

selinux的主要作用(linux系统中opt 、selinux 、srv、 media这些文件夹是做什么用的)
2025年2月9日 04:40

jquery中文(jquery 获取input中文值出现乱码)
2025年4月6日 06:50

chmod什么意思(Linux里面chmod和chown命令区别是什么)
2025年4月4日 11:40

《思维导图》中提到的流程图、鱼骨图为什么实际上不是思维导图?C语言程序设计如何求最大公约数
2025年3月22日 17:10

js强制刷新当前页面(react.js怎么实现刷新当前页面)
2025年3月12日 06:00

entity framework(什么是Entity Framework)
2025年2月26日 16:20

attended to(attend to do 还是doing)
2025年2月23日 01:50

python可以实现什么功能(现在学好python能干什么)
2025年2月21日 03:40

gvim配置(ubuntu---配置gvim文件是在终端输入gedit ~/gvimrc吗)
2025年2月9日 20:40