1 Star 0 Fork 1

Qiansou/wisPhpSdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
facecompare.php 900 Bytes
一键复制 编辑 原始数据 按行查看 历史
luantao 提交于 2017-09-25 20:27 . init
<?php
/**
* Created by PhpStorm.
* User: didi
* Date: 2017/9/25
* Time: 17:27
*/
//include("config.php");
include("facedetect.php");
//include("httpclient.php");
class FaceCompare
{
/*
* @author vincent [email protected]
* @date 2017-9-25
*/
/*
* @param picUrl
*/
public static function compare($feature1,$feature2){
//调用开放平台人脸识别服务
$arrPost = array(
'feature1'=>$feature1,
'feature2'=>$feature2,
);
$img = HttpClient::post(Config::FACECOMPARE,$arrPost);
return $img;
}
}
$model1 = FaceDetect::detect('/Users/didi/Downloads/21103451_1_new.jpg');
$feature1 = $model1['facemodels'][0]['feature'];
$model2 = FaceDetect::detect('/Users/didi/Downloads/21103451_1_new.jpg');
$feature2 = $model1['facemodels'][0]['feature'];
var_dump(FaceCompare::compare($feature1,$feature2));
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/qiansou/wisPhpSdk.git
[email protected]:qiansou/wisPhpSdk.git
qiansou
wisPhpSdk
wisPhpSdk
master

搜索帮助