Pose Classification
POST/api/v1/assets/:asset_id/addons/pose_classification
Classify body poses in an image.
Response JSON when is_synchronous is true
{
"data": [
{ "pose": "STANDING", "confidence": 0.94 },
{ "pose": "BENDING", "confidence": 0.81 },
{ "pose": "CROUCHING", "confidence": 0.97 }
]
}
| Parameter | Type | Description |
|---|---|---|
data | JSON | List of poses detected |
Response JSON when is_synchronous is false
{
"job_id": "c35f1e7a-2e1e-4a3a-ac3c-9f54cd7879ac"
}
| Key | Value | Description |
|---|---|---|
job_id | String | The job ID to track the job |
Request
Responses
- 200
- 401
- 403
- 500
Successful operation
Unauthorized - Invalid or missing authentication
Forbidden - Insufficient permissions
Internal server error