C#调⽤摄像头实现拍照功能的⽰例代码
前⾔
⽼师要求我们学⽣做⼀套拍照⾝份验证系统,经过长时间的学习,有了这篇⽂章,希望能帮到读者们。
正⽂
⾸先介绍本⽂的主⾓:AForge
创建⼀个C#项⽬,引⽤必备的⼏个DLL
AForge.dll
AForge.Controls.dll
AForge.Imaging.dll
AForge.Math.dll
AForge.Video.DirectShow.dll
AForge.Video.dll
这些DLL读者们可以在⽂末下载我附带的Demon
引⽤必要的命名空间
using AForge.Controls;
using AForge.Video;
using AForge.Video.DirectShow;
⾄此,便可以开始编写代码了。
⾸先遍历操作系统上的摄像头控件:
public static bool GetDevices()
{
try
{
//枚举所有视频输⼊设备
videoDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice);
if (videoDevices.Count != 0)
{
Console.WriteLine("已到视频设备.");
return true;
}
return false;
}
catch (Exception ex)
{
Console.WriteLine("error:没有到视频设备!具体原因:" + ex.Message);
return false;
}
}
到控件后就可以初始化摄像头:
private static void CameraConn()
{
videoSource = new VideoCaptureDevice(videoDevices[selectedDeviceIndex].MonikerString);
vid.VideoSource = videoSource;
vid.Start();
}
但是这⾥为⽌,都只是摄像拍摄,如果需要拍照,则需要通过eventArgs.Frame.Clone()截取视频中的某⼀帧图像这⾥就需要通过事件来处理:
public static void GrabBitmap()
{
if (videoSource == null)
{
return;
}
videoSource.NewFrame += new NewFrameEventHandler(videoSource_NewFrame); //新建事件
}
static void videoSource_NewFrame(object sender, NewFrameEventArgs eventArgs)
writeline方法的作用{
Bitmap bmp = (Bitmap)eventArgs.Frame.Clone(); //Clone摄像头中的⼀帧
bmp.Save(path, ImageFormat.Png);
videoSource.NewFrame -= new NewFrameEventHandler(videoSource_NewFrame); //如果这⾥不写这个,⼀会⼉会不停的拍照,
}
代码中的path变量就是图⽚保存的位置,读者们可以⾃⾏设置路径。我这⾥默认是⽤户桌⾯下的Temp.png⽂件
到此这篇关于C#调⽤摄像头实现拍照功能的⽰例代码的⽂章就介绍到这了,更多相关C#调⽤摄像头拍照内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论