├── .gitignore ├── LICENSE ├── README.md ├── convert_data.m ├── cp_dataset.py ├── data ├── test_pairs.txt └── train_pairs.txt ├── data_download.py ├── environment.yml ├── grid.png ├── human_colormap.mat ├── networks.py ├── result ├── gmm_test_example.png ├── gmm_train_example.png ├── tom_test_example.png └── tom_train_example.png ├── test.py ├── train.py └── visualization.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/README.md -------------------------------------------------------------------------------- /convert_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/convert_data.m -------------------------------------------------------------------------------- /cp_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/cp_dataset.py -------------------------------------------------------------------------------- /data/test_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/data/test_pairs.txt -------------------------------------------------------------------------------- /data/train_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/data/train_pairs.txt -------------------------------------------------------------------------------- /data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/data_download.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/environment.yml -------------------------------------------------------------------------------- /grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/grid.png -------------------------------------------------------------------------------- /human_colormap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/human_colormap.mat -------------------------------------------------------------------------------- /networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/networks.py -------------------------------------------------------------------------------- /result/gmm_test_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/result/gmm_test_example.png -------------------------------------------------------------------------------- /result/gmm_train_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/result/gmm_train_example.png -------------------------------------------------------------------------------- /result/tom_test_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/result/tom_test_example.png -------------------------------------------------------------------------------- /result/tom_train_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/result/tom_train_example.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/train.py -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergeywong/cp-vton/HEAD/visualization.py --------------------------------------------------------------------------------