This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 760
hip fix #51
Comments
That's how the model is trained and how evaluation is done. The hip joint is on the origin, and the predicted pose is relative to the origin. You should train the trajectory model as well (we don't currently have pretrained models for that) if you want to recover the global position, but the accuracy may not be very good. |
Thanks for your reply. |
In that case, we simply added a constraint to force the height of the lowest joint to 0, so that the subject is always touching the ground. For the same effect, you can replace Line 729 in 1551a01
prediction[:, :, 2] -= np.min(prediction[:, :, 2], axis=1, keepdims=True)
|
Appreciate you! |
Closed
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, I get wild video 3D pose result, find the center hip point is fixed, when a person sit down, the hip points is same. like this:
I think maybe is training data prepare, Could you please tell me what the function of inputs_3d[:, :, 0] = 0
https://github.com/facebookresearch/VideoPose3D/blob/master/run.py#L312
why need set center_hip coordinate to (0,0,0), Is this aim to fix the hip point?
Appreciate your apply Thank you in advance.
The text was updated successfully, but these errors were encountered: