├── README.md ├── checkpoints └── pretrained │ ├── loss_log.txt │ ├── test_opt.txt │ └── web │ ├── TestImages │ └── epoch_latest │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── 8.png │ └── index.html ├── data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── base_dataset.cpython-39.pyc │ └── cocoart_dataset.cpython-39.pyc ├── base_dataset.py └── cocoart_dataset.py ├── examples ├── comp │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ └── 8.jpg ├── mask │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ └── 8.png └── style │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ └── 8.jpg ├── figures └── result.jpg ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── base_model.cpython-39.pyc │ ├── networks.cpython-39.pyc │ └── vgg19hrnet_model.cpython-39.pyc ├── base_model.py ├── networks.py └── vgg19hrnet_model.py ├── options ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── base_options.cpython-39.pyc │ └── test_options.cpython-39.pyc ├── base_options.py ├── test_options.py └── train_options.py ├── output ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg └── 8.jpg ├── requirements.txt ├── scripts ├── test.sh └── train.sh ├── test.py ├── train.py └── util ├── __init__.py ├── __pycache__ ├── __init__.cpython-39.pyc ├── html.cpython-39.pyc ├── util.cpython-39.pyc └── visualizer.cpython-39.pyc ├── config.py ├── html.py ├── image_pool.py ├── spectral_norm.py ├── util.py └── visualizer.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/pretrained/loss_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/loss_log.txt -------------------------------------------------------------------------------- /checkpoints/pretrained/test_opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/test_opt.txt -------------------------------------------------------------------------------- /checkpoints/pretrained/web/TestImages/epoch_latest/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/web/TestImages/epoch_latest/1.png -------------------------------------------------------------------------------- /checkpoints/pretrained/web/TestImages/epoch_latest/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/web/TestImages/epoch_latest/2.png -------------------------------------------------------------------------------- /checkpoints/pretrained/web/TestImages/epoch_latest/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/web/TestImages/epoch_latest/3.png -------------------------------------------------------------------------------- /checkpoints/pretrained/web/TestImages/epoch_latest/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/web/TestImages/epoch_latest/4.png -------------------------------------------------------------------------------- /checkpoints/pretrained/web/TestImages/epoch_latest/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/web/TestImages/epoch_latest/5.png -------------------------------------------------------------------------------- /checkpoints/pretrained/web/TestImages/epoch_latest/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/web/TestImages/epoch_latest/6.png -------------------------------------------------------------------------------- /checkpoints/pretrained/web/TestImages/epoch_latest/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/web/TestImages/epoch_latest/7.png -------------------------------------------------------------------------------- /checkpoints/pretrained/web/TestImages/epoch_latest/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/web/TestImages/epoch_latest/8.png -------------------------------------------------------------------------------- /checkpoints/pretrained/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/checkpoints/pretrained/web/index.html -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/data/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /data/__pycache__/base_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/data/__pycache__/base_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /data/__pycache__/cocoart_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/data/__pycache__/cocoart_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/data/base_dataset.py -------------------------------------------------------------------------------- /data/cocoart_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/data/cocoart_dataset.py -------------------------------------------------------------------------------- /examples/comp/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/comp/1.jpg -------------------------------------------------------------------------------- /examples/comp/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/comp/2.jpg -------------------------------------------------------------------------------- /examples/comp/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/comp/3.jpg -------------------------------------------------------------------------------- /examples/comp/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/comp/4.jpg -------------------------------------------------------------------------------- /examples/comp/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/comp/5.jpg -------------------------------------------------------------------------------- /examples/comp/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/comp/6.jpg -------------------------------------------------------------------------------- /examples/comp/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/comp/7.jpg -------------------------------------------------------------------------------- /examples/comp/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/comp/8.jpg -------------------------------------------------------------------------------- /examples/mask/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/mask/1.png -------------------------------------------------------------------------------- /examples/mask/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/mask/2.png -------------------------------------------------------------------------------- /examples/mask/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/mask/3.png -------------------------------------------------------------------------------- /examples/mask/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/mask/4.png -------------------------------------------------------------------------------- /examples/mask/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/mask/5.png -------------------------------------------------------------------------------- /examples/mask/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/mask/6.png -------------------------------------------------------------------------------- /examples/mask/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/mask/7.png -------------------------------------------------------------------------------- /examples/mask/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/mask/8.png -------------------------------------------------------------------------------- /examples/style/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/style/1.jpg -------------------------------------------------------------------------------- /examples/style/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/style/2.jpg -------------------------------------------------------------------------------- /examples/style/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/style/3.jpg -------------------------------------------------------------------------------- /examples/style/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/style/4.jpg -------------------------------------------------------------------------------- /examples/style/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/style/5.jpg -------------------------------------------------------------------------------- /examples/style/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/style/6.jpg -------------------------------------------------------------------------------- /examples/style/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/style/7.jpg -------------------------------------------------------------------------------- /examples/style/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/examples/style/8.jpg -------------------------------------------------------------------------------- /figures/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/figures/result.jpg -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /models/__pycache__/base_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/models/__pycache__/base_model.cpython-39.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/models/__pycache__/networks.cpython-39.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg19hrnet_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/models/__pycache__/vgg19hrnet_model.cpython-39.pyc -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/vgg19hrnet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/models/vgg19hrnet_model.py -------------------------------------------------------------------------------- /options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/options/__init__.py -------------------------------------------------------------------------------- /options/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/options/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /options/__pycache__/base_options.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/options/__pycache__/base_options.cpython-39.pyc -------------------------------------------------------------------------------- /options/__pycache__/test_options.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/options/__pycache__/test_options.cpython-39.pyc -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/options/test_options.py -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/options/train_options.py -------------------------------------------------------------------------------- /output/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/output/1.jpg -------------------------------------------------------------------------------- /output/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/output/2.jpg -------------------------------------------------------------------------------- /output/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/output/3.jpg -------------------------------------------------------------------------------- /output/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/output/4.jpg -------------------------------------------------------------------------------- /output/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/output/5.jpg -------------------------------------------------------------------------------- /output/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/output/6.jpg -------------------------------------------------------------------------------- /output/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/output/7.jpg -------------------------------------------------------------------------------- /output/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/output/8.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/scripts/train.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/train.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/__init__.py -------------------------------------------------------------------------------- /util/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /util/__pycache__/html.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/__pycache__/html.cpython-39.pyc -------------------------------------------------------------------------------- /util/__pycache__/util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/__pycache__/util.cpython-39.pyc -------------------------------------------------------------------------------- /util/__pycache__/visualizer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/__pycache__/visualizer.cpython-39.pyc -------------------------------------------------------------------------------- /util/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/config.py -------------------------------------------------------------------------------- /util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/html.py -------------------------------------------------------------------------------- /util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/image_pool.py -------------------------------------------------------------------------------- /util/spectral_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/spectral_norm.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/util.py -------------------------------------------------------------------------------- /util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/ProPIH-Painterly-Image-Harmonization/HEAD/util/visualizer.py --------------------------------------------------------------------------------