vchoutas / smplx

SMPL-X
https://smpl-x.is.tue.mpg.de/
Other
1.78k stars 303 forks source link

How to conver 'keypoints3d' to 'smpl_poses' and 'smpl_trans' ? #126

Closed zhangsanfeng86 closed 2 years ago

zhangsanfeng86 commented 2 years ago

Hi @vchoutas Thank you for your wonderful work!

With the help of smpl.forward().joints , 'smpl_poses' and 'smpl_trans' conver to 'keypoints3d' . But How to conver 'keypoints3d' to 'smpl_poses' and 'smpl_trans' ?

minhnhatvt commented 2 years ago

Hi, converting from 3d keypoints to SMPL poses is an inverse problem (which is also referred to as inverse kinematics) and thus it is much harder than the forward problem. This code might be helpful for you: https://github.com/CalciferZh/Minimal-IK

zhangsanfeng86 commented 2 years ago

Thanks for your quick and useful reply!