├── .gitignore ├── README.md ├── dat.pkl ├── data ├── __init__.py ├── aligned_dataset.py ├── base_data_loader.py ├── base_dataset.py ├── custom_dataset_data_loader.py ├── data_loader.py └── image_folder.py ├── encode_features.py ├── extract_pose_shape.py ├── imgs ├── generated_garments.jpg └── retargeted_garments.jpg ├── models ├── __init__.py ├── base_model.py ├── models.py ├── networks.py ├── pix2pixHD_model.py └── ui_model.py ├── options ├── __init__.py ├── base_options.py ├── test_options.py └── train_options.py ├── precompute_feature_maps.py ├── prepare_data.py ├── reconstruction ├── CMakeLists.txt ├── batch_process.sh ├── new_enc.cpp └── util.hpp ├── run_engine.py ├── scripts ├── batch_process_multithread.sh ├── batch_process_singlethread.sh ├── test_1024p.sh ├── test_1024p_feat.sh ├── test_512p.sh ├── test_512p_feat.sh ├── train_1024p_12G.sh ├── train_1024p_24G.sh ├── train_1024p_feat_12G.sh ├── train_1024p_feat_24G.sh ├── train_512p.sh ├── train_512p_feat.sh ├── train_512p_fp16.sh ├── train_512p_fp16_multigpu.sh └── train_512p_multigpu.sh ├── test.py ├── train.py └── util ├── __init__.py ├── compute_maps.py ├── html.py ├── image_pool.py ├── util.py └── visualizer.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.gif 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/README.md -------------------------------------------------------------------------------- /dat.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/dat.pkl -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/data/aligned_dataset.py -------------------------------------------------------------------------------- /data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/data/base_data_loader.py -------------------------------------------------------------------------------- /data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/data/base_dataset.py -------------------------------------------------------------------------------- /data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/data/data_loader.py -------------------------------------------------------------------------------- /data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/data/image_folder.py -------------------------------------------------------------------------------- /encode_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/encode_features.py -------------------------------------------------------------------------------- /extract_pose_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/extract_pose_shape.py -------------------------------------------------------------------------------- /imgs/generated_garments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/imgs/generated_garments.jpg -------------------------------------------------------------------------------- /imgs/retargeted_garments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/imgs/retargeted_garments.jpg -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/models/models.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/pix2pixHD_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/models/pix2pixHD_model.py -------------------------------------------------------------------------------- /models/ui_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/models/ui_model.py -------------------------------------------------------------------------------- /options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/options/test_options.py -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/options/train_options.py -------------------------------------------------------------------------------- /precompute_feature_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/precompute_feature_maps.py -------------------------------------------------------------------------------- /prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/prepare_data.py -------------------------------------------------------------------------------- /reconstruction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/reconstruction/CMakeLists.txt -------------------------------------------------------------------------------- /reconstruction/batch_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/reconstruction/batch_process.sh -------------------------------------------------------------------------------- /reconstruction/new_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/reconstruction/new_enc.cpp -------------------------------------------------------------------------------- /reconstruction/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/reconstruction/util.hpp -------------------------------------------------------------------------------- /run_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/run_engine.py -------------------------------------------------------------------------------- /scripts/batch_process_multithread.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/batch_process_multithread.sh -------------------------------------------------------------------------------- /scripts/batch_process_singlethread.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/batch_process_singlethread.sh -------------------------------------------------------------------------------- /scripts/test_1024p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/test_1024p.sh -------------------------------------------------------------------------------- /scripts/test_1024p_feat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/test_1024p_feat.sh -------------------------------------------------------------------------------- /scripts/test_512p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/test_512p.sh -------------------------------------------------------------------------------- /scripts/test_512p_feat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/test_512p_feat.sh -------------------------------------------------------------------------------- /scripts/train_1024p_12G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/train_1024p_12G.sh -------------------------------------------------------------------------------- /scripts/train_1024p_24G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/train_1024p_24G.sh -------------------------------------------------------------------------------- /scripts/train_1024p_feat_12G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/train_1024p_feat_12G.sh -------------------------------------------------------------------------------- /scripts/train_1024p_feat_24G.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/train_1024p_feat_24G.sh -------------------------------------------------------------------------------- /scripts/train_512p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/train_512p.sh -------------------------------------------------------------------------------- /scripts/train_512p_feat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/train_512p_feat.sh -------------------------------------------------------------------------------- /scripts/train_512p_fp16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/train_512p_fp16.sh -------------------------------------------------------------------------------- /scripts/train_512p_fp16_multigpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/train_512p_fp16_multigpu.sh -------------------------------------------------------------------------------- /scripts/train_512p_multigpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/scripts/train_512p_multigpu.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/train.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/compute_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/util/compute_maps.py -------------------------------------------------------------------------------- /util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/util/html.py -------------------------------------------------------------------------------- /util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/util/image_pool.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/util/util.py -------------------------------------------------------------------------------- /util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuShen0118/Garment_Generation/HEAD/util/visualizer.py --------------------------------------------------------------------------------