vitis::ai::OpenPoseResult - 3.0 English

Vitis AI Library User Guide (UG1354)

Document ID
UG1354
Release Date
2023-01-12
Version
3.0 English
Result with the openpose network.

Declaration

typedef struct
{
  int width;
  int height;
  std::vector< std::vector< PosePoint > > poses;

} vitis::ai::OpenPoseResult;
Table 1. Structure vitis::ai::OpenPoseResult Member Description
Member Description
width Width of input image.
height Height of input image.
poses

A vector of pose. Pose is represented by a vector of PosePoint . Joint points are arranged in order 0: head, 1: neck, 2: L_shoulder, 3:L_elbow, 4: L_wrist, 5: R_shoulder, 6: R_elbow, 7: R_wrist, 8: L_hip, 9:L_knee, 10: L_ankle, 11: R_hip, 12: R_knee, 13: R_ankle