码迷,mamicode.com
首页 > Web开发 > 详细

Thinkphp 匹配人脸

时间:2018-08-03 17:26:16      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:think   timestamp   bcf   文件   官方   top   私人   参数调用   .com   

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 匹配人脸

标签:think   timestamp   bcf   文件   官方   top   私人   参数调用   .com   

原文地址:https://www.cnblogs.com/leaf-cq/p/9415179.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!