├── README.md ├── assets ├── J_regressor.pkl ├── allTemplate_withBoundaries_symm.pkl ├── garment_fts.pkl ├── hresMapping.pkl ├── mean_a_pose.npy ├── smpl_vt_ft.pkl └── vert_spread.pkl ├── config_ver1.py ├── dress_SMPL.py ├── lib ├── __init__.py ├── ch.py ├── ch_smpl.py ├── geometry.py ├── lbs.py ├── posemapper.py ├── serialization.py └── verts.py ├── mesh ├── __init__.py └── geometry.py ├── network ├── __init__.py ├── base_network.py └── custom_layers.py ├── render ├── __init__.py ├── generic_renderer.py └── lighting.py ├── smpl ├── __init__.py ├── batch_lbs.py ├── batch_smpl.py └── smpl_layer.py ├── test_network.py ├── utils ├── __init__.py ├── geometry.py ├── interpenetration_ind.py └── smpl_paths.py ├── visualize_garments.py └── visualize_scan.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/README.md -------------------------------------------------------------------------------- /assets/J_regressor.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/assets/J_regressor.pkl -------------------------------------------------------------------------------- /assets/allTemplate_withBoundaries_symm.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/assets/allTemplate_withBoundaries_symm.pkl -------------------------------------------------------------------------------- /assets/garment_fts.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/assets/garment_fts.pkl -------------------------------------------------------------------------------- /assets/hresMapping.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/assets/hresMapping.pkl -------------------------------------------------------------------------------- /assets/mean_a_pose.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/assets/mean_a_pose.npy -------------------------------------------------------------------------------- /assets/smpl_vt_ft.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/assets/smpl_vt_ft.pkl -------------------------------------------------------------------------------- /assets/vert_spread.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/assets/vert_spread.pkl -------------------------------------------------------------------------------- /config_ver1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/config_ver1.py -------------------------------------------------------------------------------- /dress_SMPL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/dress_SMPL.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/lib/ch.py -------------------------------------------------------------------------------- /lib/ch_smpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/lib/ch_smpl.py -------------------------------------------------------------------------------- /lib/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/lib/geometry.py -------------------------------------------------------------------------------- /lib/lbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/lib/lbs.py -------------------------------------------------------------------------------- /lib/posemapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/lib/posemapper.py -------------------------------------------------------------------------------- /lib/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/lib/serialization.py -------------------------------------------------------------------------------- /lib/verts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/lib/verts.py -------------------------------------------------------------------------------- /mesh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesh/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/mesh/geometry.py -------------------------------------------------------------------------------- /network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/base_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/network/base_network.py -------------------------------------------------------------------------------- /network/custom_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/network/custom_layers.py -------------------------------------------------------------------------------- /render/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /render/generic_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/render/generic_renderer.py -------------------------------------------------------------------------------- /render/lighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/render/lighting.py -------------------------------------------------------------------------------- /smpl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smpl/batch_lbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/smpl/batch_lbs.py -------------------------------------------------------------------------------- /smpl/batch_smpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/smpl/batch_smpl.py -------------------------------------------------------------------------------- /smpl/smpl_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/smpl/smpl_layer.py -------------------------------------------------------------------------------- /test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/test_network.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/utils/geometry.py -------------------------------------------------------------------------------- /utils/interpenetration_ind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/utils/interpenetration_ind.py -------------------------------------------------------------------------------- /utils/smpl_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/utils/smpl_paths.py -------------------------------------------------------------------------------- /visualize_garments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/visualize_garments.py -------------------------------------------------------------------------------- /visualize_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharat-b7/MultiGarmentNetwork/HEAD/visualize_scan.py --------------------------------------------------------------------------------