├── .gitignore ├── README.md ├── main.py ├── requirements.txt ├── smplifyx ├── config.py ├── lbfgs.py ├── loss.py └── optimize.py ├── test_data ├── P1.npy ├── P1.pkl ├── P2.npy └── P2.pkl └── utils ├── io.py ├── limbs.py ├── mapping.py ├── rotation_conversion.py ├── torch_utils.py ├── visualize_kp3d.py └── visualize_smplx.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | /body_models/ 3 | imgui.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | smplx 3 | scipy 4 | pytorch3d 5 | tqdm 6 | matplotlib 7 | aitviewer -------------------------------------------------------------------------------- /smplifyx/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/smplifyx/config.py -------------------------------------------------------------------------------- /smplifyx/lbfgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/smplifyx/lbfgs.py -------------------------------------------------------------------------------- /smplifyx/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/smplifyx/loss.py -------------------------------------------------------------------------------- /smplifyx/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/smplifyx/optimize.py -------------------------------------------------------------------------------- /test_data/P1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/test_data/P1.npy -------------------------------------------------------------------------------- /test_data/P1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/test_data/P1.pkl -------------------------------------------------------------------------------- /test_data/P2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/test_data/P2.npy -------------------------------------------------------------------------------- /test_data/P2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/test_data/P2.pkl -------------------------------------------------------------------------------- /utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/utils/io.py -------------------------------------------------------------------------------- /utils/limbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/utils/limbs.py -------------------------------------------------------------------------------- /utils/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/utils/mapping.py -------------------------------------------------------------------------------- /utils/rotation_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/utils/rotation_conversion.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /utils/visualize_kp3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/utils/visualize_kp3d.py -------------------------------------------------------------------------------- /utils/visualize_smplx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LvXinTao/Mocap-to-SMPLX/HEAD/utils/visualize_smplx.py --------------------------------------------------------------------------------