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

Any plan for adding person tracking function? #16

Closed yushuinanrong closed 4 years ago

yushuinanrong commented 4 years ago

Hi @Daniil-Osokin ,

Thanks again for sharing this great work! I'm wondering if you have any plan to add person tracking functionality to your codebase? The original OpenPose seems have provided single-person tracking feature. Though, my need would be multi-person tracking based on the pose estimation predictions.

Thanks, Melo

Daniil-Osokin commented 4 years ago

Hi, actually it is already there. We track 2D poses to stabilize their position in 3D. There is also implementation in neighbor repository, which smooths keypoints jitter.

yushuinanrong commented 4 years ago

@Daniil-Osokin Got it! Thanks so much for your answer.