资源简介

自动连接摄像头,实现拍照并保存,小例子(入门级)

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing.Imaging;
using System.Text;
using System.Windows;
using System.Windows.Forms;
using System.IO;
using System.Windows.Media.Imaging;
using AForge;
using AForge.Controls;
using AForge.Video;
using AForge.Video.DirectShow;
using Size = System.Drawing.Size;


namespace OperateCamera
{
    public partial class Form1 : Form
    {
        private FilterInfoCollection videoDevices;
        private VideoCaptureDevice videoSource;
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender EventArgs e)
        {

            try
            {
                // 枚举所有视频输入设备
               

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-11-19 13:40  连接摄像头\
     文件        6089  2019-11-19 13:52  连接摄像头\Form1.Designer.cs
     文件        4472  2019-11-19 13:53  连接摄像头\Form1.cs
     文件      107589  2019-11-19 13:52  连接摄像头\Form1.resx
     文件        4450  2014-02-16 21:16  连接摄像头\OperateCamera.csproj
     文件         227  2014-02-16 20:18  连接摄像头\OperateCamera.csproj.user
     文件        5632  2019-11-19 13:58  连接摄像头\OperateCamera.v11.suo
     文件         494  2019-11-19 13:48  连接摄像头\Program.cs
     目录           0  2019-09-18 09:03  连接摄像头\Properties\
     文件        1358  2014-02-16 17:21  连接摄像头\Properties\AssemblyInfo.cs
     文件        2877  2014-02-16 17:21  连接摄像头\Properties\Resources.Designer.cs
     文件        5612  2014-02-16 17:21  连接摄像头\Properties\Resources.resx
     文件        1099  2014-02-16 17:21  连接摄像头\Properties\Settings.Designer.cs
     文件         249  2014-02-16 17:21  连接摄像头\Properties\Settings.settings
     目录           0  2019-11-21 16:24  连接摄像头\Service References\
     目录           0  2019-09-23 16:51  连接摄像头\bin\
     目录           0  2019-11-19 13:47  连接摄像头\bin\Debug\
     文件       44544  2013-07-15 23:04  连接摄像头\bin\Debug\AForge.Controls.dll
     文件      262656  2013-07-15 23:04  连接摄像头\bin\Debug\AForge.Imaging.dll
     文件       61440  2013-07-15 23:04  连接摄像头\bin\Debug\AForge.Video.DirectShow.dll
     文件       20992  2013-07-15 23:04  连接摄像头\bin\Debug\AForge.Video.dll
     文件       17920  2013-07-15 23:04  连接摄像头\bin\Debug\AForge.dll
     文件       81408  2019-11-19 13:52  连接摄像头\bin\Debug\OperateCamera.exe
     文件       28160  2019-11-19 13:52  连接摄像头\bin\Debug\OperateCamera.pdb
     文件       22984  2019-11-19 13:40  连接摄像头\bin\Debug\OperateCamera.vshost.exe
     文件         490  2014-01-13 21:31  连接摄像头\bin\Debug\OperateCamera.vshost.exe.manifest
     目录           0  2019-09-18 09:03  连接摄像头\lib\
     文件       44544  2013-07-15 23:04  连接摄像头\lib\AForge.Controls.dll
     文件      262656  2013-07-15 23:04  连接摄像头\lib\AForge.Imaging.dll
     文件       61440  2013-07-15 23:04  连接摄像头\lib\AForge.Video.DirectShow.dll
     文件       20992  2013-07-15 23:04  连接摄像头\lib\AForge.Video.dll
............此处省略16个文件信息

评论

共有 条评论