在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 基于百度离线SDK人脸识别系统

基于百度离线SDK人脸识别系统

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:481.76M
  • 下载次数:18
  • 浏览次数:135
  • 发布时间:2023-12-19
  • 实例类别:C#语言基础
  • 发 布 人:Eric123zxc
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 人脸识别 sdk sd 识别 系统

实例介绍

【实例简介】基于百度离线SDK人脸识别系统

使用百度离线人脸识别SDK,通过多线程完成读取视频,人脸检测,人脸特征值提取,人脸识别等功能。

【实例截图】

from clipboard

【核心代码】

.
├── FaceCompure_8.3
│   ├── ConsoleApp1
│   │   ├── Program.cs
│   │   ├── SocketSend.csproj
│   │   ├── bin
│   │   │   └── Release
│   │   │       └── net5.0
│   │   │           ├── ConsoleApp1.deps.json
│   │   │           ├── ConsoleApp1.dll
│   │   │           ├── ConsoleApp1.exe
│   │   │           ├── ConsoleApp1.pdb
│   │   │           ├── ConsoleApp1.runtimeconfig.dev.json
│   │   │           ├── ConsoleApp1.runtimeconfig.json
│   │   │           └── ref
│   │   │               └── ConsoleApp1.dll
│   │   └── obj
│   │       ├── ConsoleApp1.csproj.nuget.dgspec.json
│   │       ├── ConsoleApp1.csproj.nuget.g.props
│   │       ├── ConsoleApp1.csproj.nuget.g.targets
│   │       ├── Release
│   │       │   └── net5.0
│   │       │       ├── ConsoleApp1.AssemblyInfo.cs
│   │       │       ├── ConsoleApp1.AssemblyInfoInputs.cache
│   │       │       ├── ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig
│   │       │       ├── ConsoleApp1.assets.cache
│   │       │       ├── ConsoleApp1.csproj.AssemblyReference.cache
│   │       │       ├── ConsoleApp1.csproj.CoreCompileInputs.cache
│   │       │       ├── ConsoleApp1.csproj.FileListAbsolute.txt
│   │       │       ├── ConsoleApp1.dll
│   │       │       ├── ConsoleApp1.genruntimeconfig.cache
│   │       │       ├── ConsoleApp1.pdb
│   │       │       ├── SocketSend.AssemblyInfo.cs
│   │       │       ├── SocketSend.AssemblyInfoInputs.cache
│   │       │       ├── SocketSend.GeneratedMSBuildEditorConfig.editorconfig
│   │       │       ├── SocketSend.assets.cache
│   │       │       ├── apphost.exe
│   │       │       └── ref
│   │       │           └── ConsoleApp1.dll
│   │       ├── SocketSend.csproj.nuget.dgspec.json
│   │       ├── SocketSend.csproj.nuget.g.props
│   │       ├── SocketSend.csproj.nuget.g.targets
│   │       ├── project.assets.json
│   │       └── project.nuget.cache
│   ├── FaceOfflineSdk
│   │   ├── App.config
│   │   ├── DarkEnhance.cs
│   │   ├── DevEnum.cs
│   │   ├── Face.cs
│   │   ├── FaceActionLive.cs
│   │   ├── FaceAttr.cs
│   │   ├── FaceBest.cs
│   │   ├── FaceBlur.cs
│   │   ├── FaceCompare.cs
│   │   ├── FaceCrop.cs
│   │   ├── FaceDemo.cs
│   │   ├── FaceDetect.cs
│   │   ├── FaceDraw.cs
│   │   ├── FaceEyeClose.cs
│   │   ├── FaceFeature.cs
│   │   ├── FaceGaze.cs
│   │   ├── FaceHeadPose.cs
│   │   ├── FaceIllumination.cs
│   │   ├── FaceLandmark.cs
│   │   ├── FaceLiveness.cs
│   │   ├── FaceManager.cs
│   │   ├── FaceMouthClose.cs
│   │   ├── FaceMouthMask.cs
│   │   ├── FaceOcclusion.cs
│   │   ├── FaceOfflineSdk.csproj
│   │   ├── FaceOfflineSdk.csproj.user
│   │   ├── FaceTrack.cs
│   │   ├── FeatureAlign.cs
│   │   ├── FileUtil.cs
│   │   ├── HjimiCamera.cs
│   │   ├── ImageUtil.cs
│   │   ├── MultiThread.cs
│   │   ├── MultiThreadbak.csx
│   │   ├── OrbeCamera.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── TimeUtil.cs
│   │   ├── bin
│   │   │   ├── Video
│   │   │   ├── bakImages
│   │   │   ├── config
│   │   │   │   ├── action_live.json
│   │   │   │   ├── crop.json
│   │   │   │   ├── detect.json
│   │   │   │   └── track.json
│   │   │   ├── detectImages
│   │   │   ├── doc
│   │   │   │   └── 百度人脸识别windows c#离线sdk用户接入文档V8.3.pdf
│   │   │   ├── facepic
│   │   │   │   └── A05_2203012_方进.jpg
│   │   │   ├── images
│   │   │   │   ├── 1.jpg
│   │   │   │   ├── 2.jpg
│   │   │   │   ├── depth.png
│   │   │   │   ├── mask.jpg
│   │   │   │   ├── multi.jpg
│   │   │   │   ├── nir.png
│   │   │   │   └── rgb.png
│   │   │   ├── license
│   │   │   │   ├── license.ini
│   │   │   │   └── license.key
│   │   │   ├── models
│   │   │   │   ├── align
│   │   │   │   │   ├── align_fast_float32.encrypted
│   │   │   │   │   └── align_rgb.encrypted
│   │   │   │   ├── attribute
│   │   │   │   │   └── attribute_float32_paddle.encrypted
│   │   │   │   ├── best_image
│   │   │   │   │   └── bestimage_rgb.encrypted
│   │   │   │   ├── blur
│   │   │   │   │   └── blur_rgb.encrypted
│   │   │   │   ├── dark_enhance
│   │   │   │   │   └── dark_enhance_float32_paddle.encrypted
│   │   │   │   ├── detect
│   │   │   │   │   └── detect_rgb.encrypted
│   │   │   │   ├── eyes_close
│   │   │   │   │   └── eyes_close_float32_paddle.encrypted
│   │   │   │   ├── feature
│   │   │   │   │   ├── feature.encrypted
│   │   │   │   │   └── feature_nir_float32_paddle.encrypted
│   │   │   │   ├── gaze
│   │   │   │   │   └── gaze_float32_paddle.encrypted
│   │   │   │   ├── mouth_close
│   │   │   │   │   └── mouth_close_float32_paddle.encrypted
│   │   │   │   ├── mouth_mask
│   │   │   │   │   └── mouth_mask.encrypted
│   │   │   │   ├── occlusion
│   │   │   │   │   └── occlusion.encrypted
│   │   │   │   ├── resource.tmp
│   │   │   │   └── silent_live
│   │   │   │       ├── liveness_nir.encrypted
│   │   │   │       ├── liveness_rgb_rgb.encrypted
│   │   │   │       ├── multifactor_2dmask.encrypted
│   │   │   │       ├── multifactor_hand.encrypted
│   │   │   │       ├── multifactor_reflection.encrypted
│   │   │   │       └── silent_live_depth_float32_paddle.encrypted
│   │   │   ├── tools
│   │   │   │   ├── camera_driver
│   │   │   │   │   ├── hjimi
│   │   │   │   │   │   ├── ImiSDK-Lite-Installer-1.8.50.exe
│   │   │   │   │   │   ├── dll
│   │   │   │   │   │   │   ├── x64
│   │   │   │   │   │   │   │   ├── 1180Driver.dll
│   │   │   │   │   │   │   │   ├── 3000Driver.dll
│   │   │   │   │   │   │   │   ├── AimiCamera.dll
│   │   │   │   │   │   │   │   ├── ImiCamera.dll
│   │   │   │   │   │   │   │   ├── ImiLog.dll
│   │   │   │   │   │   │   │   ├── ImiNect.dll
│   │   │   │   │   │   │   │   ├── ImiSensor.dll
│   │   │   │   │   │   │   │   ├── hjimi_camera.dll
│   │   │   │   │   │   │   │   ├── imi.ini
│   │   │   │   │   │   │   │   ├── imidata
│   │   │   │   │   │   │   │   │   └── 46798imidata.bin
│   │   │   │   │   │   │   │   ├── libusbK.dll
│   │   │   │   │   │   │   │   ├── msvcp100.dll
│   │   │   │   │   │   │   │   └── msvcr100.dll
│   │   │   │   │   │   │   └── x86
│   │   │   │   │   │   │       ├── 1180Driver.dll
│   │   │   │   │   │   │       ├── 3000Driver.dll
│   │   │   │   │   │   │       ├── AimiCamera.dll
│   │   │   │   │   │   │       ├── ImiCamera.dll
│   │   │   │   │   │   │       ├── ImiLog.dll
│   │   │   │   │   │   │       ├── ImiNect.dll
│   │   │   │   │   │   │       ├── ImiSensor.dll
│   │   │   │   │   │   │       ├── hjimi_camera.dll
│   │   │   │   │   │   │       ├── imi.ini
│   │   │   │   │   │   │       ├── imidata
│   │   │   │   │   │   │       │   └── 46798imidata.bin
│   │   │   │   │   │   │       └── libusbK.dll
│   │   │   │   │   │   └── 华捷艾米镜头接入说明.txt
│   │   │   │   │   └── orbe
│   │   │   │   │       ├── SensorDriver_V4.3.0.12.exe
│   │   │   │   │       ├── VC_Redis_2013
│   │   │   │   │       │   ├── vcredist_x64.exe
│   │   │   │   │       │   └── vcredist_x86.exe
│   │   │   │   │       ├── dll
│   │   │   │   │       │   ├── x64
│   │   │   │   │       │   │   ├── OpenNI2
│   │   │   │   │       │   │   │   └── Drivers
│   │   │   │   │       │   │   │       ├── OniFile.dll
│   │   │   │   │       │   │   │       ├── OniFile.ini
│   │   │   │   │       │   │   │       ├── OniFile.lib
│   │   │   │   │       │   │   │       ├── Orbbec.dll
│   │   │   │   │       │   │   │       ├── Orbbec.ini
│   │   │   │   │       │   │   │       ├── Orbbec_deeyea.ini
│   │   │   │   │       │   │   │       └── orbbec.lib
│   │   │   │   │       │   │   ├── OpenNI2.dll
│   │   │   │   │       │   │   ├── OrbbecCamera.dll
│   │   │   │   │       │   │   └── OrbeCamera.dll
│   │   │   │   │       │   └── x86
│   │   │   │   │       │       ├── OpenNI2
│   │   │   │   │       │       │   └── Drivers
│   │   │   │   │       │       │       ├── ORBBEC.dll
│   │   │   │   │       │       │       ├── OniFile.dll
│   │   │   │   │       │       │       ├── OniFile.ini
│   │   │   │   │       │       │       ├── OniFile.lib
│   │   │   │   │       │       │       ├── orbbec.ini
│   │   │   │   │       │       │       ├── orbbec.lib
│   │   │   │   │       │       │       └── orbbec_deeyea.ini
│   │   │   │   │       │       ├── OpenNI2.dll
│   │   │   │   │       │       ├── OrbbecCamera.dll
│   │   │   │   │       │       └── OrbeCamera.dll
│   │   │   │   │       └── 奥比中光镜头接入说明.txt
│   │   │   │   ├── cpu-z
│   │   │   │   │   └── cpu-z_2.06-en.exe
│   │   │   │   ├── license_tool
│   │   │   │   │   ├── LicenseTool.exe
│   │   │   │   │   ├── Qt5Core.dll
│   │   │   │   │   ├── Qt5Gui.dll
│   │   │   │   │   ├── Qt5Widgets.dll
│   │   │   │   │   ├── imageformats
│   │   │   │   │   │   ├── qgif.dll
│   │   │   │   │   │   ├── qgifd.dll
│   │   │   │   │   │   ├── qicns.dll
│   │   │   │   │   │   ├── qicnsd.dll
│   │   │   │   │   │   ├── qico.dll
│   │   │   │   │   │   ├── qicod.dll
│   │   │   │   │   │   ├── qjpeg.dll
│   │   │   │   │   │   ├── qjpegd.dll
│   │   │   │   │   │   ├── qsvg.dll
│   │   │   │   │   │   ├── qsvgd.dll
│   │   │   │   │   │   ├── qtga.dll
│   │   │   │   │   │   ├── qtgad.dll
│   │   │   │   │   │   ├── qtiff.dll
│   │   │   │   │   │   ├── qtiffd.dll
│   │   │   │   │   │   ├── qwbmp.dll
│   │   │   │   │   │   ├── qwbmpd.dll
│   │   │   │   │   │   ├── qwebp.dll
│   │   │   │   │   │   └── qwebpd.dll
│   │   │   │   │   ├── libcurl.dll
│   │   │   │   │   ├── libgcc_s_dw2-1.dll
│   │   │   │   │   ├── libstdc -6.dll
│   │   │   │   │   ├── libwinpthread-1.dll
│   │   │   │   │   ├── license
│   │   │   │   │   │   ├── license.ini
│   │   │   │   │   │   └── license.key
│   │   │   │   │   ├── platforms
│   │   │   │   │   │   ├── qdirect2d.dll
│   │   │   │   │   │   ├── qdirect2dd.dll
│   │   │   │   │   │   ├── qminimal.dll
│   │   │   │   │   │   ├── qminimald.dll
│   │   │   │   │   │   ├── qoffscreen.dll
│   │   │   │   │   │   ├── qoffscreend.dll
│   │   │   │   │   │   ├── qwindows.dll
│   │   │   │   │   │   └── qwindowsd.dll
│   │   │   │   │   ├── tool.log
│   │   │   │   │   └── vka_license.dll
│   │   │   │   └── vc_redist
│   │   │   │       ├── vc_redist.x64.exe
│   │   │   │       └── vc_redist.x86.exe
│   │   │   ├── x64
│   │   │   │   ├── BaiduFaceApi.dll
│   │   │   │   ├── Debug
│   │   │   │   ├── EntityFramework.SqlServer.dll
│   │   │   │   ├── EntityFramework.SqlServer.xml
│   │   │   │   ├── EntityFramework.dll
│   │   │   │   ├── EntityFramework.xml
│   │   │   │   ├── FaceOfflineSdk.exe
│   │   │   │   ├── FaceOfflineSdk.exe.config
│   │   │   │   ├── FaceOfflineSdk.pdb
│   │   │   │   ├── Microsoft.Bcl.AsyncInterfaces.dll
│   │   │   │   ├── Microsoft.Win32.Primitives.dll
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   ├── OpenCvSharp.Extensions.dll
│   │   │   │   ├── OpenCvSharp.dll
│   │   │   │   ├── OpenCvSharpExtern.dll
│   │   │   │   ├── System.AppContext.dll
│   │   │   │   ├── System.Buffers.dll
│   │   │   │   ├── System.Collections.Concurrent.dll
│   │   │   │   ├── System.Collections.NonGeneric.dll
│   │   │   │   ├── System.Collections.Specialized.dll
│   │   │   │   ├── System.Collections.dll
│   │   │   │   ├── System.ComponentModel.EventBasedAsync.dll
│   │   │   │   ├── System.ComponentModel.Primitives.dll
│   │   │   │   ├── System.ComponentModel.TypeConverter.dll
│   │   │   │   ├── System.ComponentModel.dll
│   │   │   │   ├── System.Console.dll
│   │   │   │   ├── System.Data.Common.dll
│   │   │   │   ├── System.Data.SQLite.EF6.dll
│   │   │   │   ├── System.Data.SQLite.Linq.dll
│   │   │   │   ├── System.Data.SQLite.dll
│   │   │   │   ├── System.Data.SQLite.xml
│   │   │   │   ├── System.Diagnostics.Contracts.dll
│   │   │   │   ├── System.Diagnostics.Debug.dll
│   │   │   │   ├── System.Diagnostics.FileVersionInfo.dll
│   │   │   │   ├── System.Diagnostics.Process.dll
│   │   │   │   ├── System.Diagnostics.StackTrace.dll
│   │   │   │   ├── System.Diagnostics.TextWriterTraceListener.dll
│   │   │   │   ├── System.Diagnostics.Tools.dll
│   │   │   │   ├── System.Diagnostics.TraceSource.dll
│   │   │   │   ├── System.Diagnostics.Tracing.dll
│   │   │   │   ├── System.Drawing.Common.dll
│   │   │   │   ├── System.Drawing.Common.pdb
│   │   │   │   ├── System.Drawing.Primitives.dll
│   │   │   │   ├── System.Dynamic.Runtime.dll
│   │   │   │   ├── System.Globalization.Calendars.dll
│   │   │   │   ├── System.Globalization.Extensions.dll
│   │   │   │   ├── System.Globalization.dll
│   │   │   │   ├── System.IO.Compression.ZipFile.dll
│   │   │   │   ├── System.IO.Compression.dll
│   │   │   │   ├── System.IO.FileSystem.DriveInfo.dll
│   │   │   │   ├── System.IO.FileSystem.Primitives.dll
│   │   │   │   ├── System.IO.FileSystem.Watcher.dll
│   │   │   │   ├── System.IO.FileSystem.dll
│   │   │   │   ├── System.IO.IsolatedStorage.dll
│   │   │   │   ├── System.IO.MemoryMappedFiles.dll
│   │   │   │   ├── System.IO.Pipes.dll
│   │   │   │   ├── System.IO.UnmanagedMemoryStream.dll
│   │   │   │   ├── System.IO.dll
│   │   │   │   ├── System.Linq.Expressions.dll
│   │   │   │   ├── System.Linq.Parallel.dll
│   │   │   │   ├── System.Linq.Queryable.dll
│   │   │   │   ├── System.Linq.dll
│   │   │   │   ├── System.Memory.dll
│   │   │   │   ├── System.Net.Http.dll
│   │   │   │   ├── System.Net.NameResolution.dll
│   │   │   │   ├── System.Net.NetworkInformation.dll
│   │   │   │   ├── System.Net.Ping.dll
│   │   │   │   ├── System.Net.Primitives.dll
│   │   │   │   ├── System.Net.Requests.dll
│   │   │   │   ├── System.Net.Security.dll
│   │   │   │   ├── System.Net.Sockets.dll
│   │   │   │   ├── System.Net.WebHeaderCollection.dll
│   │   │   │   ├── System.Net.WebSockets.Client.dll
│   │   │   │   ├── System.Net.WebSockets.dll
│   │   │   │   ├── System.Numerics.Vectors.dll
│   │   │   │   ├── System.ObjectModel.dll
│   │   │   │   ├── System.Reflection.Extensions.dll
│   │   │   │   ├── System.Reflection.Primitives.dll
│   │   │   │   ├── System.Reflection.dll
│   │   │   │   ├── System.Resources.Reader.dll
│   │   │   │   ├── System.Resources.ResourceManager.dll
│   │   │   │   ├── System.Resources.Writer.dll
│   │   │   │   ├── System.Runtime.CompilerServices.Unsafe.dll
│   │   │   │   ├── System.Runtime.CompilerServices.VisualC.dll
│   │   │   │   ├── System.Runtime.Extensions.dll
│   │   │   │   ├── System.Runtime.Handles.dll
│   │   │   │   ├── System.Runtime.InteropServices.RuntimeInformation.dll
│   │   │   │   ├── System.Runtime.InteropServices.dll
│   │   │   │   ├── System.Runtime.Numerics.dll
│   │   │   │   ├── System.Runtime.Serialization.Formatters.dll
│   │   │   │   ├── System.Runtime.Serialization.Json.dll
│   │   │   │   ├── System.Runtime.Serialization.Primitives.dll
│   │   │   │   ├── System.Runtime.Serialization.Xml.dll
│   │   │   │   ├── System.Runtime.dll
│   │   │   │   ├── System.Security.Claims.dll
│   │   │   │   ├── System.Security.Cryptography.Algorithms.dll
│   │   │   │   ├── System.Security.Cryptography.Csp.dll
│   │   │   │   ├── System.Security.Cryptography.Encoding.dll
│   │   │   │   ├── System.Security.Cryptography.Primitives.dll
│   │   │   │   ├── System.Security.Cryptography.X509Certificates.dll
│   │   │   │   ├── System.Security.Principal.dll
│   │   │   │   ├── System.Security.SecureString.dll
│   │   │   │   ├── System.Text.Encoding.Extensions.dll
│   │   │   │   ├── System.Text.Encoding.dll
│   │   │   │   ├── System.Text.Encodings.Web.dll
│   │   │   │   ├── System.Text.Json.dll
│   │   │   │   ├── System.Text.RegularExpressions.dll
│   │   │   │   ├── System.Threading.Overlapped.dll
│   │   │   │   ├── System.Threading.Tasks.Extensions.dll
│   │   │   │   ├── System.Threading.Tasks.Parallel.dll
│   │   │   │   ├── System.Threading.Tasks.dll
│   │   │   │   ├── System.Threading.Thread.dll
│   │   │   │   ├── System.Threading.ThreadPool.dll
│   │   │   │   ├── System.Threading.Timer.dll
│   │   │   │   ├── System.Threading.dll
│   │   │   │   ├── System.ValueTuple.dll
│   │   │   │   ├── System.Xml.ReaderWriter.dll
│   │   │   │   ├── System.Xml.XDocument.dll
│   │   │   │   ├── System.Xml.XPath.XDocument.dll
│   │   │   │   ├── System.Xml.XPath.dll
│   │   │   │   ├── System.Xml.XmlDocument.dll
│   │   │   │   ├── System.Xml.XmlSerializer.dll
│   │   │   │   ├── bd_license.dll
│   │   │   │   ├── db
│   │   │   │   │   └── face.db
│   │   │   │   ├── dll
│   │   │   │   │   ├── x64
│   │   │   │   │   │   ├── OpenCvSharpExtern.dll
│   │   │   │   │   │   └── opencv_videoio_ffmpeg480_64.dll
│   │   │   │   │   └── x86
│   │   │   │   │       ├── OpenCvSharpExtern.dll
│   │   │   │   │       └── opencv_videoio_ffmpeg480.dll
│   │   │   │   ├── face.ini
│   │   │   │   ├── face_sdk.dll
│   │   │   │   ├── face_sdk.log
│   │   │   │   ├── libcurl.dll
│   │   │   │   ├── libeay32.dll
│   │   │   │   ├── libiomp5md.dll
│   │   │   │   ├── mkldnn.dll
│   │   │   │   ├── mklml.dll
│   │   │   │   ├── netstandard.dll
│   │   │   │   ├── openblas.dll
│   │   │   │   ├── opencv_videoio_ffmpeg480_64.dll
│   │   │   │   ├── opencv_world320.dll
│   │   │   │   ├── paddle_fluid.dll
│   │   │   │   ├── paddle_fluid_mkl.dll
│   │   │   │   ├── paddle_inference.dll
│   │   │   │   ├── ssleay32.dll
│   │   │   │   ├── x64
│   │   │   │   │   └── SQLite.Interop.dll
│   │   │   │   ├── x86
│   │   │   │   │   └── SQLite.Interop.dll
│   │   │   │   └── 人脸注册V1.0.exe
│   │   │   └── x86
│   │   │       ├── BaiduFaceApi.dll
│   │   │       ├── Debug
│   │   │       ├── FaceOfflineSdk.exe
│   │   │       ├── FaceOfflineSdk.exe.config
│   │   │       ├── FaceOfflineSdk.pdb
│   │   │       ├── FaceOfflineSdk.vshost.exe
│   │   │       ├── FaceOfflineSdk.vshost.exe.config
│   │   │       ├── FaceOfflineSdk.vshost.exe.manifest
│   │   │       ├── Microsoft.Bcl.AsyncInterfaces.dll
│   │   │       ├── Microsoft.Win32.Primitives.dll
│   │   │       ├── Newtonsoft.Json.dll
│   │   │       ├── OpenCvSharp.Extensions.dll
│   │   │       ├── OpenCvSharp.dll
│   │   │       ├── OpenCvSharpExtern.dll
│   │   │       ├── System.AppContext.dll
│   │   │       ├── System.Buffers.dll
│   │   │       ├── System.Collections.Concurrent.dll
│   │   │       ├── System.Collections.NonGeneric.dll
│   │   │       ├── System.Collections.Specialized.dll
│   │   │       ├── System.Collections.dll
│   │   │       ├── System.ComponentModel.EventBasedAsync.dll
│   │   │       ├── System.ComponentModel.Primitives.dll
│   │   │       ├── System.ComponentModel.TypeConverter.dll
│   │   │       ├── System.ComponentModel.dll
│   │   │       ├── System.Console.dll
│   │   │       ├── System.Data.Common.dll
│   │   │       ├── System.Diagnostics.Contracts.dll
│   │   │       ├── System.Diagnostics.Debug.dll
│   │   │       ├── System.Diagnostics.FileVersionInfo.dll
│   │   │       ├── System.Diagnostics.Process.dll
│   │   │       ├── System.Diagnostics.StackTrace.dll
│   │   │       ├── System.Diagnostics.TextWriterTraceListener.dll
│   │   │       ├── System.Diagnostics.Tools.dll
│   │   │       ├── System.Diagnostics.TraceSource.dll
│   │   │       ├── System.Diagnostics.Tracing.dll
│   │   │       ├── System.Drawing.Common.dll
│   │   │       ├── System.Drawing.Common.pdb
│   │   │       ├── System.Drawing.Primitives.dll
│   │   │       ├── System.Dynamic.Runtime.dll
│   │   │       ├── System.Globalization.Calendars.dll
│   │   │       ├── System.Globalization.Extensions.dll
│   │   │       ├── System.Globalization.dll
│   │   │       ├── System.IO.Compression.ZipFile.dll
│   │   │       ├── System.IO.Compression.dll
│   │   │       ├── System.IO.FileSystem.DriveInfo.dll
│   │   │       ├── System.IO.FileSystem.Primitives.dll
│   │   │       ├── System.IO.FileSystem.Watcher.dll
│   │   │       ├── System.IO.FileSystem.dll
│   │   │       ├── System.IO.IsolatedStorage.dll
│   │   │       ├── System.IO.MemoryMappedFiles.dll
│   │   │       ├── System.IO.Pipes.dll
│   │   │       ├── System.IO.UnmanagedMemoryStream.dll
│   │   │       ├── System.IO.dll
│   │   │       ├── System.Linq.Expressions.dll
│   │   │       ├── System.Linq.Parallel.dll
│   │   │       ├── System.Linq.Queryable.dll
│   │   │       ├── System.Linq.dll
│   │   │       ├── System.Memory.dll
│   │   │       ├── System.Net.Http.dll
│   │   │       ├── System.Net.NameResolution.dll
│   │   │       ├── System.Net.NetworkInformation.dll
│   │   │       ├── System.Net.Ping.dll
│   │   │       ├── System.Net.Primitives.dll
│   │   │       ├── System.Net.Requests.dll
│   │   │       ├── System.Net.Security.dll
│   │   │       ├── System.Net.Sockets.dll
│   │   │       ├── System.Net.WebHeaderCollection.dll
│   │   │       ├── System.Net.WebSockets.Client.dll
│   │   │       ├── System.Net.WebSockets.dll
│   │   │       ├── System.Numerics.Vectors.dll
│   │   │       ├── System.ObjectModel.dll
│   │   │       ├── System.Reflection.Extensions.dll
│   │   │       ├── System.Reflection.Primitives.dll
│   │   │       ├── System.Reflection.dll
│   │   │       ├── System.Resources.Reader.dll
│   │   │       ├── System.Resources.ResourceManager.dll
│   │   │       ├── System.Resources.Writer.dll
│   │   │       ├── System.Runtime.CompilerServices.Unsafe.dll
│   │   │       ├── System.Runtime.CompilerServices.VisualC.dll
│   │   │       ├── System.Runtime.Extensions.dll
│   │   │       ├── System.Runtime.Handles.dll
│   │   │       ├── System.Runtime.InteropServices.RuntimeInformation.dll
│   │   │       ├── System.Runtime.InteropServices.dll
│   │   │       ├── System.Runtime.Numerics.dll
│   │   │       ├── System.Runtime.Serialization.Formatters.dll
│   │   │       ├── System.Runtime.Serialization.Json.dll
│   │   │       ├── System.Runtime.Serialization.Primitives.dll
│   │   │       ├── System.Runtime.Serialization.Xml.dll
│   │   │       ├── System.Runtime.dll
│   │   │       ├── System.Security.Claims.dll
│   │   │       ├── System.Security.Cryptography.Algorithms.dll
│   │   │       ├── System.Security.Cryptography.Csp.dll
│   │   │       ├── System.Security.Cryptography.Encoding.dll
│   │   │       ├── System.Security.Cryptography.Primitives.dll
│   │   │       ├── System.Security.Cryptography.X509Certificates.dll
│   │   │       ├── System.Security.Principal.dll
│   │   │       ├── System.Security.SecureString.dll
│   │   │       ├── System.Text.Encoding.Extensions.dll
│   │   │       ├── System.Text.Encoding.dll
│   │   │       ├── System.Text.Encodings.Web.dll
│   │   │       ├── System.Text.Json.dll
│   │   │       ├── System.Text.RegularExpressions.dll
│   │   │       ├── System.Threading.Overlapped.dll
│   │   │       ├── System.Threading.Tasks.Extensions.dll
│   │   │       ├── System.Threading.Tasks.Parallel.dll
│   │   │       ├── System.Threading.Tasks.dll
│   │   │       ├── System.Threading.Thread.dll
│   │   │       ├── System.Threading.ThreadPool.dll
│   │   │       ├── System.Threading.Timer.dll
│   │   │       ├── System.Threading.dll
│   │   │       ├── System.ValueTuple.dll
│   │   │       ├── System.Xml.ReaderWriter.dll
│   │   │       ├── System.Xml.XDocument.dll
│   │   │       ├── System.Xml.XPath.XDocument.dll
│   │   │       ├── System.Xml.XPath.dll
│   │   │       ├── System.Xml.XmlDocument.dll
│   │   │       ├── System.Xml.XmlSerializer.dll
│   │   │       ├── bd_license.dll
│   │   │       ├── db
│   │   │       │   └── face.db
│   │   │       ├── dll
│   │   │       │   ├── x64
│   │   │       │   │   ├── OpenCvSharpExtern.dll
│   │   │       │   │   └── opencv_videoio_ffmpeg480_64.dll
│   │   │       │   └── x86
│   │   │       │       ├── OpenCvSharpExtern.dll
│   │   │       │       └── opencv_videoio_ffmpeg480.dll
│   │   │       ├── face_sdk.dll
│   │   │       ├── libcurl.dll
│   │   │       ├── libeay32.dll
│   │   │       ├── libopenblas.dll
│   │   │       ├── libquadmath-0.dll
│   │   │       ├── netstandard.dll
│   │   │       ├── no_factor.conf
│   │   │       ├── openblas.dll
│   │   │       ├── opencv_ffmpeg320.dll
│   │   │       ├── opencv_videoio_ffmpeg480.dll
│   │   │       ├── opencv_world320.dll
│   │   │       ├── ssleay32.dll
│   │   │       └── vcomp140.dll
│   │   ├── obj
│   │   │   ├── FaceOfflineSdk.csproj.nuget.dgspec.json
│   │   │   ├── FaceOfflineSdk.csproj.nuget.g.props
│   │   │   ├── FaceOfflineSdk.csproj.nuget.g.targets
│   │   │   ├── project.assets.json
│   │   │   ├── project.nuget.cache
│   │   │   ├── x64
│   │   │   │   └── Release
│   │   │   │       ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │       ├── FaceOfflineSdk.csproj.AssemblyReference.cache
│   │   │   │       ├── FaceOfflineSdk.csproj.CopyComplete
│   │   │   │       ├── FaceOfflineSdk.csproj.CoreCompileInputs.cache
│   │   │   │       ├── FaceOfflineSdk.csproj.FileListAbsolute.txt
│   │   │   │       ├── FaceOfflineSdk.exe
│   │   │   │       ├── FaceOfflineSdk.exe.config
│   │   │   │       ├── FaceOfflineSdk.pdb
│   │   │   │       └── TempPE
│   │   │   └── x86
│   │   │       └── Release
│   │   │           ├── FaceOfflineSdk.csproj.CopyComplete
│   │   │           ├── FaceOfflineSdk.csproj.CoreCompileInputs.cache
│   │   │           ├── FaceOfflineSdk.csproj.FileListAbsolute.txt
│   │   │           ├── FaceOfflineSdk.exe
│   │   │           ├── FaceOfflineSdk.exe.config
│   │   │           ├── FaceOfflineSdk.pdb
│   │   │           └── TempPE
│   │   └── packages.config
│   ├── FaceOfflineSdk.sln
│   └── packages
│       ├── EntityFramework.6.4.4
│       │   ├── EntityFramework.6.4.4.nupkg
│       │   ├── Icon.png
│       │   ├── build
│       │   │   ├── EntityFramework.DefaultItems.props
│       │   │   ├── EntityFramework.props
│       │   │   ├── EntityFramework.targets
│       │   │   ├── Microsoft.Data.Entity.Build.Tasks.dll
│       │   │   └── netcoreapp3.0
│       │   │       ├── EntityFramework.props
│       │   │       └── EntityFramework.targets
│       │   ├── buildTransitive
│       │   │   ├── EntityFramework.props
│       │   │   ├── EntityFramework.targets
│       │   │   └── netcoreapp3.0
│       │   │       ├── EntityFramework.props
│       │   │       └── EntityFramework.targets
│       │   ├── content
│       │   │   └── net40
│       │   │       ├── App.config.install.xdt
│       │   │       ├── App.config.transform
│       │   │       ├── Web.config.install.xdt
│       │   │       └── Web.config.transform
│       │   ├── lib
│       │   │   ├── net40
│       │   │   │   ├── EntityFramework.SqlServer.dll
│       │   │   │   ├── EntityFramework.SqlServer.xml
│       │   │   │   ├── EntityFramework.dll
│       │   │   │   └── EntityFramework.xml
│       │   │   ├── net45
│       │   │   │   ├── EntityFramework.SqlServer.dll
│       │   │   │   ├── EntityFramework.SqlServer.xml
│       │   │   │   ├── EntityFramework.dll
│       │   │   │   └── EntityFramework.xml
│       │   │   └── netstandard2.1
│       │   │       ├── EntityFramework.SqlServer.dll
│       │   │       ├── EntityFramework.SqlServer.xml
│       │   │       ├── EntityFramework.dll
│       │   │       └── EntityFramework.xml
│       │   └── tools
│       │       ├── EntityFramework6.PS2.psd1
│       │       ├── EntityFramework6.PS2.psm1
│       │       ├── EntityFramework6.psd1
│       │       ├── EntityFramework6.psm1
│       │       ├── about_EntityFramework6.help.txt
│       │       ├── init.ps1
│       │       ├── install.ps1
│       │       ├── net40
│       │       │   ├── any
│       │       │   │   ├── ef6.exe
│       │       │   │   └── ef6.pdb
│       │       │   └── win-x86
│       │       │       ├── ef6.exe
│       │       │       └── ef6.pdb
│       │       ├── net45
│       │       │   ├── any
│       │       │   │   ├── ef6.exe
│       │       │   │   └── ef6.pdb
│       │       │   └── win-x86
│       │       │       ├── ef6.exe
│       │       │       └── ef6.pdb
│       │       └── netcoreapp3.0
│       │           └── any
│       │               ├── ef6.dll
│       │               ├── ef6.pdb
│       │               └── ef6.runtimeconfig.json
│       ├── Stub.System.Data.SQLite.Core.NetFramework.1.0.118.0
│       │   ├── Stub.System.Data.SQLite.Core.NetFramework.1.0.118.0.nupkg
│       │   ├── build
│       │   │   ├── net20
│       │   │   │   ├── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   │   │   ├── x64
│       │   │   │   │   └── SQLite.Interop.dll
│       │   │   │   └── x86
│       │   │   │       └── SQLite.Interop.dll
│       │   │   ├── net40
│       │   │   │   ├── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   │   │   ├── x64
│       │   │   │   │   └── SQLite.Interop.dll
│       │   │   │   └── x86
│       │   │   │       └── SQLite.Interop.dll
│       │   │   ├── net45
│       │   │   │   ├── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   │   │   ├── x64
│       │   │   │   │   └── SQLite.Interop.dll
│       │   │   │   └── x86
│       │   │   │       └── SQLite.Interop.dll
│       │   │   ├── net451
│       │   │   │   ├── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   │   │   ├── x64
│       │   │   │   │   └── SQLite.Interop.dll
│       │   │   │   └── x86
│       │   │   │       └── SQLite.Interop.dll
│       │   │   └── net46
│       │   │       ├── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   │       ├── x64
│       │   │       │   └── SQLite.Interop.dll
│       │   │       └── x86
│       │   │           └── SQLite.Interop.dll
│       │   ├── buildTransitive
│       │   │   ├── net20
│       │   │   │   └── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   │   ├── net40
│       │   │   │   └── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   │   ├── net45
│       │   │   │   └── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   │   ├── net451
│       │   │   │   └── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   │   └── net46
│       │   │       └── Stub.System.Data.SQLite.Core.NetFramework.targets
│       │   └── lib
│       │       ├── net20
│       │       │   ├── System.Data.SQLite.dll
│       │       │   ├── System.Data.SQLite.dll.altconfig
│       │       │   └── System.Data.SQLite.xml
│       │       ├── net40
│       │       │   ├── System.Data.SQLite.dll
│       │       │   ├── System.Data.SQLite.dll.altconfig
│       │       │   └── System.Data.SQLite.xml
│       │       ├── net45
│       │       │   ├── System.Data.SQLite.dll
│       │       │   ├── System.Data.SQLite.dll.altconfig
│       │       │   └── System.Data.SQLite.xml
│       │       ├── net451
│       │       │   ├── System.Data.SQLite.dll
│       │       │   ├── System.Data.SQLite.dll.altconfig
│       │       │   └── System.Data.SQLite.xml
│       │       └── net46
│       │           ├── System.Data.SQLite.dll
│       │           ├── System.Data.SQLite.dll.altconfig
│       │           └── System.Data.SQLite.xml
│       ├── System.Data.SQLite.1.0.118.0
│       │   └── System.Data.SQLite.1.0.118.0.nupkg
│       ├── System.Data.SQLite.Core.1.0.118.0
│       │   └── System.Data.SQLite.Core.1.0.118.0.nupkg
│       ├── System.Data.SQLite.EF6.1.0.118.0
│       │   ├── System.Data.SQLite.EF6.1.0.118.0.nupkg
│       │   ├── content
│       │   │   ├── net40
│       │   │   │   ├── app.config.install.xdt
│       │   │   │   ├── app.config.transform
│       │   │   │   ├── web.config.install.xdt
│       │   │   │   └── web.config.transform
│       │   │   ├── net45
│       │   │   │   ├── app.config.install.xdt
│       │   │   │   ├── app.config.transform
│       │   │   │   ├── web.config.install.xdt
│       │   │   │   └── web.config.transform
│       │   │   ├── net451
│       │   │   │   ├── app.config.install.xdt
│       │   │   │   ├── app.config.transform
│       │   │   │   ├── web.config.install.xdt
│       │   │   │   └── web.config.transform
│       │   │   └── net46
│       │   │       ├── app.config.install.xdt
│       │   │       ├── app.config.transform
│       │   │       ├── web.config.install.xdt
│       │   │       └── web.config.transform
│       │   ├── lib
│       │   │   ├── net40
│       │   │   │   └── System.Data.SQLite.EF6.dll
│       │   │   ├── net45
│       │   │   │   └── System.Data.SQLite.EF6.dll
│       │   │   ├── net451
│       │   │   │   └── System.Data.SQLite.EF6.dll
│       │   │   ├── net46
│       │   │   │   └── System.Data.SQLite.EF6.dll
│       │   │   └── netstandard2.1
│       │   │       └── System.Data.SQLite.EF6.dll
│       │   └── tools
│       │       ├── net40
│       │       │   └── install.ps1
│       │       ├── net45
│       │       │   └── install.ps1
│       │       ├── net451
│       │       │   └── install.ps1
│       │       └── net46
│       │           └── install.ps1
│       └── System.Data.SQLite.Linq.1.0.118.0
│           ├── System.Data.SQLite.Linq.1.0.118.0.nupkg
│           ├── content
│           │   ├── net20
│           │   │   ├── app.config.transform
│           │   │   └── web.config.transform
│           │   ├── net40
│           │   │   ├── app.config.transform
│           │   │   └── web.config.transform
│           │   ├── net45
│           │   │   ├── app.config.transform
│           │   │   └── web.config.transform
│           │   ├── net451
│           │   │   ├── app.config.transform
│           │   │   └── web.config.transform
│           │   └── net46
│           │       ├── app.config.transform
│           │       └── web.config.transform
│           └── lib
│               ├── net20
│               │   └── System.Data.SQLite.Linq.dll
│               ├── net40
│               │   └── System.Data.SQLite.Linq.dll
│               ├── net45
│               │   └── System.Data.SQLite.Linq.dll
│               ├── net451
│               │   └── System.Data.SQLite.Linq.dll
│               └── net46
│                   └── System.Data.SQLite.Linq.dll
└── 基于百度离线SDK人脸识别系统.rar

161 directories, 626 files


网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警