forked from FacePlusPlus/facepp-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.php
41 lines (32 loc) · 1.25 KB
/
demo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
require_once 'facepp_sdk.php';
########################
### example ###
########################
$facepp = new Facepp();
$faceapp->api_key = '{your_key_here}';
$faceapp->api_secret = '{your_secret_here}';
#detect local image
$params['img'] = '{image file path}';
$params['attribute'] = 'gender,age,race,smiling,glass,pose';
$response = $facepp->execute('/detection/detect',$params);
print_r($response);
#detect image by url
$params['url'] = 'http://www.faceplusplus.com.cn/wp-content/themes/faceplusplus/assets/img/demo/1.jpg';
$response = $facepp->execute('/detection/detect',$params);
print_r($response);
if($response['http_code'] == 200) {
#json decode
$data = json_decode($response['body'], 1);
#get face landmark
foreach ($data['face'] as $face) {
$response = $facepp->execute('/detection/landmark', array('face_id' => $face['face_id']));
print_r($response);
}
#create person
$response = $facepp->execute('/person/create', array('person_name' => 'unique_person_name'));
print_r($response);
#delete person
$response = $facepp->execute('/person/delete', array('person_name' => 'unique_person_name'));
print_r($response);
}