SDK Windows EloamView

人证比对(单次,图片与图片比对)


Function:       LONG CompareFaceDetect(LPCTSTR imgPath1, LPCTSTR imgPath2);
Description:    人证比对(单次,图片与图片比对)
Input:          imgPath1 图片1路径 imgPath2 图片2路径
Return:         返回比对结果
Others:         无

 

人证比对(单次,摄像头预览于图像比对)


Function:       LONG CompareFaceDetectEx(LONG DevIndex, LPCTSTR ImgPath);
Description:    人证比对(单次,摄像头预览于图像比对)
Input:          DevIndex 摄像头索引 ImgPath 需比对图片路径
Return:         返回比对结果
Others:         无

 

人证比对(连续读取,结合事件接口)


Function:       BOOL AutoCompareFaceDetect(LONG DevIndex, LPCTSTR ImgPath);
Description:    人证比对(连续读取,结合事件接口)
Input:          DevIndex 摄像头索引 ImgPath 需比对图片路径
Return:         成功返回True 失败返回False
Others:         结合事件接口CompareFaceDetectEvent获取比对结果

 

启用人脸区域


Function:       BOOL EnableFaceRectCrop(LONG iDev, LONG flag);
Description:    启用人脸区域
Input:          iDev 摄像头索引 0表示主摄像头 1表示副摄像头
                flag 0为不裁剪1为插裁剪
Return:         成功返回True 失败返回False
Others:         无

 

关闭人脸区域


Function:       BOOL DisableFaceRectCrop(LONG iDev);
Description:    关闭人脸区域
Input:          iDev 摄像头索引 0表示主摄像头 1表示副摄像头
Return:         成功返回True 失败返回False
Others:         无

 

启用活体检测


Function:       BOOL EnableDetectFaceLive(void);
Description:    启用活体检测
Input:          无
Return:         成功返回True 失败返回False
Others:         无

 

关闭活体检测


Function:       BOOL DisableDetectFaceLive(void);
Description:    关闭活体检测
Input:          无
Return:         成功返回True 失败返回False
Others:         无

 

人脸比对(参数为base64数据)


Function:       BOOL CompareFaceByBase64(LPCTSTR ImageBase64_GA, LPCTSTR ImageBase64_GPY);
Description:    人脸比对(参数为base64数据)
Input:          ImageBase64_GA  外部传入图片base64数据
                ImageBase64_GPY  高拍仪拍照base64数据  
Return:         通过返回TRUE,不通过返回FALSE
Others:         无

 

人脸比对(参数为base64数据


Function:        LONG CompareFaceByBase64Ex(LPCTSTR ImageBase64_GA, LPCTSTR ImageBase64_GPY);
Description:    人脸比对(参数为base64数据)
Input:          ImageBase64_GA  外部传入图片base64数据
                ImageBase64_GPY  高拍仪拍照base64数据  
Return:         返回比对结果
Others:         无