xingyizhou / pytorch-pose-hg-3d

PyTorch implementation for 3D human pose estimation
GNU General Public License v3.0
614 stars 143 forks source link

the geometric constraint question #52

Closed Keysmis closed 5 years ago

Keysmis commented 5 years ago

image @xingyizhou ,您好,我在查看您的代码的时候,发现这里使用的计算bone length的时候,使用的似乎不是paper里说的2D pose的gt, 使用的似乎也是detect的2D pose??

xingyizhou commented 5 years ago

Hi, xy = target[:, :, :2] is the GT 2d pose. https://github.com/xingyizhou/pytorch-pose-hg-3d/blob/master/src/datasets/mpii.py#L54

Keysmis commented 5 years ago

Thanks for your answer, i will check it again.