vchoutas / smplx

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

`transfer_model.py` mangles output on a test file #113

Closed gngdb closed 2 years ago

gngdb commented 2 years ago

I tried to convert the AMASS sample data from SMPL-H to SMPL-X using the transfer_model tool provided. I followed these steps:

  1. Write the original SMPL-H poses to .obj files, one per pose, using trimesh to export
  2. Run the command from the transfer_model docs here after editing the config to this
  3. After that's complete I tried to visualize one of these poses using the SMPL-X body model in this repository

Example output:

My full notes on trying to get this to run are here. Could you provide any pointers as to what I'm doing wrong? I see that AMASS was recently converted to SMPL-X, was this the tool that was used? Can you give an example of how that was performed?

gngdb commented 2 years ago

It turns out this is because when I wrote the .obj files I didn't set process=False in Trimesh. My notes are here.

leesky1c commented 2 years ago

It turns out this is because when I wrote the .obj files I didn't set process=False in Trimesh. My notes are here.

It works. Thanks.