├── README.md ├── extra-data ├── pose-beta-sample.pt ├── pretrained │ ├── blend_weight.pth │ ├── lbs_delta_pants.pth │ ├── lbs_delta_shirt.pth │ ├── lbs_pants.pth │ ├── lbs_shirt.pth │ ├── pants.pth │ ├── pants_rep.pth │ ├── sdf_body_f.pth │ ├── shirt.pth │ └── shirt_rep.pth └── shapedirs_f.npz ├── infer.py ├── misc └── front.png ├── models ├── README.md ├── __init__.py ├── model_sdf.py ├── model_skinning.py └── models.py ├── networks ├── IGR.py ├── __init__.py ├── lbs_mlp.py └── learnt_representations.py ├── options ├── base_options.py └── train_options.py ├── smpl_pytorch ├── body_models.py ├── lbs.py ├── smpl_server.py ├── utils.py ├── vertex_ids.py └── vertex_joint_selector.py └── utils ├── deform.py ├── sdf.py ├── tb_visualizer.py └── util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/README.md -------------------------------------------------------------------------------- /extra-data/pose-beta-sample.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pose-beta-sample.pt -------------------------------------------------------------------------------- /extra-data/pretrained/blend_weight.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/blend_weight.pth -------------------------------------------------------------------------------- /extra-data/pretrained/lbs_delta_pants.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/lbs_delta_pants.pth -------------------------------------------------------------------------------- /extra-data/pretrained/lbs_delta_shirt.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/lbs_delta_shirt.pth -------------------------------------------------------------------------------- /extra-data/pretrained/lbs_pants.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/lbs_pants.pth -------------------------------------------------------------------------------- /extra-data/pretrained/lbs_shirt.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/lbs_shirt.pth -------------------------------------------------------------------------------- /extra-data/pretrained/pants.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/pants.pth -------------------------------------------------------------------------------- /extra-data/pretrained/pants_rep.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/pants_rep.pth -------------------------------------------------------------------------------- /extra-data/pretrained/sdf_body_f.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/sdf_body_f.pth -------------------------------------------------------------------------------- /extra-data/pretrained/shirt.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/shirt.pth -------------------------------------------------------------------------------- /extra-data/pretrained/shirt_rep.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/pretrained/shirt_rep.pth -------------------------------------------------------------------------------- /extra-data/shapedirs_f.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/extra-data/shapedirs_f.npz -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/infer.py -------------------------------------------------------------------------------- /misc/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/misc/front.png -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/models/README.md -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/model_sdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/models/model_sdf.py -------------------------------------------------------------------------------- /models/model_skinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/models/model_skinning.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/models/models.py -------------------------------------------------------------------------------- /networks/IGR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/networks/IGR.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networks/lbs_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/networks/lbs_mlp.py -------------------------------------------------------------------------------- /networks/learnt_representations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/networks/learnt_representations.py -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/options/train_options.py -------------------------------------------------------------------------------- /smpl_pytorch/body_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/smpl_pytorch/body_models.py -------------------------------------------------------------------------------- /smpl_pytorch/lbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/smpl_pytorch/lbs.py -------------------------------------------------------------------------------- /smpl_pytorch/smpl_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/smpl_pytorch/smpl_server.py -------------------------------------------------------------------------------- /smpl_pytorch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/smpl_pytorch/utils.py -------------------------------------------------------------------------------- /smpl_pytorch/vertex_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/smpl_pytorch/vertex_ids.py -------------------------------------------------------------------------------- /smpl_pytorch/vertex_joint_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/smpl_pytorch/vertex_joint_selector.py -------------------------------------------------------------------------------- /utils/deform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/utils/deform.py -------------------------------------------------------------------------------- /utils/sdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/utils/sdf.py -------------------------------------------------------------------------------- /utils/tb_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/utils/tb_visualizer.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liren2515/DIG/HEAD/utils/util.py --------------------------------------------------------------------------------