4D-Humans
4D-Humans copied to clipboard
How can I use the detection result to calculate the limb length?
Hello,I just heard this wonderful work. But I do not have enough time to see the full code. I wanna know if I want to measure the body limb length of the smpl, where and which line can I refer to? Thanks very much.
When you run the demo, check the output of out['pred_keypoints_3d']
. The names of the joints are listed here (we return the first 44 of these 49 joints). If you want to estimate the length of a bone, you can estimate the distance between the corresponding joints (e.g., distance of left knee from left ankle).
When you run the demo, check the output of
out['pred_keypoints_3d']
. The names of the joints are listed here (we return the first 44 of these 49 joints). If you want to estimate the length of a bone, you can estimate the distance between the corresponding joints (e.g., distance of left knee from left ankle).
Thanks, now I get the pred_keypoints_3d, but I'm not sure how the Coordinate System builds? I mean, the xyz directions in the figure. Could you please show me? Besides, is the pred_keypoints_3d coodinate normlized?
Thank you for the great contribution, I have few question.
- How to convert the "pred_keypoints_3d" to joint angles in world coordinate.
- Same as previous question from @TZYSJTU, what is the coordinate system of current joints.
- Is there any other parameter we can utilize to obtain the joint angles such as "predicted smpl parameters" (global orientation & body_pose).