-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something strange in the expoting obj file #5
Comments
I also encountered this problem, is there anything need to pay attention to? |
I have discussed this failure case in ECON's paper. This issue mainly comes from off-the-shelf HPS (Human Pose & Shape Estimation), which were trained on pseudo 3D ground truth, have bias towards mean pose, or to say, the bent legs / arms. Apart from replacing the HPS approach with one trained on synthetic data with REAL grond-truth data, another workaround is to re-posed the reconstruction with pre-defined SMPL-X T-Pose parameters as follows:
from new_pose = smpl_out_lst[2].full_pose to new_pose = smpl_out_lst[0].full_pose
|
Thank you so much,I will try it! |
@YuliangXiu For some reason,I don't want to use the visible face from SMPL-X.But when I set ["hand"] or [] in config/econ.yaml and ran |
I just updated the code to fix this bug. |
The issue of bending legs get resolved finally, please check out tricks.md/bending-legs. |
Thank you so much for your awesome work,sir!
But something strange happen in the exporting obj file like this:
The input is a standard T-pose photo,but the output is skew(including the arms and legs).How could it happen?Maybe my picture is not so suitable for the model to predict. So are there certain requirements or something to pay attention to for the input images?
Thank you again!
The text was updated successfully, but these errors were encountered: