查询视图图片列表
更新时间:2022-02-24
接口描述
本接口用于查询视图图片列表。
请求(Request)
请求URI
GET /v1/vision/img/{visionId}?pageNo={pageNo}&pageSize={pageSize}&startTime={startTime}&endTime={endTime}&type={type}
参数名 | 类型 | 是否必须 | 描述 |
---|---|---|---|
visionId | Long | 否 | 视图ID |
startTime | Long | 否 | 开始时间戳 |
endTime | Long | 否 | 结束时间戳 |
type | Type | 否 | 信息类型:FACE(人脸)、PERSON(人员)、MOTOR_VEHICLES(机动车)、NON_MOTOR_VEHICLES(非机动车) |
pageNo | int | 否,默认值:1 | 分页标识第几页 |
pageSize | int | 否,默认值:10 | 分页标识每页显示几条数据 |
请求头域
除公共头域外,无其它特殊头域。
请求体
无
响应(Response)
响应头域
除公共头域外,无其它特殊头域。
响应体
参数名 | 类型 | 描述 |
---|---|---|
data | List | 视图数据 |
+ createTime | Date | 创建时间 |
+ url | String | 图片地址 |
+ indexId | String | 索引Id |
+ imgInfo | String | 结构化信息 |
++ ImageID | String | 图像标识 |
++ InfoKind | String | 信息分类,取值:0-其他,1-自动采集,2-人工采集 |
++ ImageSource | ImageSource | 图像来源,见附件:ImageSource.txt |
++ EventSort | EventSort | 事件分类,见附件:EventSort.txt |
++ DeviceID | String | 设备编码 |
++ fileFormat | FileFormat | 图像文件格式,见附件:FileFormat.txt |
++ ShotTime | ShotTime | 拍摄时间,UTC时间戳 |
++ Title | String | 题名 |
++ ContentDescription | String | 内容描述 |
++ ShotPlaceFullAdress | String | 拍摄地点区划内详细地址 |
++ width | Integer | 宽度(水平像素值) |
++ height | Integer | 高度(垂直像素值) |
pageNo | Integer | 当前页 |
pageSize | Integer | 每页数量 |
totalCount | Integer | 总数 |
示例
请求示例
GET /v1/vision/img/100010?page&pageNo=1&pageSiZe=20&type=FACE&startTime=12321312123&endTime=123213213123 HTTP/1.1
x-bce-date: 2020-03-25T09:28:13Z
host: evs.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2020-03-25T09:28:13Z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应示例
HTTP/1.1 200 OK
Transfer-Encoding: chunked
x-bce-request-id: 012b9747-f13a-4a2c-a488-02b221844dca
Cache-Control: no-cache
Server: BWS
Date: Tue, 24 Mar 202 013:34:07 GMT
Content-Type: application/json;charset=UTF-8
{
"data": [
{
"indexId": yuIFqweIDefwoUfwAon,
"imgUrl": "http://www.baidu.com/123.png",
"createTime": "2021-12-24T06:52:19Z",
"imgInfo": {
...
}
},
{
"indexId": yuIFqweIDefwoUfwAon,
"imgUrl": "http://www.baidu.com/123.png",
"createTime": "2021-12-24T06:52:19Z",
"imgInfo": {
...
}
}
],
"pageNo": 1,
"pageSize": 20,
"totalCount": 2
}