web0376/baidu-face

百度云人脸识别 SDK FOR PHP

dev-master 2018-03-22 03:44 UTC

This package is not auto-updated.

Last update: 2024-10-04 22:17:52 UTC


README

百度人脸识别SDK for php 百度在线文档:https://cloud.baidu.com/doc/FACE/Face-PHP-SDK.html

安装

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);