library baidu-face
百度云人脸识别 SDK FOR PHP
web0376/baidu-face
百度云人脸识别 SDK FOR PHP
- Thursday, March 22, 2018
- by web0376
- Repository
- 1 Watchers
- 0 Stars
- 22 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 57 % Grown
baidu_Face
百度人脸识别SDK for php
百度在线文档:https://cloud.baidu.com/doc/FACE/Face-PHP-SDK.html, (*1)
安装
composer require web0376/baidu-face dev-master
DEMO
require_once __DIR__ . '/vendor/autoload.php';
use baidu_face\Api\AipFace;
const APP_ID = '11111';
const API_KEY = '22222';
const SECRET_KEY = '333333';
$client = new AipFace(APP_ID, API_KEY, SECRET_KEY);
$image = file_get_contents('mayun.jpg');
// 调用人脸检测
$client->detect($image);
// 如果有可选参数
$options = array();
$options["max_face_num"] = 1;
$options["face_fields"] = "age,gender";
// 带参数调用人脸检测
$res = $client->detect($image, $options);
var_dump($res);
dev-master
9999999-dev
百度云人脸识别 SDK FOR PHP
Sources
Download
MIT
The Requires
by
liu haha