
低光目标检测
| 参数名 | 含义 | 数据类型 | 是否必填 | 缺省值 |
| type | 使用的数据类型,目前仅支持两种类型image|video,image:图片格式(默认) video:视频格式 | string | 否 | / |
| path | 图片格式: (1)影像外部链接方式 (2)通过系统文件上传接口,返回的图片路径 视频格式: (3)通过系统文件上传接口,返回视频的路径 | string | 是 | / |
| keyframe | 当上传视频类型时,是否返回关键帧信息;默认为true,返回关键帧信息;false,不返回关键帧信息 | boolean | 否 | / |
| 参数名 | 含义 | 规则数据 |
| code | 200 | 状态码,非200表示没有正常获取到数据 |
| data | String | 返回数据 |
| data-status | String | 状态码,非success表示没有正常获取到数据 |
| data-detail | String | 返回详情 |
请求示例
https://api.open.geovisearth.com/pj/ai-service/braindl/exDark?type=image&path=https://io-qos.geovisearth.com/getfile/15/open-platform/braindl_exDark.jpg&token=您的token返回示例
{
"code": 200,
"message": "success",
"data": {
"status": "success",
"detail": [
{
"predictions": [
{
"x1": 182,
"y1": 87,
"x2": 217,
"y2": 231,
"score": 0.86783766746521,
"class_id": 10,
"class_name": "people"
},
{
"x1": 134,
"y1": 97,
"x2": 174,
"y2": 239,
"score": 0.8482412695884705,
"class_id": 10,
"class_name": "people"
},
{
"x1": 57,
"y1": 138,
"x2": 129,
"y2": 256,
"score": 0.84671950340271,
"class_id": 0,
"class_name": "bicycle"
},
{
"x1": 203,
"y1": 141,
"x2": 240,
"y2": 227,
"score": 0.2670208811759949,
"class_id": 0,
"class_name": "bicycle"
}
]
}
]
}
}