Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 4 Next »

VI앱에서 송신하는 이벤트정보

Send Object

[Fields]

Payload Field

Type

Required

Description

timestamp

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

얼굴 자세 (상하, 좌우, 기울기)

recog_name

String

얼굴 인식 시 매칭된 이름

recog_confidence

Double

얼굴 인식 유사도

[JSON Body Example]

{
  "jsonrpc": "2.0",
  "method": "notify",
  "params": {
    "app_instance_id": "89s7dyf98ydf98gy9s8d",
    "type" : "statistics"
    "priority" : "normal"
    "payload": 
    {
        "timestamp" : 201909151231122000,
        "face_id" : 1,        
        "bbox" : 
        {
            "confidence" : 0.65
            "x" : 10,
            "y" : 10,
            "width" : 100,
            "height" : 100
        },
        "age": 23,
        "gender": "m",
        "emotion" :
        {
            "Angry" : 0.1,
            "Contempt" : 0.1,
            "Disgust" : 0.1,
            "Fear" : 0.1,
            "Happiness" : 0.1,
            "Neutral" : 0.3,
            "Sad" : 0.1,
            "Surprise" : 0.1,
        },
        "landmark": [
            x0, y0, x1, y1...x66, y66, x67, y67
        ],
        "head_pose" : 
        {
            "pitch" : 3.0,
            "yaw" : 15.3,
            "roll" : 1.44
        },
        "recog_name" : "홍길동",
        "recog_confidence" : 0.75
    }
  },
  "id": "nk2-0"
}

Receive Object

No receive object.

  • No labels