wpf winform 人脸识别
.
├── Common
│ ├── Common.csproj
│ ├── Entity
│ │ ├── 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
│ │ │ ├── Common.dll
│ │ │ └── Common.pdb
│ │ └── Release
│ ├── lib
│ │ ├── AForge.Controls.dll
│ │ ├── AForge.Imaging.Formats.dll
│ │ ├── AForge.Imaging.dll
│ │ ├── AForge.Math.dll
│ │ ├── AForge.Video.DirectShow.dll
│ │ ├── AForge.Video.dll
│ │ └── AForge.dll
│ └── obj
│ └── Debug
│ ├── Common.csproj.AssemblyReference.cache
│ ├── Common.csproj.CoreCompileInputs.cache
│ ├── Common.csproj.FileListAbsolute.txt
│ ├── Common.dll
│ ├── Common.pdb
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ └── TempPE
├── DotNetSpeech.dll
├── FaceIdentify
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Config
│ │ ├── LoadConfig.cs
│ │ └── MessageSpeech.cs
│ ├── FaceIdentify.csproj
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── PersonImg
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resource
│ │ └── main_view.png
│ ├── bin
│ │ ├── Debug
│ │ │ ├── AForge.Controls.dll
│ │ │ ├── AForge.Imaging.Formats.dll
│ │ │ ├── AForge.Imaging.dll
│ │ │ ├── AForge.Math.dll
│ │ │ ├── AForge.Video.DirectShow.dll
│ │ │ ├── AForge.Video.dll
│ │ │ ├── AForge.dll
│ │ │ ├── Common.dll
│ │ │ ├── Common.pdb
│ │ │ ├── FaceIdentify.exe
│ │ │ ├── FaceIdentify.exe.config
│ │ │ ├── FaceIdentify.pdb
│ │ │ ├── MaterialDesignColors.dll
│ │ │ ├── MaterialDesignColors.pdb
│ │ │ ├── MaterialDesignThemes.Wpf.dll
│ │ │ ├── MaterialDesignThemes.Wpf.pdb
│ │ │ └── MaterialDesignThemes.Wpf.xml
│ │ ├── 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
│ │ │ ├── Common.dll
│ │ │ ├── Common.pdb
│ │ │ ├── FaceIdentify.exe
│ │ │ ├── FaceIdentify.exe.config
│ │ │ ├── FaceIdentify.pdb
│ │ │ ├── MaterialDesignColors.dll
│ │ │ ├── MaterialDesignColors.pdb
│ │ │ ├── MaterialDesignThemes.Wpf.dll
│ │ │ ├── MaterialDesignThemes.Wpf.pdb
│ │ │ ├── MaterialDesignThemes.Wpf.xml
│ │ │ ├── libarcsoft_face.dll
│ │ │ ├── libarcsoft_face_engine.dll
│ │ │ └── libarcsoft_face_engine.lib
│ │ └── Release
│ ├── main_view.png
│ ├── obj
│ │ ├── Debug
│ │ │ ├── App.g.cs
│ │ │ ├── App.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── FaceIdentify.Properties.Resources.resources
│ │ │ ├── FaceIdentify.csproj.AssemblyReference.cache
│ │ │ ├── FaceIdentify.csproj.CopyComplete
│ │ │ ├── FaceIdentify.csproj.CoreCompileInputs.cache
│ │ │ ├── FaceIdentify.csproj.FileListAbsolute.txt
│ │ │ ├── FaceIdentify.csproj.GenerateResource.cache
│ │ │ ├── FaceIdentify.exe
│ │ │ ├── FaceIdentify.g.resources
│ │ │ ├── FaceIdentify.pdb
│ │ │ ├── FaceIdentify_MarkupCompile.cache
│ │ │ ├── FaceIdentify_MarkupCompile.i.cache
│ │ │ ├── FaceIdentify_MarkupCompile.lref
│ │ │ ├── MainWindow.baml
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ └── TempPE
│ │ └── x64
│ │ └── Debug
│ │ ├── App.g.cs
│ │ ├── App.g.i.cs
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── FaceIdentify.Properties.Resources.resources
│ │ ├── FaceIdentify.csproj.AssemblyReference.cache
│ │ ├── FaceIdentify.csproj.CopyComplete
│ │ ├── FaceIdentify.csproj.CoreCompileInputs.cache
│ │ ├── FaceIdentify.csproj.FileListAbsolute.txt
│ │ ├── FaceIdentify.csproj.GenerateResource.cache
│ │ ├── FaceIdentify.exe
│ │ ├── FaceIdentify.g.resources
│ │ ├── FaceIdentify.pdb
│ │ ├── FaceIdentify_Content.g.i.cs
│ │ ├── FaceIdentify_MarkupCompile.cache
│ │ ├── FaceIdentify_MarkupCompile.i.cache
│ │ ├── FaceIdentify_MarkupCompile.i.lref
│ │ ├── FaceIdentify_MarkupCompile.lref
│ │ ├── MainWindow.baml
│ │ ├── MainWindow.g.cs
│ │ ├── MainWindow.g.i.cs
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ └── packages.config
├── FaceIdentify.sln
├── packages
│ ├── MaterialDesignColors.2.0.4
│ │ ├── MaterialDesignColors.2.0.4.nupkg
│ │ ├── images
│ │ │ └── MaterialDesignColors.Icon.png
│ │ └── lib
│ │ ├── net452
│ │ │ ├── MaterialDesignColors.dll
│ │ │ └── MaterialDesignColors.pdb
│ │ └── netcoreapp3.1
│ │ ├── MaterialDesignColors.dll
│ │ └── MaterialDesignColors.pdb
│ └── MaterialDesignThemes.4.3.0
│ ├── MaterialDesignThemes.4.3.0.nupkg
│ ├── build
│ │ ├── MaterialDesignThemes.targets
│ │ └── Resources
│ │ └── Roboto
│ │ ├── Roboto-Black.ttf
│ │ ├── Roboto-BlackItalic.ttf
│ │ ├── Roboto-Bold.ttf
│ │ ├── Roboto-BoldItalic.ttf
│ │ ├── Roboto-Italic.ttf
│ │ ├── Roboto-Light.ttf
│ │ ├── Roboto-LightItalic.ttf
│ │ ├── Roboto-Medium.ttf
│ │ ├── Roboto-MediumItalic.ttf
│ │ ├── Roboto-Regular.ttf
│ │ ├── Roboto-Thin.ttf
│ │ ├── Roboto-ThinItalic.ttf
│ │ ├── RobotoCondensed-Bold.ttf
│ │ ├── RobotoCondensed-BoldItalic.ttf
│ │ ├── RobotoCondensed-Italic.ttf
│ │ ├── RobotoCondensed-Light.ttf
│ │ ├── RobotoCondensed-LightItalic.ttf
│ │ └── RobotoCondensed-Regular.ttf
│ ├── images
│ │ └── MaterialDesignThemes.Icon.png
│ ├── lib
│ │ ├── net452
│ │ │ ├── MaterialDesignThemes.Wpf.dll
│ │ │ ├── MaterialDesignThemes.Wpf.pdb
│ │ │ └── MaterialDesignThemes.Wpf.xml
│ │ └── netcoreapp3.1
│ │ ├── MaterialDesignThemes.Wpf.dll
│ │ ├── MaterialDesignThemes.Wpf.pdb
│ │ └── MaterialDesignThemes.Wpf.xml
│ └── tools
│ └── VisualStudioToolsManifest.xml
├── 文档.txt
└── 找例子网_FaceIdentify.zip
45 directories, 170 files
评论