Skip to content

Pose

Pose

Bases: DataModel

A data model for representing pose keypoints.

Attributes:

  • x (list[int]) –

    The x-coordinates of the keypoints.

  • y (list[int]) –

    The y-coordinates of the keypoints.

The keypoints are represented as lists of x and y coordinates, where each index corresponds to a specific body part.

Pose3D

Bases: DataModel

A data model for representing 3D pose keypoints.

Attributes:

  • x (list[int]) –

    The x-coordinates of the keypoints.

  • y (list[int]) –

    The y-coordinates of the keypoints.

  • visible (list[float]) –

    The visibility of the keypoints.

The keypoints are represented as lists of x, y, and visibility values, where each index corresponds to a specific body part.