添加人脸
接口描述
在一个人脸集合图库中,增加一个人脸以及相对应的信息。
请求说明
HTTP 方法:
POST
请求 URL:
/ai-cloud-imgstore/img/person/add
Header如下:
参数名称 | 值 |
Content-Type | application/json;charset=UTF-8 |
Body中放置请求参数,参数详情如下:
请求参数:
参数名称 | 数据类型 | 参数描述 |
appKey | String | 应用生成的appkey |
sign | String | 签名 |
nonceStr | String | 随机字符串 |
libraryId | String | 图库标识 |
personName | String | 新增用户姓名 |
image | String | base64图片,建议上传小于3M, 像素在4000*3000 以内的图片 |
返回说明
返回参数:
返回值名称 | 类型 | 描述 |
---|---|---|
code | Int | 返回结果,0表示成功,非0为对应错误号 |
success | Boolean | 是否成功 |
message | String | 返回详细信息 |
data | Object | 返回的数据 |
personId | Int64 | Id |
imageUrl | Int64 | 注册照地址 |
faceQuality | double | 人脸质量分 |
imgAge | Int | 识别出的图片年龄 |
imgGender | Int | 识别出的图片性别 |
返回示例:
{
"code": 0,
"data": {
"imgAge": 40,
"imageUrl": "https://cloudwalk-admin......33b6213.jpg",
"faceQuality": 0.4683757,
"personId": 11457,
"imgGender": 0
},
"success": true,
"message": "成功"
}