1 Star 0 Fork 1

Qiansou / wisPhpSdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
face2face.php 1023 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("httpclient.php");
class Face2Face
{
/*
* @author vincent ln1394@163.com
* @date 2017-9-25
*/
/*
* @param picUrl
*/
public static function compare($faceimage1,$faceimage2){
//调用开放平台人脸识别服务
$arrPost = array(
'faceimage1'=>$faceimage1,
'faceimage2'=>$faceimage2,
);
$img = HttpClient::post(Config::FACE2FACE,$arrPost);
return $img;
}
public static function getPicBase64($picUrl){
$fp = fopen($picUrl, 'rb', 0);
$faceImage = chunk_split(base64_encode(fread($fp,filesize($picUrl))));
fclose($fp);
return $faceImage;
}
}
$faceImage1 = Face2Face::getPicBase64('/Users/didi/Downloads/21103451_1_new.jpg');
$faceImage2 = Face2Face::getPicBase64('/Users/didi/Downloads/21103451_1_new.jpg');
var_dump(Face2Face::compare($faceImage1,$faceImage2));
PHP
1
https://gitee.com/qiansou/wisPhpSdk.git
git@gitee.com:qiansou/wisPhpSdk.git
qiansou
wisPhpSdk
wisPhpSdk
master

搜索帮助