Guides

Retrieve result

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
        }
    ]
}
KeyValueDescription
statusstringCan be QUEUED, IN_PROGRESS, OK, ERROR
outputJSONAn 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.

Language
Credentials
Header
URL
Click Try It! to start a request and see the response here!