【实例简介】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
1、自动:在上方保障服务中标有自动发货的商品,拍下后,将会自动收到来自卖家的商品获取(下载)链接;
2、手动:未标有自动发货的的商品,拍下后,卖家会收到邮件、短信提醒,也可通过QQ或订单中的电话联系对方。
1、描述:源码描述(含标题)与实际源码不一致的(例:描述PHP实际为ASP、描述的功能实际缺少、版本不符等);
2、演示:有演示站时,与实际源码小于95%一致的(但描述中有"不保证完全一样、有变化的可能性"类似显著声明的除外);
3、发货:手动发货源码,在卖家未发货前,已申请退款的;
4、服务:卖家不提供安装服务或需额外收费的(但描述中有显著声明的除外);
5、其他:如质量方面的硬性常规问题等。
注:经核实符合上述任一,均支持退款,但卖家予以积极解决问题则除外。交易中的商品,卖家无法对描述进行修改!
1、在未拍下前,双方在QQ上所商定的内容,亦可成为纠纷评判依据(商定与描述冲突时,商定为准);
2、在商品同时有网站演示与图片演示,且站演与图演不一致时,默认按图演作为纠纷评判依据(特别声明或有商定除外);
3、在没有"无任何正当退款依据"的前提下,写有"一旦售出,概不支持退款"等类似的声明,视为无效声明;
4、虽然交易产生纠纷的几率很小,但请尽量保留如聊天记录这样的重要信息,以防产生纠纷时便于网站工作人员介入快速处理。
苏公网安备 32132202001088号
咨询中心 | Copyright 2023 北极熊网 版权所有