C#调用摄像头实现拍照功能的示例代码
程序员文章站
2022-03-15 09:41:33
前言老师要求我们学生做一套拍照身份验证系统,经过长时间的学习,有了这篇文章,希望能帮到读者们。正文首先介绍本文的主角:aforge创建一个c#项目,引用必备的几个dll aforge.dll af...
前言
老师要求我们学生做一套拍照身份验证系统,经过长时间的学习,有了这篇文章,希望能帮到读者们。
正文
首先介绍本文的主角: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) { bitmap bmp = (bitmap)eventargs.frame.clone(); //clone摄像头中的一帧 bmp.save(path, imageformat.png); videosource.newframe -= new newframeeventhandler(videosource_newframe); //如果这里不写这个,一会儿会不停的拍照, }
代码中的path变量就是图片保存的位置,读者们可以自行设置路径。我这里默认是用户桌面下的temp.png文件
测试代码下载地址:https://gitee.com/givecve/csharp_camera/raw/master/opencamera.zip
到此这篇关于c#调用摄像头实现拍照功能的示例代码的文章就介绍到这了,更多相关c#调用摄像头拍照内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!