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.17k stars 142 forks source link

why comment loss_xyz during train stage? #128

Closed cbyzju closed 1 year ago

cbyzju commented 1 year ago

https://github.com/Jeff-sjtu/HybrIK/blob/main/hybrik/models/criterion.py#L223

I think it's important to supervise joints in camera coordinate during train stage, but I found you comment loss_xyz, this is confusing to me.

biansy000 commented 1 year ago

We can implicitly supervise xyz by directly supervising uvd and camera, and in experiments, we find that directly supervising xyz sometimes harms the prediction of camera.

cbyzju commented 1 year ago

Got it, Thank you for your kind reply!