Data structure for a pose. Represented by 14 coordinate points.
Declaration
typedef struct
{
Point right_shoulder;
Point right_elbow;
Point right_wrist;
Point left_shoulder;
Point left_elbow;
Point left_wrist;
Point right_hip;
Point right_knee;
Point right_ankle;
Point left_hip;
Point left_knee;
Point left_ankle;
Point head;
Point neck;
} vitis::ai::PoseDetectResult::Pose14Pt;
| Member | Description |
|---|---|
| right_shoulder | R_shoulder coordinate. |
| right_elbow | R_elbow coordinate. |
| right_wrist | R_wrist coordinate. |
| left_shoulder | L_shoulder coordinate. |
| left_elbow | L_elbow coordinate. |
| left_wrist | L_wrist coordinate. |
| right_hip | R_hip coordinate. |
| right_knee | R_knee coordinate. |
| right_ankle | R_ankle coordinate. |
| left_hip | L_hip coordinate. |
| left_knee | L_knee coordinate. |
| left_ankle | L_ankle coordinate. |
| head | Head coordinate. |
| neck | Neck coordinate. |