TaatiTeam / MotionAGFormer

Official implementation of the paper "MotionAGFormer: Enhancing 3D Pose Estimation with a Transformer-GCNFormer Network" (WACV 2024).
Apache License 2.0
140 stars 17 forks source link

How to get 2D ground truth data for training? Help! #5

Closed SongrainZhou closed 11 months ago

SongrainZhou commented 11 months ago

Thank you for the excellent project and I am very interested in your project. I want to train with 2D ground truth keypoints. Could you please tell me how to get 2D ground truth data for training?

SoroushMehraban commented 11 months ago

You can do it by setting use_proj_as_2d to be True in config file. By setting it, it doesn't use the 2D input and use 2D projection (with confidence score of 1) as the 2D input.

SongrainZhou commented 11 months ago

Thank you for your answer!!!