├── .gitignore ├── README.md ├── data ├── __init__.py ├── aligned_dataset.py ├── base_dataset.py ├── colorization_dataset.py ├── image_folder.py ├── paired_dataset.py ├── simple_bedde_dataset.py ├── simple_paired_dataset.py ├── single_dataset.py ├── template_dataset.py ├── unaligned_dataset.py └── unpaired_dataset.py ├── datasets ├── BeDDE │ ├── bedde_list.txt │ └── gen_bedde_list.py ├── figures │ ├── framework_github.jpg │ ├── framework_github2.jpg │ └── outdoor_com_github.jpg └── quick_test │ └── testA │ ├── 01.png │ ├── 02.png │ └── 03.png ├── models ├── __init__.py ├── base_model.py ├── basic_dehaze_model.py ├── colorization_model.py ├── cycle_gan_model.py ├── networks.py ├── pix2pix_model.py ├── refined_DCP_model.py ├── template_model.py └── test_model.py ├── options ├── __init__.py ├── base_options.py ├── test_options.py └── train_options.py ├── quick_test.py ├── test_BeDDE.py ├── train.py └── util ├── __init__.py ├── get_data.py ├── html.py ├── image_pool.py ├── util.py └── visualizer.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/aligned_dataset.py -------------------------------------------------------------------------------- /data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/base_dataset.py -------------------------------------------------------------------------------- /data/colorization_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/colorization_dataset.py -------------------------------------------------------------------------------- /data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/image_folder.py -------------------------------------------------------------------------------- /data/paired_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/paired_dataset.py -------------------------------------------------------------------------------- /data/simple_bedde_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/simple_bedde_dataset.py -------------------------------------------------------------------------------- /data/simple_paired_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/simple_paired_dataset.py -------------------------------------------------------------------------------- /data/single_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/single_dataset.py -------------------------------------------------------------------------------- /data/template_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/template_dataset.py -------------------------------------------------------------------------------- /data/unaligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/unaligned_dataset.py -------------------------------------------------------------------------------- /data/unpaired_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/data/unpaired_dataset.py -------------------------------------------------------------------------------- /datasets/BeDDE/bedde_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/datasets/BeDDE/bedde_list.txt -------------------------------------------------------------------------------- /datasets/BeDDE/gen_bedde_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/datasets/BeDDE/gen_bedde_list.py -------------------------------------------------------------------------------- /datasets/figures/framework_github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/datasets/figures/framework_github.jpg -------------------------------------------------------------------------------- /datasets/figures/framework_github2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/datasets/figures/framework_github2.jpg -------------------------------------------------------------------------------- /datasets/figures/outdoor_com_github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/datasets/figures/outdoor_com_github.jpg -------------------------------------------------------------------------------- /datasets/quick_test/testA/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/datasets/quick_test/testA/01.png -------------------------------------------------------------------------------- /datasets/quick_test/testA/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/datasets/quick_test/testA/02.png -------------------------------------------------------------------------------- /datasets/quick_test/testA/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/datasets/quick_test/testA/03.png -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/basic_dehaze_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/basic_dehaze_model.py -------------------------------------------------------------------------------- /models/colorization_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/colorization_model.py -------------------------------------------------------------------------------- /models/cycle_gan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/cycle_gan_model.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/pix2pix_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/pix2pix_model.py -------------------------------------------------------------------------------- /models/refined_DCP_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/refined_DCP_model.py -------------------------------------------------------------------------------- /models/template_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/template_model.py -------------------------------------------------------------------------------- /models/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/models/test_model.py -------------------------------------------------------------------------------- /options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/options/__init__.py -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/options/test_options.py -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/options/train_options.py -------------------------------------------------------------------------------- /quick_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/quick_test.py -------------------------------------------------------------------------------- /test_BeDDE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/test_BeDDE.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/train.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/util/__init__.py -------------------------------------------------------------------------------- /util/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/util/get_data.py -------------------------------------------------------------------------------- /util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/util/html.py -------------------------------------------------------------------------------- /util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/util/image_pool.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/util/util.py -------------------------------------------------------------------------------- /util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaofeng94/RefineDNet-for-dehazing/HEAD/util/visualizer.py --------------------------------------------------------------------------------