├── DRBL-stage1 └── src │ ├── data │ ├── __init__.py │ ├── benchmark.py │ ├── common.py │ ├── demo.py │ ├── div2k.py │ ├── lowlight.py │ ├── lowlighttest.py │ ├── normaldata.py │ ├── rainheavy.py │ ├── rainlighttest.py │ └── srdata.py │ ├── dataloader.py │ ├── demo.sh │ ├── loss │ ├── __init__.py │ ├── adversarial.py │ ├── discriminator.py │ └── vgg.py │ ├── main.py │ ├── main_test.py │ ├── model │ ├── __init__.py │ ├── common.py │ ├── ddbpn.py │ ├── drbn.py │ ├── edsr.py │ ├── mdsr.py │ ├── rcan.py │ ├── sm.py │ └── wave_rdn.py │ ├── option.py │ ├── pretrain │ └── model_s1.pt │ ├── pytorch_ssim │ ├── __init__.py │ └── __init__.pyc │ ├── template.py │ ├── test.sh │ ├── train.sh │ ├── trainer.py │ └── utility.py ├── DRBL-stage2-LOL └── src │ ├── data │ ├── __init__.py │ ├── benchmark.py │ ├── common.py │ ├── demo.py │ ├── div2k.py │ ├── lowlight.py │ ├── lowlighttest.py │ ├── normaldata.py │ ├── rainheavy.py │ ├── rainlighttest.py │ └── srdata.py │ ├── dataloader.py │ ├── loss │ ├── __init__.py │ ├── adversarial.py │ ├── discriminator.py │ └── vgg.py │ ├── main.py │ ├── main_test.py │ ├── model │ ├── __init__.py │ ├── common.py │ ├── ddbpn.py │ ├── discriminator.py │ ├── drbn.py │ ├── edsr.py │ ├── mdsr.py │ ├── rcan.py │ ├── recompose.py │ ├── sm.py │ └── wave_rdn.py │ ├── option.py │ ├── pretrained │ └── model_s1.pt │ ├── pytorch_ssim │ ├── __init__.py │ ├── __init__.pyc │ └── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ └── __init__.cpython-36.pyc │ ├── template.py │ ├── test.sh │ ├── train.sh │ ├── trainer.py │ ├── trainer_test.py │ └── utility.py ├── DRBL-stage2-other-datasets └── src │ ├── data │ ├── __init__.py │ ├── benchmark.py │ ├── common.py │ ├── demo.py │ ├── div2k.py │ ├── lowlight.py │ ├── lowlighttest.py │ ├── normaldata.py │ ├── rainheavy.py │ ├── rainlighttest.py │ └── srdata.py │ ├── dataloader.py │ ├── demo.sh │ ├── loss │ ├── __init__.py │ ├── adversarial.py │ ├── discriminator.py │ └── vgg.py │ ├── main.py │ ├── main_test.py │ ├── model │ ├── __init__.py │ ├── common.py │ ├── ddbpn.py │ ├── discriminator.py │ ├── drbn.py │ ├── edsr.py │ ├── mdsr.py │ ├── rcan.py │ ├── recompose.py │ ├── sm.py │ └── wave_rdn.py │ ├── option.py │ ├── pretrain │ ├── model_D_s2.pt │ ├── model_R_s2.pt │ └── model_s2.pt │ ├── pretrained │ └── model_s1.pt │ ├── pytorch_ssim │ ├── __init__.py │ └── __init__.pyc │ ├── template.py │ ├── test.sh │ ├── train.sh │ ├── trainer.py │ ├── trainer_test.py │ └── utility.py ├── README.md └── teaser ├── teaser_DRBN.png └── tmp.txt /DRBL-stage1/src/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/__init__.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/benchmark.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/common.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/demo.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/div2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/div2k.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/lowlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/lowlight.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/lowlighttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/lowlighttest.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/normaldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/normaldata.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/rainheavy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/rainheavy.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/rainlighttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/rainlighttest.py -------------------------------------------------------------------------------- /DRBL-stage1/src/data/srdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/data/srdata.py -------------------------------------------------------------------------------- /DRBL-stage1/src/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/dataloader.py -------------------------------------------------------------------------------- /DRBL-stage1/src/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/demo.sh -------------------------------------------------------------------------------- /DRBL-stage1/src/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/loss/__init__.py -------------------------------------------------------------------------------- /DRBL-stage1/src/loss/adversarial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/loss/adversarial.py -------------------------------------------------------------------------------- /DRBL-stage1/src/loss/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/loss/discriminator.py -------------------------------------------------------------------------------- /DRBL-stage1/src/loss/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/loss/vgg.py -------------------------------------------------------------------------------- /DRBL-stage1/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/main.py -------------------------------------------------------------------------------- /DRBL-stage1/src/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/main_test.py -------------------------------------------------------------------------------- /DRBL-stage1/src/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/model/__init__.py -------------------------------------------------------------------------------- /DRBL-stage1/src/model/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/model/common.py -------------------------------------------------------------------------------- /DRBL-stage1/src/model/ddbpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/model/ddbpn.py -------------------------------------------------------------------------------- /DRBL-stage1/src/model/drbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/model/drbn.py -------------------------------------------------------------------------------- /DRBL-stage1/src/model/edsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/model/edsr.py -------------------------------------------------------------------------------- /DRBL-stage1/src/model/mdsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/model/mdsr.py -------------------------------------------------------------------------------- /DRBL-stage1/src/model/rcan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/model/rcan.py -------------------------------------------------------------------------------- /DRBL-stage1/src/model/sm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/model/sm.py -------------------------------------------------------------------------------- /DRBL-stage1/src/model/wave_rdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/model/wave_rdn.py -------------------------------------------------------------------------------- /DRBL-stage1/src/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/option.py -------------------------------------------------------------------------------- /DRBL-stage1/src/pretrain/model_s1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/pretrain/model_s1.pt -------------------------------------------------------------------------------- /DRBL-stage1/src/pytorch_ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/pytorch_ssim/__init__.py -------------------------------------------------------------------------------- /DRBL-stage1/src/pytorch_ssim/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/pytorch_ssim/__init__.pyc -------------------------------------------------------------------------------- /DRBL-stage1/src/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/template.py -------------------------------------------------------------------------------- /DRBL-stage1/src/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/test.sh -------------------------------------------------------------------------------- /DRBL-stage1/src/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/train.sh -------------------------------------------------------------------------------- /DRBL-stage1/src/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/trainer.py -------------------------------------------------------------------------------- /DRBL-stage1/src/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage1/src/utility.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/__init__.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/benchmark.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/common.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/demo.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/div2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/div2k.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/lowlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/lowlight.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/lowlighttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/lowlighttest.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/normaldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/normaldata.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/rainheavy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/rainheavy.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/rainlighttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/rainlighttest.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/data/srdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/data/srdata.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/dataloader.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/loss/__init__.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/loss/adversarial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/loss/adversarial.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/loss/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/loss/discriminator.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/loss/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/loss/vgg.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/main.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/main_test.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/__init__.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/common.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/ddbpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/ddbpn.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/discriminator.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/drbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/drbn.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/edsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/edsr.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/mdsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/mdsr.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/rcan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/rcan.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/recompose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/recompose.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/sm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/sm.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/model/wave_rdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/model/wave_rdn.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/option.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/pretrained/model_s1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/pretrained/model_s1.pt -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/pytorch_ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/pytorch_ssim/__init__.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/pytorch_ssim/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/pytorch_ssim/__init__.pyc -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/pytorch_ssim/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/pytorch_ssim/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/pytorch_ssim/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/pytorch_ssim/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/template.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/test.sh -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/train.sh -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/trainer.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/trainer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/trainer_test.py -------------------------------------------------------------------------------- /DRBL-stage2-LOL/src/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-LOL/src/utility.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/__init__.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/benchmark.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/common.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/demo.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/div2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/div2k.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/lowlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/lowlight.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/lowlighttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/lowlighttest.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/normaldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/normaldata.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/rainheavy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/rainheavy.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/rainlighttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/rainlighttest.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/data/srdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/data/srdata.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/dataloader.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/demo.sh -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/loss/__init__.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/loss/adversarial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/loss/adversarial.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/loss/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/loss/discriminator.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/loss/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/loss/vgg.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/main.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/main_test.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/__init__.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/common.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/ddbpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/ddbpn.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/discriminator.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/drbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/drbn.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/edsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/edsr.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/mdsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/mdsr.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/rcan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/rcan.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/recompose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/recompose.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/sm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/sm.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/model/wave_rdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/model/wave_rdn.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/option.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/pretrain/model_D_s2.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/pretrain/model_D_s2.pt -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/pretrain/model_R_s2.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/pretrain/model_R_s2.pt -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/pretrain/model_s2.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/pretrain/model_s2.pt -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/pretrained/model_s1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/pretrained/model_s1.pt -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/pytorch_ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/pytorch_ssim/__init__.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/pytorch_ssim/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/pytorch_ssim/__init__.pyc -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/template.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/test.sh -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/train.sh -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/trainer.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/trainer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/trainer_test.py -------------------------------------------------------------------------------- /DRBL-stage2-other-datasets/src/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/DRBL-stage2-other-datasets/src/utility.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/README.md -------------------------------------------------------------------------------- /teaser/teaser_DRBN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyywh/CVPR-2020-Semi-Low-Light/HEAD/teaser/teaser_DRBN.png -------------------------------------------------------------------------------- /teaser/tmp.txt: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------