虹软人脸识别代码
目录
目录 .................................................................................................................................................. 2
1. 简介........................................................................................................................................... 3
1.1 运行环境 ....................................................................................................................... 3
1.2 系统要求 ....................................................................................................................... 3
1.3 开发工具 ....................................................................................................................... 3
1.4 环境要求 ....................................................................................................................... 3
1.5 支持的颜色空间格式 ................................................................................................... 3
1.6 产品功能简介 ............................................................................................................... 3
1.6.1 人脸检测 ........................................................................................................... 3
1.6.2 年龄检测 ........................................................................................................... 4
1.6.3 性别检测 ........................................................................................................... 4
1.6.4 人脸识别 ........................................................................................................... 4
2. 快速上手 ................................................................................................................................... 4
3. 接入指南 ................................................................................................................................... 4
3.1 示例代码 ....................................................................................................................... 4
3.1.1 引擎激活 ........................................................................................................... 4
3.1.2 初始化引擎 ....................................................................................................... 5
3.1.3 人脸检测 ........................................................................................................... 5
3.1.4 提取特征 ........................................................................................................... 5
3.1.5 人脸比对 ........................................................................................................... 6
3.2 通用方法 ....................................................................................................................... 6
3.2.1 从 Bitmap 中读取 BGR 数据 ............................................................................ 6
4. 常见问题 ................................................................................................................................... 6
4.1 常见问题问答 ............................................................................................................... 6
4.2 其他帮助 ....................................................................................................................... 7.
├── ArcfaceDemo_CSharp-master
│ ├── ArcSoftFace
│ │ ├── ArcSoftFace
│ │ │ ├── App.config
│ │ │ ├── ArcSoftFace.csproj
│ │ │ ├── Entity
│ │ │ │ ├── FaceTrackUnit.cs
│ │ │ │ └── ImageInfo.cs
│ │ │ ├── FaceForm.Designer.cs
│ │ │ ├── FaceForm.cs
│ │ │ ├── FaceForm.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ └── favicon.ico
│ │ │ ├── SDKModels
│ │ │ │ ├── ASF_AgeInfo.cs
│ │ │ │ ├── ASF_Face3DAngle.cs
│ │ │ │ ├── ASF_FaceFeature.cs
│ │ │ │ ├── ASF_GenderInfo.cs
│ │ │ │ ├── ASF_ImagePixelFormat.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
│ │ │ ├── doc
│ │ │ │ ├── ArcSoftFace C# Demo说明文档.pdf
│ │ │ │ └── ~$cSoftFace说明文档.docx
│ │ │ ├── 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
│ │ └── ArcSoftFace.sln
│ └── README.md
├── Win32Project6.v12.suo
└── 找例子网_arcfacedemo_csharp-master.zip
11 directories, 45 files
评论