eth-ait / aitviewer

A set of tools to visualize and interact with sequences of 3D data.
MIT License
497 stars 46 forks source link

Do i need to download smplx model? #17

Closed MathPoem closed 1 year ago

MathPoem commented 1 year ago
       assert osp.exists(smplx_path), 'Path {} does not exist!'.format(
   AssertionError: Path ../data/smplx_models does not exist!

when i run quickstart.py i get this rerror. I upload (https://smpl.is.tue.mpg.de/index.html) and install(https://github.com/vchoutas/smplx) smpl model but i still get this error Do i need to download smplx model? and if so, where should it be placed?

kaufManu commented 1 year ago

Yes, if you'd like to use SMPL models with the viewer, you should download the respective models. If you just want to see if you can run the viewer, it's better to run an example that does not require SMPL, e.g. animation.py (I guess the quickstart.py example has a bit of a misleading name :)).

If you want to use SMPL models, you should do the following (as also mentioned in the README):

Note that you should not have to install the pypi package smplx separately, this is done automatically with the installation of the viewer.

Hope this helps.