-
Notifications
You must be signed in to change notification settings - Fork 317
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
Convert SMPL-H to SMPL-X #82
Comments
I have the same issue. For some poses of SMPL meshes I get weird result. |
I had the same issue, this is because trimesh changes the vertices values by default. mesh = trimesh.Trimesh(vertices=c2c(all_step_vertices[i]), faces=faces, vertex_colors=np.tile(colors['grey'], (10475, 1)),process=False) After that, should work! |
I spent days debugging this, the authors responded and this was the same problem. I wish I'd seen this issue. |
This was referenced Feb 14, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, thanks for the code! I tried to convert an SMPL-H model (.obj generated by the following code piece) to an SMPL-X representation. While trying to run this code
python -m transfer_model --exp-cfg config_files/smplh2smplx.yaml
, I met several problems.trimesh.Trimesh
Input:
model_transfer Output:
Question: I suspect the input .obj file is incorrect, even though the input “looks” correct. Is there any requirements for the transfer_model input?
Thank you for taking the time to solve our problems in advance!
Best
The text was updated successfully, but these errors were encountered: