...
Payload Field | Type | Required | Description | |||
---|---|---|---|---|---|---|
timestamp | Integer | Required | 타임스탬프 | |||
channel_no | Integer | Required | 채널 번호 | |||
face_id | Integer | Required | 얼굴 ID (현재 추적중인 얼굴 객체 ID) | |||
bbox[] | Double, Integer | Required | 얼굴 바운딩 박스 | |||
age | Integer | 나이 | ||||
gender | String | 성별 | ||||
emotion[] | Double | 표정 (각 표정에 대한 점수) | ||||
landmark[] | Integer | 얼굴의 랜드마크 x,y 좌표 (눈, 코, 입 등, 68개의 좌표) | ||||
headpose[] | Double | 얼굴 자세 (상하, 좌우, 기울기) | ||||
recogimage_nameuri | String | 얼굴 인식 시 매칭된 이름 | recog_confidence | Double | 얼굴 인식 유사도Required | 이미지 URI |
[JSON Body Example]
Code Block | ||
---|---|---|
| ||
{ "timestamp" : 201909151231122000, "channel_no" : 1, "face_id" : 1, "bbox" : { "confidence" : 0.65 "x" : 10, "y" : 10, "width" : 100, "height" : 100 }, "age": 23, "gender": "Male", "emotion" : { "Angry" : 0.1, "Disgust" : 0.1, "Fear" : 0.1, "Happiness" : 0.1, "Neutral" : 0.3, "Sad" : 0.1, "Surprise" : 0.1, }, "landmark": [ x1, y1, x2, y2..., x67, y67, x68, y68 ], "head_pose" : { "pitch" : 3.0, "yaw" : 15.3, "roll" : 1.44 }, } |
...