更新时间:2021-07-16 07:43:21下载pdf
本文介绍宠物检测的 API。
对图片中的动物进行检测,并返回动物在图片中的具体坐标。图片大小不超过 500k,分辨率不超过 25601440。最多同时识别两个宠物,宠物大小不小于150150。
注意: 图片的 base64 编码不包含图片头
(data:image/jpg;base64,)
。
POST: /v1.0/iot-03/ai-vision/pet-detection
参数名 | 类型 | 说明 |
---|---|---|
result | List |
result
说明
参数名 | 类型 | 说明 |
---|---|---|
confidence | Float | 置信度,数值越大,准确率越高,区间范围 0~1 |
coordinates | CoordinatesRes | 宠物在图片中的坐标 |
coordinates
说明
参数名 | 类型 | 说明 |
---|---|---|
left | Integer | 宠物和图片左侧边界的距离,单位px |
top | Integer | 宠物和图片上方边界的距离,单位px |
right | Integer | 宠物和图片右侧边界的距离,单位px |
bottom | Integer | 宠物和图片底部边界的距离,单位px |
POST: /v1.0/iot-03/ai-vision/pet-detection
{
"image": "/9j/4AAQSkxxxxxxxxxxxxxxxx"
}
{
"result": {
"confidence": "0.96324956",
"coordinates": {
"bottom": "932",
"right": "777",
"top": "10",
"left": "0"
}
},
"success": true
}
参考 错误码。
该内容对您有帮助吗?
是意见反馈该内容对您有帮助吗?
是意见反馈