Thinkphp 匹配人脸

Posted 正义的棒棒糖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thinkphp 匹配人脸相关的知识,希望对你有一定的参考价值。

1.首先去百度申请人脸 APPID、 Apikey、 SecretKey

2.下载官方demo修改整合改名face文件夹或者加我私人qq 229435572 备注 人脸匹配,找我要face扩展类

3.把face 放在vendor下面

下面是一个简单的人脸年龄测试,具体可见官方文档,

public function faceCheck() {

Vendor(‘face.AipFace‘);

#后台申请的A K 和 S
$APPID = ‘去申请‘;
$Apikey = ‘去申请‘;
$SecretKey = ‘去申请‘;


$client = new AipFace($APPID, $Apikey, $SecretKey);

$image = "http://www.vikily.com:8765/statics/Admin/img/test.jpg";

$imageType = "URL";

// 调用人脸检测
$client->detect($image, $imageType);

// 如果有可选参数
$options = array();
$options["face_field"] = "age";
$options["max_face_num"] = 2;
$options["face_type"] = "LIVE";

// 带参数调用人脸检测
$result = $client -> detect($image, $imageType, $options);

pf($result);
}

返回信息:

 Array
(
    [error_code] => 0
    [error_msg] => SUCCESS
    [log_id] => 5510199948905
    [timestamp] => 1533286267
    [cached] => 0
    [result] => Array
        (
            [face_num] => 1
            [face_list] => Array
                (
                    [0] => Array
                        (
                            [face_token] => 908ad0f2bcf04f27e0b41652d805af91
                            [location] => Array
                                (
                                    [left] => 212.8435516
                                    [top] => 160.4919739
                                    [width] => 304
                                    [height] => 286
                                    [rotation] => 4
                                )

                            [face_probability] => 1
                            [angle] => Array
                                (
                                    [yaw] => 1.442859173
                                    [pitch] => 17.65565109
                                    [roll] => 4.590346813
                                )

                            [age] => 23
                        )

                )

        )

)

























以上是关于Thinkphp 匹配人脸的主要内容,如果未能解决你的问题,请参考以下文章

人脸识别门禁系统Java源代码

25 行 Python 代码实现人脸识别——OpenCV 技术教程

人脸识别原理及处理流程

超级有用的9个PHP代码片段

人脸识别基于模板匹配算法实现人脸识别matlab源码

PHP实现人脸识别技术