BASE_URL
BASE_URL = 'face/'
Tencent AI 人脸相关能力.
detect(mixed $image, boolean $big = true) : mixed
人脸分析:识别上传图像上面的人脸信息.
检测给定图片中的所有人脸的位置 (x, y, w, h) 和相应的面部属性 包括性别 (gender),年龄, 表情 (expression), 魅力 (beauty), 眼镜 (glass) 和姿态 (pitch,roll,yaw).
mixed | $image | 支持 JPG PNG BMP 格式 |
boolean | $big | 检测模式,false-正常,true-大脸模式(默认) |
identify(string $group_id, mixed $image, integer $topon = 9) : mixed
人脸识别.
对于一个待识别的人脸图片,在一个组中识别出最相似的 N 个个体作为候选人返回,返回的 N 个个体按照相似度从大到小排列,N 由参数 topn 指定.
string | $group_id | |
mixed | $image | 支持 JPG PNG BMP 格式 |
integer | $topon | 返回的候选人个数 默认 9 |
add(string $person_id, array $images, string $tag) : mixed
个体管理 => 增加人脸:将一个或一组人脸加入到一个个体中.
一个人脸只能被加入到一个个体中.一个个体最多允许包含 20 个人脸;加入几乎相同的人脸会返回错误.
string | $person_id | |
array | $images | 支持 JPG PNG BMP 格式 |
string | $tag | 备注信息 |
** File not found : <pre> **
createPerson(array $group_ids, string $person_id, string $person_name, mixed $image, string $tag) : mixed
人体创建(属于一个组,或多个组).
创建一个个体,并将个体放置到指定的组当中。一个组里面的个体总数上限为 20000 个。如果 ID 指定的组不存在,则会新建组并创建个体。
array | $group_ids | |
string | $person_id | |
string | $person_name | |
mixed | $image | 支持 JPG PNG BMP 格式 |
string | $tag |