Daniil-Osokin / lightweight-human-pose-estimation-3d-demo.pytorch

Real-time 3D multi-person pose estimation demo in PyTorch. OpenVINO backend can be used for fast inference on CPU.
Apache License 2.0
656 stars 138 forks source link

Key point ordering #18

Closed ankitbansal811 closed 4 years ago

ankitbansal811 commented 4 years ago

Is there any particular reason on why you didn't follow the COCO format for keypoints ordering?

I also learned the following (please correct me if i'm wrong)

  1. During training you are using the COCO format.
  2. It is only after getting the keypoints that you are changing the order of kpts.
Daniil-Osokin commented 4 years ago

Hi, 2D poses are found in OpenPose format, for 3D we use Panoptic data, so keypoints also in this format.

ankitbansal811 commented 4 years ago

Hey,

Thanks for the quick reply. I was not aware of the Panoptic dataset.