├── README.md ├── environment.yml ├── extra-data ├── body_info_f.npz └── pose-sample.pt ├── figs ├── pipeline.png └── teaser.png ├── marching_cube.py ├── models ├── __pycache__ │ ├── cbndec.cpython-38.pyc │ ├── coordsenc.cpython-38.pyc │ ├── lbs_mlp.cpython-38.pyc │ └── skip_network.cpython-38.pyc ├── cbndec.py ├── coordsenc.py ├── lbs_mlp.py └── skip_network.py ├── requirements.txt ├── script ├── generate.py └── interpolate.py ├── siren └── script │ ├── __pycache__ │ └── siren_file.cpython-38.pyc │ └── siren_file.py └── smpl_pytorch ├── __pycache__ ├── body_models.cpython-38.pyc ├── body_models.cpython-39.pyc ├── lbs.cpython-38.pyc ├── lbs.cpython-39.pyc ├── utils.cpython-38.pyc ├── utils.cpython-39.pyc ├── vertex_ids.cpython-38.pyc ├── vertex_ids.cpython-39.pyc ├── vertex_joint_selector.cpython-38.pyc └── vertex_joint_selector.cpython-39.pyc ├── body_models.py ├── smpl_server.py ├── utils.py └── vertex_ids.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/environment.yml -------------------------------------------------------------------------------- /extra-data/body_info_f.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/extra-data/body_info_f.npz -------------------------------------------------------------------------------- /extra-data/pose-sample.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/extra-data/pose-sample.pt -------------------------------------------------------------------------------- /figs/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/figs/pipeline.png -------------------------------------------------------------------------------- /figs/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/figs/teaser.png -------------------------------------------------------------------------------- /marching_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/marching_cube.py -------------------------------------------------------------------------------- /models/__pycache__/cbndec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/models/__pycache__/cbndec.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/coordsenc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/models/__pycache__/coordsenc.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/lbs_mlp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/models/__pycache__/lbs_mlp.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/skip_network.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/models/__pycache__/skip_network.cpython-38.pyc -------------------------------------------------------------------------------- /models/cbndec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/models/cbndec.py -------------------------------------------------------------------------------- /models/coordsenc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/models/coordsenc.py -------------------------------------------------------------------------------- /models/lbs_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/models/lbs_mlp.py -------------------------------------------------------------------------------- /models/skip_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/models/skip_network.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/script/generate.py -------------------------------------------------------------------------------- /script/interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/script/interpolate.py -------------------------------------------------------------------------------- /siren/script/__pycache__/siren_file.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/siren/script/__pycache__/siren_file.cpython-38.pyc -------------------------------------------------------------------------------- /siren/script/siren_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/siren/script/siren_file.py -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/body_models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/body_models.cpython-38.pyc -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/body_models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/body_models.cpython-39.pyc -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/lbs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/lbs.cpython-38.pyc -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/lbs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/lbs.cpython-39.pyc -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/vertex_ids.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/vertex_ids.cpython-38.pyc -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/vertex_ids.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/vertex_ids.cpython-39.pyc -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/vertex_joint_selector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/vertex_joint_selector.cpython-38.pyc -------------------------------------------------------------------------------- /smpl_pytorch/__pycache__/vertex_joint_selector.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/__pycache__/vertex_joint_selector.cpython-39.pyc -------------------------------------------------------------------------------- /smpl_pytorch/body_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/body_models.py -------------------------------------------------------------------------------- /smpl_pytorch/smpl_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/smpl_server.py -------------------------------------------------------------------------------- /smpl_pytorch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/utils.py -------------------------------------------------------------------------------- /smpl_pytorch/vertex_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/NeuralABC-code/HEAD/smpl_pytorch/vertex_ids.py --------------------------------------------------------------------------------