嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#健康码识别源码
单靠人工核验健康码容易造成人员拥堵,增加病毒交叉感染的风险,可以使用计算机来实现自动核验。
实现方式
创建一个WinForm程序,添加下列控件:
-
button 开启摄像头
-
pictureBox 显示摄像头图像
-
time 定时识别摄像头图像,频率设为100
-
label 显示健康码状态
.
├── HealthCode
│ ├── HealthCode.Designer.cs
│ ├── HealthCode.cs
│ ├── HealthCode.csproj
│ ├── HealthCode.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── bin
│ │ ├── Debug
│ │ │ ├── AForge.Video.DirectShow.dll
│ │ │ ├── HealthCode.vshost.exe
│ │ │ ├── HealthCode.vshost.exe.manifest
│ │ │ ├── Newtonsoft.Json.Net35.dll
│ │ │ └── ZXING.DLL
│ │ └── Release
│ └── obj
│ └── x86
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ └── TempPE
├── HealthCode.sln
├── HealthCode.suo
└── 好例子网_HealthCode.rar
9 directories, 20 files