├── .gitignore ├── LICENSE ├── README.md ├── cfg_files ├── fit_smpl.yaml ├── fit_smplh.yaml └── fit_smplx.yaml ├── construction.gif ├── images └── teaser_fig.png ├── optional-requirements.txt ├── requirements.txt └── smplifyx ├── __init__.py ├── camera.py ├── cmd_parser.py ├── data_parser.py ├── easy_configuration.py ├── easy_run.py ├── fit_single_frame.py ├── fitting.py ├── main.py ├── mesh_viewer.py ├── mesh_viewer_background.py ├── openpose_wrapper.py ├── optimizers ├── __init__.py ├── lbfgs_ls.py └── optim_factory.py ├── prior.py ├── render_results.py ├── rendering_poses.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/README.md -------------------------------------------------------------------------------- /cfg_files/fit_smpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/cfg_files/fit_smpl.yaml -------------------------------------------------------------------------------- /cfg_files/fit_smplh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/cfg_files/fit_smplh.yaml -------------------------------------------------------------------------------- /cfg_files/fit_smplx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/cfg_files/fit_smplx.yaml -------------------------------------------------------------------------------- /construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/construction.gif -------------------------------------------------------------------------------- /images/teaser_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/images/teaser_fig.png -------------------------------------------------------------------------------- /optional-requirements.txt: -------------------------------------------------------------------------------- 1 | pyrender>=0.1.23 2 | shapely 3 | trimesh>=2.37.6 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/requirements.txt -------------------------------------------------------------------------------- /smplifyx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/__init__.py -------------------------------------------------------------------------------- /smplifyx/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/camera.py -------------------------------------------------------------------------------- /smplifyx/cmd_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/cmd_parser.py -------------------------------------------------------------------------------- /smplifyx/data_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/data_parser.py -------------------------------------------------------------------------------- /smplifyx/easy_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/easy_configuration.py -------------------------------------------------------------------------------- /smplifyx/easy_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/easy_run.py -------------------------------------------------------------------------------- /smplifyx/fit_single_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/fit_single_frame.py -------------------------------------------------------------------------------- /smplifyx/fitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/fitting.py -------------------------------------------------------------------------------- /smplifyx/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/main.py -------------------------------------------------------------------------------- /smplifyx/mesh_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/mesh_viewer.py -------------------------------------------------------------------------------- /smplifyx/mesh_viewer_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/mesh_viewer_background.py -------------------------------------------------------------------------------- /smplifyx/openpose_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/openpose_wrapper.py -------------------------------------------------------------------------------- /smplifyx/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/optimizers/__init__.py -------------------------------------------------------------------------------- /smplifyx/optimizers/lbfgs_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/optimizers/lbfgs_ls.py -------------------------------------------------------------------------------- /smplifyx/optimizers/optim_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/optimizers/optim_factory.py -------------------------------------------------------------------------------- /smplifyx/prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/prior.py -------------------------------------------------------------------------------- /smplifyx/render_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/render_results.py -------------------------------------------------------------------------------- /smplifyx/rendering_poses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/rendering_poses.py -------------------------------------------------------------------------------- /smplifyx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ortegatron/playing_smplifyx/HEAD/smplifyx/utils.py --------------------------------------------------------------------------------