人行管理服務(wù)
1.1 人行軌跡檢索
人行軌跡檢索能力是通過(guò)用戶faceId在人行數(shù)據(jù)集中進(jìn)行數(shù)據(jù)檢索,用戶可以通過(guò)返回的軌跡結(jié)構(gòu)化數(shù)據(jù),進(jìn)行軌跡視圖的拼裝,由于所有設(shè)備的經(jīng)緯度都采用的是高德坐標(biāo)系,建議使用高德的軌跡還原服務(wù),進(jìn)行目前軌跡數(shù)據(jù)如果分頁(yè)返回可能會(huì)導(dǎo)致軌跡繪制問(wèn)題,目前是會(huì)采取全量返回的策略,最大10w條,默認(rèn)返回最近的數(shù)據(jù)。
Path路徑 | /home/face/user/trace/query |
請(qǐng)求方式 | post |
接口版本 | 1.0.0 |
請(qǐng)求參數(shù)
字段名 | 類型 | 必填 | 備注 |
startTM | Long | 是 | 開始時(shí)間,毫秒 |
endTM | Long | 是 | 結(jié)束時(shí)間,毫秒 |
faceId | String | 是 | 智能識(shí)別id,可以是系統(tǒng)同錄入智能識(shí)別的faceId,也可以是陌生人的faceId |
返回結(jié)果
字段名 | 類型 | 備注 |
code | Integer | 200-成功 |
message | String | success |
localizedMsg | String | |
data | JSON | |
faceId | String | 智能識(shí)別ID |
timeSeries | String | 樣例: "{ \"1578648767325\":\"1\", // 時(shí)間戳:設(shè)備序號(hào) \"1578648767953\":\"1\", \"1578648768029\":\"1\" }" |
positionMap | String | 樣例: "{ \"1\": // 設(shè)備序號(hào) { \"iotId\":\"rDLZdBN1QsERXtr8biXX000100\", //設(shè)備id \"latitude\":\"30.132176\", // 設(shè)備經(jīng)度 \"longitude\":\"120.080502\" // 設(shè)備緯度 } }" |
1.2 人行數(shù)據(jù)訂閱
實(shí)時(shí)訂閱人行數(shù)據(jù),用于業(yè)務(wù)層做流程組裝。
模型ID | 版本 |
· CustomerFlowBasicFaceData | 1.1 |
人行數(shù)據(jù)
字段名 | 類型 | 備注 |
scope_id | String | 隔離Id,如項(xiàng)目Id |
iotId | String | 攝像頭iotId |
productKey | String | 設(shè)備pk |
deviceName | String | 設(shè)備dn |
blur_score | Double | 智能識(shí)別模糊度得分 |
pose_score | Double | 智能識(shí)別姿態(tài)得分 |
age | Integer | 年齡 |
gender | String | male/female/unknown |
image | String | 智能識(shí)別圖文件名稱 |
landmarks | String | [[0.1, 0.1], [0.1, 0.1],[0.1, 0.1],[0.1, 0.1],[0.1, 0.1]] |
groupId | String | 非必填,人員分組ID |
faceId | String | 識(shí)別人員的faceId |
faceIdEffectiveTime | Date | faceId有效時(shí)間 |
recordTime | Date | 記錄時(shí)間unix timestamp |