├── CharmNet ├── data │ ├── __init__.py │ ├── base_dataset.py │ ├── real_dataset.py │ └── rendered_dataset.py ├── models │ ├── __init__.py │ ├── base_model.py │ ├── dastyle_model.py │ └── networks.py ├── options │ ├── __init__.py │ ├── base_options.py │ ├── test_options.py │ └── train_options.py ├── requirements.txt ├── test.py ├── test_save.py ├── train.py └── util │ ├── __init__.py │ ├── html.py │ ├── image_pool.py │ ├── losses.py │ ├── pytorch_ssim.py │ ├── spectral_norm.py │ ├── util.py │ └── visualizer.py ├── README.md └── examples ├── dataset_examples.jpg ├── dataset_examples_r5_1.png ├── dataset_examples_r5_2.jpg ├── dataset_examples_r5_2.png ├── dataset_generation.jpg ├── dataset_triplet.png └── groundtruth_example.jpg /CharmNet/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/data/__init__.py -------------------------------------------------------------------------------- /CharmNet/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/data/base_dataset.py -------------------------------------------------------------------------------- /CharmNet/data/real_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/data/real_dataset.py -------------------------------------------------------------------------------- /CharmNet/data/rendered_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/data/rendered_dataset.py -------------------------------------------------------------------------------- /CharmNet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/models/__init__.py -------------------------------------------------------------------------------- /CharmNet/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/models/base_model.py -------------------------------------------------------------------------------- /CharmNet/models/dastyle_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/models/dastyle_model.py -------------------------------------------------------------------------------- /CharmNet/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/models/networks.py -------------------------------------------------------------------------------- /CharmNet/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/options/__init__.py -------------------------------------------------------------------------------- /CharmNet/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/options/base_options.py -------------------------------------------------------------------------------- /CharmNet/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/options/test_options.py -------------------------------------------------------------------------------- /CharmNet/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/options/train_options.py -------------------------------------------------------------------------------- /CharmNet/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/requirements.txt -------------------------------------------------------------------------------- /CharmNet/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/test.py -------------------------------------------------------------------------------- /CharmNet/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/test_save.py -------------------------------------------------------------------------------- /CharmNet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/train.py -------------------------------------------------------------------------------- /CharmNet/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/util/__init__.py -------------------------------------------------------------------------------- /CharmNet/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/util/html.py -------------------------------------------------------------------------------- /CharmNet/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/util/image_pool.py -------------------------------------------------------------------------------- /CharmNet/util/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/util/losses.py -------------------------------------------------------------------------------- /CharmNet/util/pytorch_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/util/pytorch_ssim.py -------------------------------------------------------------------------------- /CharmNet/util/spectral_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/util/spectral_norm.py -------------------------------------------------------------------------------- /CharmNet/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/util/util.py -------------------------------------------------------------------------------- /CharmNet/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/CharmNet/util/visualizer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/README.md -------------------------------------------------------------------------------- /examples/dataset_examples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/examples/dataset_examples.jpg -------------------------------------------------------------------------------- /examples/dataset_examples_r5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/examples/dataset_examples_r5_1.png -------------------------------------------------------------------------------- /examples/dataset_examples_r5_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/examples/dataset_examples_r5_2.jpg -------------------------------------------------------------------------------- /examples/dataset_examples_r5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/examples/dataset_examples_r5_2.png -------------------------------------------------------------------------------- /examples/dataset_generation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/examples/dataset_generation.jpg -------------------------------------------------------------------------------- /examples/dataset_triplet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/examples/dataset_triplet.png -------------------------------------------------------------------------------- /examples/groundtruth_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/Rendered-Image-Harmonization-Dataset-RdHarmony/HEAD/examples/groundtruth_example.jpg --------------------------------------------------------------------------------