get https://{app}.{filespin}.{io}/api/v1/assets//addons/pose_classification/jobs/
Retrieve result after pose classification using job_id
Response JSON
The Job API call will return with a JSON response as below.
{
"status": "OK",
"output": {
"data": [
{
"pose": "STANDING",
"confidence": 0.94
},
{
"pose": "BENDING",
"confidence": 0.81
},
{
"pose": "CROUCHING",
"confidence": 0.97
}
]
}
Key | Value | Description |
---|---|---|
status | string | Can be QUEUED , IN_PROGRESS , OK , ERROR |
output | JSON | An JSON Object containing the result. |
Pose Labels
The list of all possible pose labels supported out-of-the-box are:
- STANDING
- BENDING
- CROUCHING
Confidence Level
The confidence level represents the degree of certainty with which the model has identified a particular pose. It ranges from 0
to 1
, with 1
indicating the highest confidence.
Multiple Poses
If there is more than one pose in the list, it indicates multiple people in the image. The poses are ordered from left to right, corresponding to the positions of the people detected in the image.