虹膜工具DSDK代码
.
├── App.config
├── Form1.Designer.cs
├── Form1.cs
├── Form1.resx
├── Form2.Designer.cs
├── Form2.cs
├── Form2.resx
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ ├── Settings.settings
│ └── app.manifest
├── Resources
│ └── ca.crt
├── SimbokTest.csproj
├── SimbokTest.csproj.user
├── SimbokTest.sln
├── bin
│ ├── Debug
│ │ ├── DeviceDriver.dll
│ │ ├── EyeExt.dll
│ │ ├── EyeID.dll
│ │ ├── ID_Fpr.dll
│ │ ├── Newtonsoft.Json.dll
│ │ ├── SimbokTest.exe
│ │ ├── SimbokTest.exe.config
│ │ ├── SimbokTest.pdb
│ │ ├── ca.crt
│ │ ├── data
│ │ │ └── eyedata
│ │ ├── dll
│ │ │ ├── x64
│ │ │ └── x86
│ │ ├── exvmuvc.ax
│ │ ├── exvmuvc_setup.bat
│ │ ├── file1.xml
│ │ ├── file2.xml
│ │ ├── libatomic-1.dll
│ │ ├── libgcc_s_sjlj-1.dll
│ │ ├── libirisengine.dll
│ │ ├── libportaudio.dll
│ │ ├── libsbklic.dll
│ │ ├── libsbkutil.dll
│ │ ├── libstdc -6.dll
│ │ ├── libwinpthread-1.dll
│ │ ├── libxuctl.dll
│ │ ├── ntp.dll
│ │ ├── param_common.cfg
│ │ ├── param_common.cfg.bak
│ │ ├── param_dev.cfg
│ │ ├── skcamera.dll
│ │ ├── sound
│ │ │ ├── alarm.wav
│ │ │ ├── capture.wav
│ │ │ ├── cardfail.wav
│ │ │ ├── cardpass.wav
│ │ │ ├── downward.wav
│ │ │ ├── enroll.wav
│ │ │ ├── identify.wav
│ │ │ ├── left.wav
│ │ │ ├── retry.wav
│ │ │ ├── right.wav
│ │ │ ├── stranger.wav
│ │ │ ├── toofar.wav
│ │ │ ├── toonear.wav
│ │ │ ├── trumpet.wav
│ │ │ ├── upward.wav
│ │ │ ├── verify.wav
│ │ │ └── zssbj.wav
│ │ └── test.bmp
│ └── Release
├── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── SimbokTest.Form2.resources
│ ├── SimbokTest.Properties.Resources.resources
│ ├── SimbokTest.csproj.CoreCompileInputs.cache
│ ├── SimbokTest.csproj.FileListAbsolute.txt
│ ├── SimbokTest.csproj.GenerateResource.cache
│ ├── SimbokTest.exe
│ ├── SimbokTest.pdb
│ ├── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── 武汉虹膜设备对接.Form1.resources
│ ├── 武汉虹膜设备对接.csproj.AssemblyReference.cache
│ ├── 武汉虹膜设备对接.csproj.CoreCompileInputs.cache
│ ├── 武汉虹膜设备对接.csproj.FileListAbsolute.txt
│ ├── 武汉虹膜设备对接.csproj.GenerateResource.cache
│ └── 武汉虹膜设备对接.csprojAssemblyReference.cache
├── packages
│ └── Newtonsoft.Json.13.0.1
│ ├── LICENSE.md
│ ├── Newtonsoft.Json.13.0.1.nupkg
│ ├── lib
│ │ ├── net20
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── net35
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── net40
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── net45
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── netstandard1.0
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ ├── netstandard1.3
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ └── Newtonsoft.Json.xml
│ │ └── netstandard2.0
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ └── packageIcon.png
├── packages.config
├── sdk
│ ├── Class1.cs
│ ├── IrisDll.cs
│ ├── Iris_configuration.cs
│ ├── SimbokDll.cs
│ ├── SslTcpClient.cs
│ └── UserData.cs
└── 找例子网_虹膜设备对接.zip
25 directories, 104 files
评论