├── Figs ├── 23_table.PNG ├── 3x.PNG ├── 48_table.PNG ├── 4x.PNG ├── 8x.PNG ├── BD_table.PNG ├── BSDNoisy.PNG ├── Figures ├── LapAtt.PNG ├── Net.PNG ├── front.PNG ├── lamaNoisy.PNG ├── noiseplot.PNG └── real.PNG ├── LICENSE ├── README.md └── TestCode ├── HR └── Set5 │ └── x2 │ ├── baby_HR_x2.png │ ├── bird_HR_x2.png │ ├── butterfly_HR_x2.png │ ├── head_HR_x2.png │ └── woman_HR_x2.png ├── LR ├── LRBD │ └── Set5 │ │ └── x3 │ │ ├── Del.txt │ │ ├── baby_LRBD_x3.png │ │ ├── bird_LRBD_x3.png │ │ ├── butterfly_LRBD_x3.png │ │ ├── head_LRBD_x3.png │ │ └── woman_LRBD_x3.png └── LRBI │ └── Set5 │ └── x2 │ ├── Del.txt │ ├── baby_LRBI_x2.png │ ├── bird_LRBI_x2.png │ ├── butterfly_LRBI_x2.png │ ├── head_LRBI_x2.png │ └── woman_LRBI_x2.png ├── ReadMe.txt ├── TrainedModels └── ReadMe.txt └── code ├── TestDRLN_2x.sh ├── TestDRLN_3x.sh ├── TestDRLN_3x_BD.sh ├── TestDRLN_4x.sh ├── TestDRLN_8x.sh ├── TestDRLN_All.sh ├── __init__.py ├── data ├── __init__.py ├── benchmark.py ├── common.py ├── demo.py ├── div2k.py ├── myimage.py └── srdata.py ├── dataloader.py ├── loss ├── __init__.py ├── adversarial.py ├── discriminator.py └── vgg.py ├── main.py ├── model ├── __init__.py ├── common.py ├── drln.py └── ops.py ├── option.py ├── template.py ├── trainer.py └── utility.py /Figs/23_table.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/23_table.PNG -------------------------------------------------------------------------------- /Figs/3x.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/3x.PNG -------------------------------------------------------------------------------- /Figs/48_table.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/48_table.PNG -------------------------------------------------------------------------------- /Figs/4x.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/4x.PNG -------------------------------------------------------------------------------- /Figs/8x.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/8x.PNG -------------------------------------------------------------------------------- /Figs/BD_table.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/BD_table.PNG -------------------------------------------------------------------------------- /Figs/BSDNoisy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/BSDNoisy.PNG -------------------------------------------------------------------------------- /Figs/Figures: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Figs/LapAtt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/LapAtt.PNG -------------------------------------------------------------------------------- /Figs/Net.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/Net.PNG -------------------------------------------------------------------------------- /Figs/front.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/front.PNG -------------------------------------------------------------------------------- /Figs/lamaNoisy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/lamaNoisy.PNG -------------------------------------------------------------------------------- /Figs/noiseplot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/noiseplot.PNG -------------------------------------------------------------------------------- /Figs/real.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/Figs/real.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/README.md -------------------------------------------------------------------------------- /TestCode/HR/Set5/x2/baby_HR_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/HR/Set5/x2/baby_HR_x2.png -------------------------------------------------------------------------------- /TestCode/HR/Set5/x2/bird_HR_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/HR/Set5/x2/bird_HR_x2.png -------------------------------------------------------------------------------- /TestCode/HR/Set5/x2/butterfly_HR_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/HR/Set5/x2/butterfly_HR_x2.png -------------------------------------------------------------------------------- /TestCode/HR/Set5/x2/head_HR_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/HR/Set5/x2/head_HR_x2.png -------------------------------------------------------------------------------- /TestCode/HR/Set5/x2/woman_HR_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/HR/Set5/x2/woman_HR_x2.png -------------------------------------------------------------------------------- /TestCode/LR/LRBD/Set5/x3/Del.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TestCode/LR/LRBD/Set5/x3/baby_LRBD_x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBD/Set5/x3/baby_LRBD_x3.png -------------------------------------------------------------------------------- /TestCode/LR/LRBD/Set5/x3/bird_LRBD_x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBD/Set5/x3/bird_LRBD_x3.png -------------------------------------------------------------------------------- /TestCode/LR/LRBD/Set5/x3/butterfly_LRBD_x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBD/Set5/x3/butterfly_LRBD_x3.png -------------------------------------------------------------------------------- /TestCode/LR/LRBD/Set5/x3/head_LRBD_x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBD/Set5/x3/head_LRBD_x3.png -------------------------------------------------------------------------------- /TestCode/LR/LRBD/Set5/x3/woman_LRBD_x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBD/Set5/x3/woman_LRBD_x3.png -------------------------------------------------------------------------------- /TestCode/LR/LRBI/Set5/x2/Del.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TestCode/LR/LRBI/Set5/x2/baby_LRBI_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBI/Set5/x2/baby_LRBI_x2.png -------------------------------------------------------------------------------- /TestCode/LR/LRBI/Set5/x2/bird_LRBI_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBI/Set5/x2/bird_LRBI_x2.png -------------------------------------------------------------------------------- /TestCode/LR/LRBI/Set5/x2/butterfly_LRBI_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBI/Set5/x2/butterfly_LRBI_x2.png -------------------------------------------------------------------------------- /TestCode/LR/LRBI/Set5/x2/head_LRBI_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBI/Set5/x2/head_LRBI_x2.png -------------------------------------------------------------------------------- /TestCode/LR/LRBI/Set5/x2/woman_LRBI_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/LR/LRBI/Set5/x2/woman_LRBI_x2.png -------------------------------------------------------------------------------- /TestCode/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TestCode/TrainedModels/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/TrainedModels/ReadMe.txt -------------------------------------------------------------------------------- /TestCode/code/TestDRLN_2x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/TestDRLN_2x.sh -------------------------------------------------------------------------------- /TestCode/code/TestDRLN_3x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/TestDRLN_3x.sh -------------------------------------------------------------------------------- /TestCode/code/TestDRLN_3x_BD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/TestDRLN_3x_BD.sh -------------------------------------------------------------------------------- /TestCode/code/TestDRLN_4x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/TestDRLN_4x.sh -------------------------------------------------------------------------------- /TestCode/code/TestDRLN_8x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/TestDRLN_8x.sh -------------------------------------------------------------------------------- /TestCode/code/TestDRLN_All.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/TestDRLN_All.sh -------------------------------------------------------------------------------- /TestCode/code/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TestCode/code/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/data/__init__.py -------------------------------------------------------------------------------- /TestCode/code/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/data/benchmark.py -------------------------------------------------------------------------------- /TestCode/code/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/data/common.py -------------------------------------------------------------------------------- /TestCode/code/data/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/data/demo.py -------------------------------------------------------------------------------- /TestCode/code/data/div2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/data/div2k.py -------------------------------------------------------------------------------- /TestCode/code/data/myimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/data/myimage.py -------------------------------------------------------------------------------- /TestCode/code/data/srdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/data/srdata.py -------------------------------------------------------------------------------- /TestCode/code/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/dataloader.py -------------------------------------------------------------------------------- /TestCode/code/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/loss/__init__.py -------------------------------------------------------------------------------- /TestCode/code/loss/adversarial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/loss/adversarial.py -------------------------------------------------------------------------------- /TestCode/code/loss/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/loss/discriminator.py -------------------------------------------------------------------------------- /TestCode/code/loss/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/loss/vgg.py -------------------------------------------------------------------------------- /TestCode/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/main.py -------------------------------------------------------------------------------- /TestCode/code/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/model/__init__.py -------------------------------------------------------------------------------- /TestCode/code/model/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/model/common.py -------------------------------------------------------------------------------- /TestCode/code/model/drln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/model/drln.py -------------------------------------------------------------------------------- /TestCode/code/model/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/model/ops.py -------------------------------------------------------------------------------- /TestCode/code/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/option.py -------------------------------------------------------------------------------- /TestCode/code/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/template.py -------------------------------------------------------------------------------- /TestCode/code/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/trainer.py -------------------------------------------------------------------------------- /TestCode/code/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/DRLN/HEAD/TestCode/code/utility.py --------------------------------------------------------------------------------