Emotion Recognition Job
GET/api/v1/assets/:asset_id/addons/emotion_recognition/jobs/:job_id
Retrieve result after emotion recognition using job_id.
Response JSON
{
"status": "OK",
"output": {
"data": [
{
"region": { "x": 230, "y": 120, "w": 36, "h": 45 },
"dominant_emotion": "happy",
"emotion": {
"sad": 22.50, "angry": 5.19, "surprise": 1.39,
"fear": 6.92, "happy": 47.34, "disgust": 1.08, "neutral": 15.58
}
}
]
}
}
| Key | Value | Description |
|---|---|---|
status | string | Can be QUEUED, IN_PROGRESS, OK, ERROR |
output | JSON | An JSON Object containing the result |
Request
Responses
- 200
- 401
- 403
- 500
Successful operation
Unauthorized - Invalid or missing authentication
Forbidden - Insufficient permissions
Internal server error