├── PHDNet ├── data │ ├── __init__.py │ ├── base_dataset.py │ ├── cocoart_dataset.py │ └── phd_dataset.py ├── models │ ├── __init__.py │ ├── base_model.py │ ├── function.py │ ├── networks.py │ ├── normalize.py │ └── phdnet_model.py ├── options │ ├── __init__.py │ ├── base_options.py │ ├── test_options.py │ └── train_options.py ├── scripts │ ├── test_custom.sh │ ├── test_phd.sh │ └── train_phd.sh ├── test.py ├── test_custom.py ├── train.py └── util │ ├── __init__.py │ ├── config.py │ ├── html.py │ ├── image_pool.py │ ├── spectral_norm.py │ ├── util.py │ └── visualizer.py ├── README.md ├── examples ├── experimental_results.jpg └── introduction.png └── requirements.txt /PHDNet/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/data/__init__.py -------------------------------------------------------------------------------- /PHDNet/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/data/base_dataset.py -------------------------------------------------------------------------------- /PHDNet/data/cocoart_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/data/cocoart_dataset.py -------------------------------------------------------------------------------- /PHDNet/data/phd_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/data/phd_dataset.py -------------------------------------------------------------------------------- /PHDNet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/models/__init__.py -------------------------------------------------------------------------------- /PHDNet/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/models/base_model.py -------------------------------------------------------------------------------- /PHDNet/models/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/models/function.py -------------------------------------------------------------------------------- /PHDNet/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/models/networks.py -------------------------------------------------------------------------------- /PHDNet/models/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/models/normalize.py -------------------------------------------------------------------------------- /PHDNet/models/phdnet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/models/phdnet_model.py -------------------------------------------------------------------------------- /PHDNet/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/options/__init__.py -------------------------------------------------------------------------------- /PHDNet/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/options/base_options.py -------------------------------------------------------------------------------- /PHDNet/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/options/test_options.py -------------------------------------------------------------------------------- /PHDNet/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/options/train_options.py -------------------------------------------------------------------------------- /PHDNet/scripts/test_custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/scripts/test_custom.sh -------------------------------------------------------------------------------- /PHDNet/scripts/test_phd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/scripts/test_phd.sh -------------------------------------------------------------------------------- /PHDNet/scripts/train_phd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/scripts/train_phd.sh -------------------------------------------------------------------------------- /PHDNet/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/test.py -------------------------------------------------------------------------------- /PHDNet/test_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/test_custom.py -------------------------------------------------------------------------------- /PHDNet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/train.py -------------------------------------------------------------------------------- /PHDNet/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/util/__init__.py -------------------------------------------------------------------------------- /PHDNet/util/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/util/config.py -------------------------------------------------------------------------------- /PHDNet/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/util/html.py -------------------------------------------------------------------------------- /PHDNet/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/util/image_pool.py -------------------------------------------------------------------------------- /PHDNet/util/spectral_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/util/spectral_norm.py -------------------------------------------------------------------------------- /PHDNet/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/util/util.py -------------------------------------------------------------------------------- /PHDNet/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/PHDNet/util/visualizer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/README.md -------------------------------------------------------------------------------- /examples/experimental_results.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/examples/experimental_results.jpg -------------------------------------------------------------------------------- /examples/introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/examples/introduction.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/PHDNet-Painterly-Image-Harmonization/HEAD/requirements.txt --------------------------------------------------------------------------------