直接看代码,封装成的动态库简练,基本满足日常需求,有需要的可以二次封装。源码:
封装好的的动态库,直接在界面调用。使用步骤:
1、调用动态库并初始化引擎:
/// <summary>
/// 人脸识别引擎
/// </summary>
private FaceDetectionService FDService ;
/// <summary>
/// 全局的句柄
/// </summary>
IntPtr hEngine = new IntPtr();
private void Form1_Load(object sender, EventArgs e)
{
InitFDService();
}
private void InitFDService()
{
FDService = new FaceDetectionService();
int res= FDService.InitFaceDetection(out hEngine);
if (res != AsfConstants.MOK)
{
MessageBox.Show(