├── .gitignore ├── README.md ├── data ├── demo_dp_single_ann.pkl └── icrop.json ├── docs └── fitting_example.png └── src ├── densepose_methods.py ├── estimate.py ├── model.py ├── renderer.py └── tf_smpl ├── __init__.py ├── batch_lbs.py ├── batch_smpl.py ├── projection.py └── smpl_faces.npy /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/README.md -------------------------------------------------------------------------------- /data/demo_dp_single_ann.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/data/demo_dp_single_ann.pkl -------------------------------------------------------------------------------- /data/icrop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/data/icrop.json -------------------------------------------------------------------------------- /docs/fitting_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/docs/fitting_example.png -------------------------------------------------------------------------------- /src/densepose_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/src/densepose_methods.py -------------------------------------------------------------------------------- /src/estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/src/estimate.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/src/model.py -------------------------------------------------------------------------------- /src/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/src/renderer.py -------------------------------------------------------------------------------- /src/tf_smpl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tf_smpl/batch_lbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/src/tf_smpl/batch_lbs.py -------------------------------------------------------------------------------- /src/tf_smpl/batch_smpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/src/tf_smpl/batch_smpl.py -------------------------------------------------------------------------------- /src/tf_smpl/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/src/tf_smpl/projection.py -------------------------------------------------------------------------------- /src/tf_smpl/smpl_faces.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jtoo/fitting_human_smpl_model/HEAD/src/tf_smpl/smpl_faces.npy --------------------------------------------------------------------------------