├── .gitignore ├── LICENSE ├── README.md ├── assets └── teaser.png ├── checkpoints └── .gitignore ├── datasets.py ├── datasets └── .gitignore ├── networks.py ├── test.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/README.md -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /checkpoints/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/checkpoints/.gitignore -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/datasets.py -------------------------------------------------------------------------------- /datasets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/datasets/.gitignore -------------------------------------------------------------------------------- /networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/networks.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/test.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadow2496/VITON-HD/HEAD/utils.py --------------------------------------------------------------------------------