在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例桌面应用界面/GUI → 基于虹软Winfrom 人脸识别追踪 x64

基于虹软Winfrom 人脸识别追踪 x64

桌面应用界面/GUI

下载此实例
  • 开发语言:C#
  • 实例大小:339.99M
  • 下载次数:31
  • 浏览次数:274
  • 发布时间:2023-04-08
  • 实例类别:桌面应用界面/GUI
  • 发 布 人:木木深林
  • 文件格式:.zip
  • 所需积分:10
 相关标签: WinFrom 人脸识别 ROM win 追踪

实例介绍

【实例简介】基于虹软Winfrom 人脸识别追踪 x64

【实例截图】

from clipboard

from clipboard

【核心代码】

.
├── mysql数据库脚本
│   └── checkingin.sql
├── 源码文件
│   ├── ArcSoftFace.Util
│   │   ├── ArcSoftFace.Util.csproj
│   │   ├── Entity
│   │   │   ├── EmployeeInfo.cs
│   │   │   ├── FaceTrackUnit.cs
│   │   │   └── ImageInfo.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── SDKModels
│   │   │   ├── ASF_AgeInfo.cs
│   │   │   ├── ASF_Face3DAngle.cs
│   │   │   ├── ASF_FaceFeature.cs
│   │   │   ├── ASF_GenderInfo.cs
│   │   │   ├── ASF_ImagePixelFormat.cs
│   │   │   ├── ASF_LivenessInfo.cs
│   │   │   ├── ASF_MultiFaceInfo.cs
│   │   │   ├── ASF_OrientCode.cs
│   │   │   ├── ASF_OrientPriority.cs
│   │   │   ├── ASF_SingleFaceInfo.cs
│   │   │   ├── ASF_VERSION.cs
│   │   │   ├── DetectionMode.cs
│   │   │   ├── FaceEngineMask.cs
│   │   │   └── MRECT.cs
│   │   ├── SDKUtil
│   │   │   └── ASFFunctions.cs
│   │   ├── Utils
│   │   │   ├── FaceUtil.cs
│   │   │   ├── ImageUtil.cs
│   │   │   └── MemoryUtil.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── ArcSoftFace.Util.dll
│   │   │   │   └── ArcSoftFace.Util.pdb
│   │   │   └── Release
│   │   └── obj
│   │       └── Debug
│   │           ├── ArcSoftFace.Util.csproj.AssemblyReference.cache
│   │           ├── ArcSoftFace.Util.csproj.CoreCompileInputs.cache
│   │           ├── ArcSoftFace.Util.csproj.FileListAbsolute.txt
│   │           ├── ArcSoftFace.Util.dll
│   │           ├── ArcSoftFace.Util.pdb
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── TempPE
│   │           └── _IsIncrementalBuild
│   ├── ArcSoftFace.sln
│   ├── ArcSoftFaceWinForm
│   │   ├── App.config
│   │   ├── ArcSoftFace.csproj
│   │   ├── FaceCompare.cs
│   │   ├── FaceForm.Designer.cs
│   │   ├── FaceForm.cs
│   │   ├── FaceForm.resx
│   │   ├── Image
│   │   │   ├── zp.jpg
│   │   │   ├── zp2.bmp
│   │   │   └── zp3.jpg
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Resources
│   │   │   └── favicon.ico
│   │   ├── bin
│   │   │   ├── ArcSoft_ArcFace_Windows_x64_V3.0
│   │   │   │   ├── ArcSoft_ArcFace_Windows_x64_V3.0 (1).zip
│   │   │   │   ├── demo
│   │   │   │   │   └── ArcfaceDemo
│   │   │   │   │       ├── ArcFaceDemo
│   │   │   │   │       │   ├── ArcFaceDemo.cpp
│   │   │   │   │       │   ├── ArcFaceDemo.h
│   │   │   │   │       │   ├── ArcFaceDemo.rc
│   │   │   │   │       │   ├── ArcFaceDemo.vcxproj
│   │   │   │   │       │   ├── ArcFaceDemoDlg.cpp
│   │   │   │   │       │   ├── ArcFaceDemoDlg.h
│   │   │   │   │       │   ├── ArcFaceEngine.cpp
│   │   │   │   │       │   ├── ArcFaceEngine.h
│   │   │   │   │       │   ├── ReadMe.txt
│   │   │   │   │       │   ├── include
│   │   │   │   │       │   │   ├── inc
│   │   │   │   │       │   │   │   ├── amcomdef.h
│   │   │   │   │       │   │   │   ├── asvloffscreen.h
│   │   │   │   │       │   │   │   ├── free
│   │   │   │   │       │   │   │   │   └── arcsoft_face_sdk.h
│   │   │   │   │       │   │   │   ├── merror.h
│   │   │   │   │       │   │   │   └── pro
│   │   │   │   │       │   │   └── opencv
│   │   │   │   │       │   │       └── include
│   │   │   │   │       │   │           ├── opencv
│   │   │   │   │       │   │           │   ├── cv.h
│   │   │   │   │       │   │           │   ├── cv.hpp
│   │   │   │   │       │   │           │   ├── cvaux.h
│   │   │   │   │       │   │           │   ├── cvaux.hpp
│   │   │   │   │       │   │           │   ├── cvwimage.h
│   │   │   │   │       │   │           │   ├── cxcore.h
│   │   │   │   │       │   │           │   ├── cxcore.hpp
│   │   │   │   │       │   │           │   ├── cxeigen.hpp
│   │   │   │   │       │   │           │   ├── cxmisc.h
│   │   │   │   │       │   │           │   ├── highgui.h
│   │   │   │   │       │   │           │   └── ml.h
│   │   │   │   │       │   │           └── opencv2
│   │   │   │   │       │   │               ├── calib3d
│   │   │   │   │       │   │               │   └── calib3d.hpp
│   │   │   │   │       │   │               ├── contrib
│   │   │   │   │       │   │               │   ├── contrib.hpp
│   │   │   │   │       │   │               │   ├── detection_based_tracker.hpp
│   │   │   │   │       │   │               │   ├── hybridtracker.hpp
│   │   │   │   │       │   │               │   ├── openfabmap.hpp
│   │   │   │   │       │   │               │   └── retina.hpp
│   │   │   │   │       │   │               ├── core
│   │   │   │   │       │   │               │   ├── affine.hpp
│   │   │   │   │       │   │               │   ├── core.hpp
│   │   │   │   │       │   │               │   ├── core_c.h
│   │   │   │   │       │   │               │   ├── cuda_devptrs.hpp
│   │   │   │   │       │   │               │   ├── devmem2d.hpp
│   │   │   │   │       │   │               │   ├── eigen.hpp
│   │   │   │   │       │   │               │   ├── gpumat.hpp
│   │   │   │   │       │   │               │   ├── internal.hpp
│   │   │   │   │       │   │               │   ├── mat.hpp
│   │   │   │   │       │   │               │   ├── opengl_interop.hpp
│   │   │   │   │       │   │               │   ├── opengl_interop_deprecated.hpp
│   │   │   │   │       │   │               │   ├── operations.hpp
│   │   │   │   │       │   │               │   ├── types_c.h
│   │   │   │   │       │   │               │   ├── version.hpp
│   │   │   │   │       │   │               │   └── wimage.hpp
│   │   │   │   │       │   │               ├── features2d
│   │   │   │   │       │   │               │   └── features2d.hpp
│   │   │   │   │       │   │               ├── flann
│   │   │   │   │       │   │               │   ├── all_indices.h
│   │   │   │   │       │   │               │   ├── allocator.h
│   │   │   │   │       │   │               │   ├── any.h
│   │   │   │   │       │   │               │   ├── autotuned_index.h
│   │   │   │   │       │   │               │   ├── composite_index.h
│   │   │   │   │       │   │               │   ├── config.h
│   │   │   │   │       │   │               │   ├── defines.h
│   │   │   │   │       │   │               │   ├── dist.h
│   │   │   │   │       │   │               │   ├── dummy.h
│   │   │   │   │       │   │               │   ├── dynamic_bitset.h
│   │   │   │   │       │   │               │   ├── flann.hpp
│   │   │   │   │       │   │               │   ├── flann_base.hpp
│   │   │   │   │       │   │               │   ├── general.h
│   │   │   │   │       │   │               │   ├── ground_truth.h
│   │   │   │   │       │   │               │   ├── hdf5.h
│   │   │   │   │       │   │               │   ├── heap.h
│   │   │   │   │       │   │               │   ├── hierarchical_clustering_index.h
│   │   │   │   │       │   │               │   ├── index_testing.h
│   │   │   │   │       │   │               │   ├── kdtree_index.h
│   │   │   │   │       │   │               │   ├── kdtree_single_index.h
│   │   │   │   │       │   │               │   ├── kmeans_index.h
│   │   │   │   │       │   │               │   ├── linear_index.h
│   │   │   │   │       │   │               │   ├── logger.h
│   │   │   │   │       │   │               │   ├── lsh_index.h
│   │   │   │   │       │   │               │   ├── lsh_table.h
│   │   │   │   │       │   │               │   ├── matrix.h
│   │   │   │   │       │   │               │   ├── miniflann.hpp
│   │   │   │   │       │   │               │   ├── nn_index.h
│   │   │   │   │       │   │               │   ├── object_factory.h
│   │   │   │   │       │   │               │   ├── params.h
│   │   │   │   │       │   │               │   ├── random.h
│   │   │   │   │       │   │               │   ├── result_set.h
│   │   │   │   │       │   │               │   ├── sampling.h
│   │   │   │   │       │   │               │   ├── saving.h
│   │   │   │   │       │   │               │   ├── simplex_downhill.h
│   │   │   │   │       │   │               │   └── timer.h
│   │   │   │   │       │   │               ├── gpu
│   │   │   │   │       │   │               │   ├── device
│   │   │   │   │       │   │               │   │   ├── block.hpp
│   │   │   │   │       │   │               │   │   ├── border_interpolate.hpp
│   │   │   │   │       │   │               │   │   ├── color.hpp
│   │   │   │   │       │   │               │   │   ├── common.hpp
│   │   │   │   │       │   │               │   │   ├── datamov_utils.hpp
│   │   │   │   │       │   │               │   │   ├── detail
│   │   │   │   │       │   │               │   │   │   ├── color_detail.hpp
│   │   │   │   │       │   │               │   │   │   ├── reduce.hpp
│   │   │   │   │       │   │               │   │   │   ├── reduce_key_val.hpp
│   │   │   │   │       │   │               │   │   │   ├── transform_detail.hpp
│   │   │   │   │       │   │               │   │   │   ├── type_traits_detail.hpp
│   │   │   │   │       │   │               │   │   │   └── vec_distance_detail.hpp
│   │   │   │   │       │   │               │   │   ├── dynamic_smem.hpp
│   │   │   │   │       │   │               │   │   ├── emulation.hpp
│   │   │   │   │       │   │               │   │   ├── filters.hpp
│   │   │   │   │       │   │               │   │   ├── funcattrib.hpp
│   │   │   │   │       │   │               │   │   ├── functional.hpp
│   │   │   │   │       │   │               │   │   ├── limits.hpp
│   │   │   │   │       │   │               │   │   ├── reduce.hpp
│   │   │   │   │       │   │               │   │   ├── saturate_cast.hpp
│   │   │   │   │       │   │               │   │   ├── scan.hpp
│   │   │   │   │       │   │               │   │   ├── simd_functions.hpp
│   │   │   │   │       │   │               │   │   ├── static_check.hpp
│   │   │   │   │       │   │               │   │   ├── transform.hpp
│   │   │   │   │       │   │               │   │   ├── type_traits.hpp
│   │   │   │   │       │   │               │   │   ├── utility.hpp
│   │   │   │   │       │   │               │   │   ├── vec_distance.hpp
│   │   │   │   │       │   │               │   │   ├── vec_math.hpp
│   │   │   │   │       │   │               │   │   ├── vec_traits.hpp
│   │   │   │   │       │   │               │   │   ├── warp.hpp
│   │   │   │   │       │   │               │   │   ├── warp_reduce.hpp
│   │   │   │   │       │   │               │   │   └── warp_shuffle.hpp
│   │   │   │   │       │   │               │   ├── devmem2d.hpp
│   │   │   │   │       │   │               │   ├── gpu.hpp
│   │   │   │   │       │   │               │   ├── gpumat.hpp
│   │   │   │   │       │   │               │   └── stream_accessor.hpp
│   │   │   │   │       │   │               ├── highgui
│   │   │   │   │       │   │               │   ├── cap_ios.h
│   │   │   │   │       │   │               │   ├── highgui.hpp
│   │   │   │   │       │   │               │   ├── highgui_c.h
│   │   │   │   │       │   │               │   └── ios.h
│   │   │   │   │       │   │               ├── imgproc
│   │   │   │   │       │   │               │   ├── imgproc.hpp
│   │   │   │   │       │   │               │   ├── imgproc_c.h
│   │   │   │   │       │   │               │   └── types_c.h
│   │   │   │   │       │   │               ├── legacy
│   │   │   │   │       │   │               │   ├── blobtrack.hpp
│   │   │   │   │       │   │               │   ├── compat.hpp
│   │   │   │   │       │   │               │   ├── legacy.hpp
│   │   │   │   │       │   │               │   └── streams.hpp
│   │   │   │   │       │   │               ├── ml
│   │   │   │   │       │   │               │   └── ml.hpp
│   │   │   │   │       │   │               ├── nonfree
│   │   │   │   │       │   │               │   ├── features2d.hpp
│   │   │   │   │       │   │               │   ├── gpu.hpp
│   │   │   │   │       │   │               │   ├── nonfree.hpp
│   │   │   │   │       │   │               │   └── ocl.hpp
│   │   │   │   │       │   │               ├── objdetect
│   │   │   │   │       │   │               │   └── objdetect.hpp
│   │   │   │   │       │   │               ├── ocl
│   │   │   │   │       │   │               │   ├── matrix_operations.hpp
│   │   │   │   │       │   │               │   └── ocl.hpp
│   │   │   │   │       │   │               ├── opencv.hpp
│   │   │   │   │       │   │               ├── opencv_modules.hpp
│   │   │   │   │       │   │               ├── photo
│   │   │   │   │       │   │               │   ├── photo.hpp
│   │   │   │   │       │   │               │   └── photo_c.h
│   │   │   │   │       │   │               ├── stitching
│   │   │   │   │       │   │               │   ├── detail
│   │   │   │   │       │   │               │   │   ├── autocalib.hpp
│   │   │   │   │       │   │               │   │   ├── blenders.hpp
│   │   │   │   │       │   │               │   │   ├── camera.hpp
│   │   │   │   │       │   │               │   │   ├── exposure_compensate.hpp
│   │   │   │   │       │   │               │   │   ├── matchers.hpp
│   │   │   │   │       │   │               │   │   ├── motion_estimators.hpp
│   │   │   │   │       │   │               │   │   ├── seam_finders.hpp
│   │   │   │   │       │   │               │   │   ├── util.hpp
│   │   │   │   │       │   │               │   │   ├── util_inl.hpp
│   │   │   │   │       │   │               │   │   ├── warpers.hpp
│   │   │   │   │       │   │               │   │   └── warpers_inl.hpp
│   │   │   │   │       │   │               │   ├── stitcher.hpp
│   │   │   │   │       │   │               │   └── warpers.hpp
│   │   │   │   │       │   │               ├── superres
│   │   │   │   │       │   │               │   ├── optical_flow.hpp
│   │   │   │   │       │   │               │   └── superres.hpp
│   │   │   │   │       │   │               ├── ts
│   │   │   │   │       │   │               │   ├── gpu_perf.hpp
│   │   │   │   │       │   │               │   ├── gpu_test.hpp
│   │   │   │   │       │   │               │   ├── ts.hpp
│   │   │   │   │       │   │               │   ├── ts_gtest.h
│   │   │   │   │       │   │               │   └── ts_perf.hpp
│   │   │   │   │       │   │               ├── video
│   │   │   │   │       │   │               │   ├── background_segm.hpp
│   │   │   │   │       │   │               │   ├── tracking.hpp
│   │   │   │   │       │   │               │   └── video.hpp
│   │   │   │   │       │   │               └── videostab
│   │   │   │   │       │   │                   ├── deblurring.hpp
│   │   │   │   │       │   │                   ├── fast_marching.hpp
│   │   │   │   │       │   │                   ├── fast_marching_inl.hpp
│   │   │   │   │       │   │                   ├── frame_source.hpp
│   │   │   │   │       │   │                   ├── global_motion.hpp
│   │   │   │   │       │   │                   ├── inpainting.hpp
│   │   │   │   │       │   │                   ├── log.hpp
│   │   │   │   │       │   │                   ├── motion_stabilizing.hpp
│   │   │   │   │       │   │                   ├── optical_flow.hpp
│   │   │   │   │       │   │                   ├── stabilizer.hpp
│   │   │   │   │       │   │                   └── videostab.hpp
│   │   │   │   │       │   ├── lib64
│   │   │   │   │       │   │   ├── FreeSdk
│   │   │   │   │       │   │   │   ├── libarcsoft_face.dll
│   │   │   │   │       │   │   │   ├── libarcsoft_face_engine.dll
│   │   │   │   │       │   │   │   └── libarcsoft_face_engine.lib
│   │   │   │   │       │   │   └── opencv
│   │   │   │   │       │   │       ├── dll
│   │   │   │   │       │   │       │   ├── opencv_core249.dll
│   │   │   │   │       │   │       │   ├── opencv_core249d.dll
│   │   │   │   │       │   │       │   ├── opencv_ffmpeg249_64.dll
│   │   │   │   │       │   │       │   ├── opencv_ffmpeg_64.dll
│   │   │   │   │       │   │       │   ├── opencv_highgui249.dll
│   │   │   │   │       │   │       │   ├── opencv_highgui249d.dll
│   │   │   │   │       │   │       │   ├── opencv_imgproc249.dll
│   │   │   │   │       │   │       │   └── opencv_imgproc249d.dll
│   │   │   │   │       │   │       └── lib
│   │   │   │   │       │   │           ├── opencv_core249.lib
│   │   │   │   │       │   │           ├── opencv_core249d.lib
│   │   │   │   │       │   │           ├── opencv_highgui249.lib
│   │   │   │   │       │   │           ├── opencv_highgui249d.lib
│   │   │   │   │       │   │           ├── opencv_imgproc249.lib
│   │   │   │   │       │   │           └── opencv_imgproc249d.lib
│   │   │   │   │       │   ├── msvcp110d.dll
│   │   │   │   │       │   ├── msvcp120d.dll
│   │   │   │   │       │   ├── msvcr110d.dll
│   │   │   │   │       │   ├── msvcr120d.dll
│   │   │   │   │       │   ├── res
│   │   │   │   │       │   │   ├── ArcFaceDemo.ico
│   │   │   │   │       │   │   ├── ArcFaceDemo.rc2
│   │   │   │   │       │   │   └── favicon.ico
│   │   │   │   │       │   ├── resource.h
│   │   │   │   │       │   ├── setting.ini
│   │   │   │   │       │   ├── stdafx.cpp
│   │   │   │   │       │   ├── stdafx.h
│   │   │   │   │       │   └── targetver.h
│   │   │   │   │       ├── ArcFaceDemo.sln
│   │   │   │   │       ├── ArcSoftFace  C Demo说明文档.pdf
│   │   │   │   │       ├── README.md
│   │   │   │   │       ├── 隐私政策.pdf
│   │   │   │   │       └── 虹软视觉开放平台服务协议.pdf
│   │   │   │   ├── doc
│   │   │   │   │   └── ARCSOFT_ARC_FACE_DEVELOPER'S_GUIDE.pdf
│   │   │   │   ├── inc
│   │   │   │   │   ├── amcomdef.h
│   │   │   │   │   ├── arcsoft_face_sdk.h
│   │   │   │   │   ├── asvloffscreen.h
│   │   │   │   │   └── merror.h
│   │   │   │   ├── lib
│   │   │   │   │   └── X64
│   │   │   │   │       ├── libarcsoft_face.dll
│   │   │   │   │       ├── libarcsoft_face_engine.dll
│   │   │   │   │       └── libarcsoft_face_engine.lib
│   │   │   │   ├── releasenotes.txt
│   │   │   │   └── samplecode
│   │   │   │       └── samplecode.cpp
│   │   │   ├── Debug
│   │   │   │   ├── AForge.Controls.dll
│   │   │   │   ├── AForge.Imaging.Formats.dll
│   │   │   │   ├── AForge.Imaging.dll
│   │   │   │   ├── AForge.Math.dll
│   │   │   │   ├── AForge.Video.DirectShow.dll
│   │   │   │   ├── AForge.Video.dll
│   │   │   │   ├── AForge.dll
│   │   │   │   ├── ArcSoftFace.Util.dll
│   │   │   │   ├── ArcSoftFace.Util.pdb
│   │   │   │   ├── ArcSoftFace.exe
│   │   │   │   ├── ArcSoftFace.exe.config
│   │   │   │   ├── ArcSoftFace.pdb
│   │   │   │   ├── AxInterop.WMPLib.dll
│   │   │   │   ├── Image
│   │   │   │   │   └── zp.jpg
│   │   │   │   ├── Interop.WMPLib.dll
│   │   │   │   ├── libarcsoft_face.dll
│   │   │   │   ├── libarcsoft_face_engine.dll
│   │   │   │   └── libarcsoft_face_engine.lib
│   │   │   ├── Release
│   │   │   ├── x64
│   │   │   │   ├── Debug
│   │   │   │   │   ├── AForge.Controls.dll
│   │   │   │   │   ├── AForge.Imaging.Formats.dll
│   │   │   │   │   ├── AForge.Imaging.dll
│   │   │   │   │   ├── AForge.Math.dll
│   │   │   │   │   ├── AForge.Video.DirectShow.dll
│   │   │   │   │   ├── AForge.Video.dll
│   │   │   │   │   ├── AForge.dll
│   │   │   │   │   ├── ArcFace64.dat
│   │   │   │   │   ├── ArcSoftFace.Util.dll
│   │   │   │   │   ├── ArcSoftFace.Util.pdb
│   │   │   │   │   ├── ArcSoftFace.exe
│   │   │   │   │   ├── ArcSoftFace.exe.config
│   │   │   │   │   ├── ArcSoftFace.pdb
│   │   │   │   │   ├── AxInterop.WMPLib.dll
│   │   │   │   │   ├── CSkin.dll
│   │   │   │   │   ├── Face.BLL.dll
│   │   │   │   │   ├── Face.BLL.dll.config
│   │   │   │   │   ├── Face.BLL.pdb
│   │   │   │   │   ├── Face.Models.dll
│   │   │   │   │   ├── Face.Models.pdb
│   │   │   │   │   ├── HeadPortrait
│   │   │   │   │   │   ├── z1.jpg
│   │   │   │   │   │   └── z3.png
│   │   │   │   │   ├── Image
│   │   │   │   │   │   └── zp.jpg
│   │   │   │   │   ├── Interop.WMPLib.dll
│   │   │   │   │   ├── MySql.Data.dll
│   │   │   │   │   ├── PinYinConverterCore.dll
│   │   │   │   │   ├── PinYinConverterCore.xml
│   │   │   │   │   ├── SqlSugar.dll
│   │   │   │   │   ├── System.Buffers.dll
│   │   │   │   │   ├── System.Numerics.Vectors.dll
│   │   │   │   │   ├── System.ValueTuple.dll
│   │   │   │   │   ├── System.ValueTuple.xml
│   │   │   │   │   ├── libarcsoft_face.dll
│   │   │   │   │   ├── libarcsoft_face_engine.dll
│   │   │   │   │   ├── libarcsoft_face_engine.lib
│   │   │   │   │   ├── libarcsoft_fsdk_face_detection.dll
│   │   │   │   │   ├── libarcsoft_fsdk_face_detection.lib
│   │   │   │   │   ├── libarcsoft_fsdk_face_recognition.dll
│   │   │   │   │   └── libarcsoft_fsdk_face_recognition.lib
│   │   │   │   └── Release
│   │   │   └── x86
│   │   │       ├── Debug
│   │   │       └── Release
│   │   ├── doc
│   │   │   └── ArcSoftFaceDemo说明文档.pdf
│   │   ├── favicon.ico
│   │   ├── lib
│   │   │   ├── AForge.Controls.dll
│   │   │   ├── AForge.Imaging.Formats.dll
│   │   │   ├── AForge.Imaging.dll
│   │   │   ├── AForge.Math.dll
│   │   │   ├── AForge.Video.DirectShow.dll
│   │   │   ├── AForge.Video.dll
│   │   │   ├── AForge.dll
│   │   │   ├── libarcsoft_face.dll
│   │   │   ├── libarcsoft_face_engine.dll
│   │   │   └── libarcsoft_face_engine.lib
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ArcSoftFace.FaceForm.resources
│   │   │   │   ├── ArcSoftFace.FaceForm2.resources
│   │   │   │   ├── ArcSoftFace.Properties.Resources.resources
│   │   │   │   ├── ArcSoftFace.csproj.AssemblyReference.cache
│   │   │   │   ├── ArcSoftFace.csproj.CopyComplete
│   │   │   │   ├── ArcSoftFace.csproj.CoreCompileInputs.cache
│   │   │   │   ├── ArcSoftFace.csproj.FileListAbsolute.txt
│   │   │   │   ├── ArcSoftFace.csproj.GenerateResource.cache
│   │   │   │   ├── ArcSoftFace.csproj.ResolveComReference.cache
│   │   │   │   ├── ArcSoftFace.exe
│   │   │   │   ├── ArcSoftFace.pdb
│   │   │   │   ├── AxInterop.WMPLib.dll
│   │   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   │   ├── Interop.WMPLib.dll
│   │   │   │   └── TempPE
│   │   │   │       └── Properties.Resources.Designer.cs.dll
│   │   │   └── x64
│   │   │       └── Debug
│   │   │           ├── ArcSoftFace.FaceForm.resources
│   │   │           ├── ArcSoftFace.Properties.Resources.resources
│   │   │           ├── ArcSoftFace.csproj.AssemblyReference.cache
│   │   │           ├── ArcSoftFace.csproj.CopyComplete
│   │   │           ├── ArcSoftFace.csproj.CoreCompileInputs.cache
│   │   │           ├── ArcSoftFace.csproj.FileListAbsolute.txt
│   │   │           ├── ArcSoftFace.csproj.GenerateResource.cache
│   │   │           ├── ArcSoftFace.csproj.ResolveComReference.cache
│   │   │           ├── ArcSoftFace.csproj.SuggestedBindingRedirects.cache
│   │   │           ├── ArcSoftFace.exe
│   │   │           ├── ArcSoftFace.exe.config
│   │   │           ├── ArcSoftFace.pdb
│   │   │           ├── AxInterop.WMPLib.dll
│   │   │           ├── DesignTimeResolveAssemblyReferences.cache
│   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │           ├── Interop.WMPLib.dll
│   │   │           ├── TempPE
│   │   │           │   └── Properties.Resources.Designer.cs.dll
│   │   │           └── _IsIncrementalBuild
│   │   └── packages.config
│   ├── Face.BLL
│   │   ├── Checkingin_LogBLL.cs
│   │   ├── DB
│   │   │   └── DBHelper.cs
│   │   ├── Face.BLL.csproj
│   │   ├── Helper
│   │   │   ├── Class1.cs
│   │   │   ├── ImgHelp.cs
│   │   │   ├── Md5Helper.cs
│   │   │   ├── PinYinConverter.cs
│   │   │   ├── PinYinConverterHelp.cs
│   │   │   └── SystemUtil.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── UserBLL.cs
│   │   ├── app.config
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── BouncyCastle.Crypto.dll
│   │   │   │   ├── Face.BLL.dll
│   │   │   │   ├── Face.BLL.dll.config
│   │   │   │   ├── Face.BLL.pdb
│   │   │   │   ├── Face.Models.dll
│   │   │   │   ├── Face.Models.pdb
│   │   │   │   ├── Face.Util.dll
│   │   │   │   ├── Face.Util.dll.config
│   │   │   │   ├── Face.Util.pdb
│   │   │   │   ├── Google.Protobuf.dll
│   │   │   │   ├── K4os.Compression.LZ4.Streams.dll
│   │   │   │   ├── K4os.Compression.LZ4.dll
│   │   │   │   ├── K4os.Hash.xxHash.dll
│   │   │   │   ├── MySql.Data.dll
│   │   │   │   ├── PinYinConverterCore.dll
│   │   │   │   ├── PinYinConverterCore.xml
│   │   │   │   ├── SqlSugar.dll
│   │   │   │   ├── System.Buffers.dll
│   │   │   │   ├── System.Memory.dll
│   │   │   │   ├── System.Numerics.Vectors.dll
│   │   │   │   ├── System.ValueTuple.dll
│   │   │   │   ├── System.ValueTuple.xml
│   │   │   │   ├── Ubiety.Dns.Core.dll
│   │   │   │   └── ZstdNet.dll
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── Debug
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       ├── Face.BLL.csproj.AssemblyReference.cache
│   │   │       ├── Face.BLL.csproj.CopyComplete
│   │   │       ├── Face.BLL.csproj.CoreCompileInputs.cache
│   │   │       ├── Face.BLL.csproj.FileListAbsolute.txt
│   │   │       ├── Face.BLL.dll
│   │   │       ├── Face.BLL.pdb
│   │   │       ├── TempPE
│   │   │       └── _IsIncrementalBuild
│   │   └── packages.config
│   ├── Face.Models
│   │   ├── Face.Models.csproj
│   │   ├── FaceInModel.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── Face.Models.dll
│   │   │   │   ├── Face.Models.pdb
│   │   │   │   └── SqlSugar.dll
│   │   │   └── Release
│   │   ├── checkingin_log.cs
│   │   ├── obj
│   │   │   └── Debug
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       ├── Face.Models.csproj.AssemblyReference.cache
│   │   │       ├── Face.Models.csproj.CopyComplete
│   │   │       ├── Face.Models.csproj.CoreCompileInputs.cache
│   │   │       ├── Face.Models.csproj.FileListAbsolute.txt
│   │   │       ├── Face.Models.dll
│   │   │       ├── Face.Models.pdb
│   │   │       ├── TempPE
│   │   │       └── _IsIncrementalBuild
│   │   ├── packages.config
│   │   └── users.cs
│   └── packages
│       ├── PinYinConverterCore.1.0.2
│       │   ├── PinYinConverterCore.1.0.2.nupkg
│       │   └── lib
│       │       ├── net45
│       │       │   ├── PinYinConverterCore.dll
│       │       │   └── PinYinConverterCore.xml
│       │       └── netstandard2.0
│       │           ├── PinYinConverterCore.dll
│       │           └── PinYinConverterCore.xml
│       ├── SqlSugar.5.1.3.32
│       │   ├── SqlSugar.5.1.3.32.nupkg
│       │   └── lib
│       │       └── SqlSugar.dll
│       ├── SqlSugar.5.1.3.33
│       │   ├── SqlSugar.5.1.3.33.nupkg
│       │   └── lib
│       │       └── SqlSugar.dll
│       └── System.ValueTuple.4.4.0
│           ├── LICENSE.TXT
│           ├── System.ValueTuple.4.4.0.nupkg
│           ├── THIRD-PARTY-NOTICES.TXT
│           ├── lib
│           │   ├── MonoAndroid10
│           │   │   └── _._
│           │   ├── MonoTouch10
│           │   │   └── _._
│           │   ├── net461
│           │   │   ├── System.ValueTuple.dll
│           │   │   └── System.ValueTuple.xml
│           │   ├── net47
│           │   │   ├── System.ValueTuple.dll
│           │   │   └── System.ValueTuple.xml
│           │   ├── netcoreapp2.0
│           │   │   └── _._
│           │   ├── netstandard1.0
│           │   │   ├── System.ValueTuple.dll
│           │   │   └── System.ValueTuple.xml
│           │   ├── netstandard2.0
│           │   │   └── _._
│           │   ├── portable-net40 sl4 win8 wp8
│           │   │   ├── System.ValueTuple.dll
│           │   │   └── System.ValueTuple.xml
│           │   ├── xamarinios10
│           │   │   └── _._
│           │   ├── xamarinmac20
│           │   │   └── _._
│           │   ├── xamarintvos10
│           │   │   └── _._
│           │   └── xamarinwatchos10
│           │       └── _._
│           ├── ref
│           │   ├── MonoAndroid10
│           │   │   └── _._
│           │   ├── MonoTouch10
│           │   │   └── _._
│           │   ├── net461
│           │   │   ├── System.ValueTuple.dll
│           │   │   └── System.ValueTuple.xml
│           │   ├── net47
│           │   │   ├── System.ValueTuple.dll
│           │   │   └── System.ValueTuple.xml
│           │   ├── netcoreapp2.0
│           │   │   └── _._
│           │   ├── netstandard2.0
│           │   │   └── _._
│           │   ├── portable-net40 sl4 win8 wp8
│           │   │   ├── System.ValueTuple.dll
│           │   │   └── System.ValueTuple.xml
│           │   ├── xamarinios10
│           │   │   └── _._
│           │   ├── xamarinmac20
│           │   │   └── _._
│           │   ├── xamarintvos10
│           │   │   └── _._
│           │   └── xamarinwatchos10
│           │       └── _._
│           ├── useSharedDesignerContext.txt
│           └── version.txt
└── 基于虹软Winfrom 人脸识别追踪 x64.zip

136 directories, 480 files



实例下载地址

基于虹软Winfrom 人脸识别追踪 x64

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警