├── .gitignore ├── README.md ├── assets ├── geometry.png └── teaser.png ├── configs ├── canonical_transformer.txt └── h36m.txt ├── data ├── THuman_1_female_list.txt ├── THuman_1_human_list.txt ├── THuman_1_male_list.txt ├── f_T_template_tvertices.npy ├── f_X_template_tvertices.npy ├── m_T_template_tvertices.npy ├── m_X_template_tvertices.npy ├── n_T_template_tvertices.npy └── n_X_template_tvertices.npy ├── extract_thuman_mesh.py ├── lib ├── THuman_dataset.py ├── all_test.py ├── base_utils.py ├── correction.py ├── encoder.py ├── h36m_dataset.py ├── if_nerf_data_utils.py ├── mesh_animation_renderer.py ├── render_utils.py ├── run_nerf_helpers.py ├── skinnning_batch.py └── transformer.py ├── model_selection.py ├── parser_config.py ├── render_thuman_mesh.py ├── requirements.txt └── run_nerf_batch.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/README.md -------------------------------------------------------------------------------- /assets/geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/assets/geometry.png -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /configs/canonical_transformer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/configs/canonical_transformer.txt -------------------------------------------------------------------------------- /configs/h36m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/configs/h36m.txt -------------------------------------------------------------------------------- /data/THuman_1_female_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/data/THuman_1_female_list.txt -------------------------------------------------------------------------------- /data/THuman_1_human_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/data/THuman_1_human_list.txt -------------------------------------------------------------------------------- /data/THuman_1_male_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/data/THuman_1_male_list.txt -------------------------------------------------------------------------------- /data/f_T_template_tvertices.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/data/f_T_template_tvertices.npy -------------------------------------------------------------------------------- /data/f_X_template_tvertices.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/data/f_X_template_tvertices.npy -------------------------------------------------------------------------------- /data/m_T_template_tvertices.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/data/m_T_template_tvertices.npy -------------------------------------------------------------------------------- /data/m_X_template_tvertices.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/data/m_X_template_tvertices.npy -------------------------------------------------------------------------------- /data/n_T_template_tvertices.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/data/n_T_template_tvertices.npy -------------------------------------------------------------------------------- /data/n_X_template_tvertices.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/data/n_X_template_tvertices.npy -------------------------------------------------------------------------------- /extract_thuman_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/extract_thuman_mesh.py -------------------------------------------------------------------------------- /lib/THuman_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/THuman_dataset.py -------------------------------------------------------------------------------- /lib/all_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/all_test.py -------------------------------------------------------------------------------- /lib/base_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/base_utils.py -------------------------------------------------------------------------------- /lib/correction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/correction.py -------------------------------------------------------------------------------- /lib/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/encoder.py -------------------------------------------------------------------------------- /lib/h36m_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/h36m_dataset.py -------------------------------------------------------------------------------- /lib/if_nerf_data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/if_nerf_data_utils.py -------------------------------------------------------------------------------- /lib/mesh_animation_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/mesh_animation_renderer.py -------------------------------------------------------------------------------- /lib/render_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/render_utils.py -------------------------------------------------------------------------------- /lib/run_nerf_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/run_nerf_helpers.py -------------------------------------------------------------------------------- /lib/skinnning_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/skinnning_batch.py -------------------------------------------------------------------------------- /lib/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/lib/transformer.py -------------------------------------------------------------------------------- /model_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/model_selection.py -------------------------------------------------------------------------------- /parser_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/parser_config.py -------------------------------------------------------------------------------- /render_thuman_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/render_thuman_mesh.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_nerf_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaoxiangjun/MPS-NeRF/HEAD/run_nerf_batch.py --------------------------------------------------------------------------------