人脸检测和年龄识别
使用场景
该识别服务包含人脸检测+人脸年龄段识别组成。可以截取图片里面多个人脸,识别各个人脸年龄段。
任务识别结果参数
taskId
62e1fdedcb4a7d3b9c302428
taskId参数
参数名称 |
类型 |
是否必需 |
说明 |
fileList |
Array |
是 |
每张图片的识别结果 |
fileList参数
参数名称 |
类型 |
是否必需 |
说明 |
name |
String |
是 |
如果上传的image参数是url,则该值是图片url;如果是以图片文件上传,则该值为文件名 |
objects |
Array |
是 |
检测出来的人脸 |
objects参数
参数名称 |
类型 |
是否必需 |
说明 |
location |
Array |
是 |
人脸方框坐标以图片左上角为原点,分别是[左上角坐标 ,右上角坐标 ,右下角坐标 ,左下角坐标 ], 坐标值是相对于图片大小的百分比形式 |
category |
Number |
是 |
对应的人脸属于的年龄段 |
scores |
Number |
是 |
对应人脸属于年龄段准确度,取值范围[0.0~1.0],值越高机器对判定结果越有把握。默认0.3以上可以认为人脸属于对应年龄段 |
category 年龄段 描述
category |
年龄段 |
0 |
0- 1 |
1 |
2- 5 |
2 |
6- 10 |
3 |
11- 15 |
4 |
16- 20 |
5 |
21- 25 |
6 |
26- 30 |
7 |
31- 35 |
8 |
36- 40 |
9 |
41- 45 |
10 |
46- 50 |
11 |
51- 55 |
12 |
56- 60 |
13 |
61- 70 |
14 |
71- 80 |
15 |
81 以上 |
16 |
难以辨认 |
响应结果
{
"62e1fdedcb4a7d3b9c302428": {
"fileList": [
{
"name": "https://www.tuputech.com/test.jpg",
"objects": [
{
"location": [
[
0.7007799905443949,
0.26091899871826174
],
[
0.8222528366815476,
0.26091899871826174
],
[
0.8222528366815476,
0.5064324118874289
],
[
0.7007799905443949,
0.5064324118874289
]
],
"category": 4,
"scores": 0.9999884366989136
},
{
"location": [
[
0.2679353502061632,
0.11118876717307351
],
[
0.37795620872860863,
0.11118876717307351
],
[
0.37795620872860863,
0.3357514121315696
],
[
0.2679353502061632,
0.3357514121315696
]
],
"category": 6,
"scores": 0.9999574422836304
}
]
}
]
},
"nonce": "0.25289168604649603",
"timestamp": 1431657207,
"code": 0,
"message": "success"
}