├── .gitignore ├── LICENSE ├── README.md ├── docs ├── liang_et_al_2022_self-supervised_low-light_image_enhancement_using_discrepant_untrained_network (suppl).pdf └── liang_et_al_2022_self-supervised_low-light_image_enhancement_using_discrepant_untrained_network.pdf ├── figs └── framework.png ├── images ├── input1.png └── input2.png ├── main.py ├── net ├── __init__.py ├── curve_model.py ├── decoder_model.py ├── layers.py ├── losses.py ├── noise.py └── skip_model.py ├── requirements.txt └── utils ├── __init__.py ├── image_io.py └── imresize.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | figs 3 | images 4 | output -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/README.md -------------------------------------------------------------------------------- /docs/liang_et_al_2022_self-supervised_low-light_image_enhancement_using_discrepant_untrained_network (suppl).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/docs/liang_et_al_2022_self-supervised_low-light_image_enhancement_using_discrepant_untrained_network (suppl).pdf -------------------------------------------------------------------------------- /docs/liang_et_al_2022_self-supervised_low-light_image_enhancement_using_discrepant_untrained_network.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/docs/liang_et_al_2022_self-supervised_low-light_image_enhancement_using_discrepant_untrained_network.pdf -------------------------------------------------------------------------------- /figs/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/figs/framework.png -------------------------------------------------------------------------------- /images/input1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/images/input1.png -------------------------------------------------------------------------------- /images/input2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/images/input2.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/main.py -------------------------------------------------------------------------------- /net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/curve_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/net/curve_model.py -------------------------------------------------------------------------------- /net/decoder_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/net/decoder_model.py -------------------------------------------------------------------------------- /net/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/net/layers.py -------------------------------------------------------------------------------- /net/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/net/losses.py -------------------------------------------------------------------------------- /net/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/net/noise.py -------------------------------------------------------------------------------- /net/skip_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/net/skip_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/image_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/utils/image_io.py -------------------------------------------------------------------------------- /utils/imresize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherrycattt/discrepant-untrained-nn-priors/HEAD/utils/imresize.py --------------------------------------------------------------------------------