Jeff-sjtu / HybrIK

Official code of "HybrIK: A Hybrid Analytical-Neural Inverse Kinematics Solution for 3D Human Pose and Shape Estimation", CVPR 2021
MIT License
1.16k stars 142 forks source link

pose estimation in multiplayer scenarios #215

Open zengyiwen123 opened 7 months ago

zengyiwen123 commented 7 months ago

When running the demo, the multiplayer scene can only perform pose estimation for a single person, can hybrik implement the pose estimation in the multiplayer scenario?

biansy000 commented 7 months ago

Our demo code can be divided into 3 phases. First we use a detection model to detect players in the video (here), and then we select the largest & highest confident bounding bounding box (here). Finally, we clip the image using the selected bbox and run HybrIK (here).

Therefore, to support multiplayer scenes, you only need to change phase 2 and select more than 1 bound bboxes.