查询AI能力
查询流程
[]
流程说明
- 用户调用find接口,根据摄像机ID查询;
- 存在则返回摄像机相关的所有业务能力列表,列表包含所有的用户参数;不存在则返回空对象。
请求格式
URL |
/dynamic/api/v1/find |
Method |
GET |
返回参数说明
Key |
Require |
Type |
Description |
status |
Y |
int |
响应状态码 |
message |
Y |
string |
提示消息 |
data |
Y |
arr |
绑定结果 |
示例
{
"status": 200,
"message": "查询成功",
"data": [
{
"cameraId": "10000000000",
"url": "rtsp://12312312",
"imageOut": "base64|path",
"inputType": "RTSP|File",
"decodeType": "device",
"notifyUrl": "http://10.10.1.124:6200/api/v1/receive",
"skipFrame": 25,
"roi": [],
"areaBoxes": [],
"fileStore": {
"url": "http://xxx.xxx.xxx.xxx:0000",
"type": 1,
"nsKey": "scene",
"nsValue": "certificate"
},
"abilities":[
{
"name": "HumanBreakIn",
"value": {
"interval": 0.5,
"minTarry": 3,
"alarmInterval": 5,
"threshold": 0.4,
"areaIsReverse": false,
"pointType": 1,
"zoomFactor": 1.0,
"minBox": {
"width": 50,
"height": 50
},
"areaBoxes": [
[
{"x": 100, "y": 100},
{"x": 900, "y": 100},
{"x": 900, "y": 800},
{"x": 100, "y": 800}
]
]
}
}
]
}
]
}