├── Figs ├── DnD.PNG ├── DnD2.PNG ├── DnD3.PNG ├── DnDTable.PNG ├── FeatureAtt.PNG ├── Front.PNG ├── Net.PNG ├── RNI15.PNG ├── SSID.PNG ├── SSID2.PNG ├── SSID3.PNG └── SSIDTable.PNG ├── README.md └── TestCode ├── LR └── LRBI │ ├── RNI15 │ └── X1 │ │ ├── Audrey_Hepburn.jpg │ │ ├── Bears.png │ │ └── Dog.png │ └── temp ├── code ├── 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 │ ├── ops.py │ └── ridnet.py ├── option.py ├── template.py ├── trainer.py └── utility.py └── experiment └── ReadMe.txt /Figs/DnD.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/DnD.PNG -------------------------------------------------------------------------------- /Figs/DnD2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/DnD2.PNG -------------------------------------------------------------------------------- /Figs/DnD3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/DnD3.PNG -------------------------------------------------------------------------------- /Figs/DnDTable.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/DnDTable.PNG -------------------------------------------------------------------------------- /Figs/FeatureAtt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/FeatureAtt.PNG -------------------------------------------------------------------------------- /Figs/Front.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/Front.PNG -------------------------------------------------------------------------------- /Figs/Net.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/Net.PNG -------------------------------------------------------------------------------- /Figs/RNI15.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/RNI15.PNG -------------------------------------------------------------------------------- /Figs/SSID.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/SSID.PNG -------------------------------------------------------------------------------- /Figs/SSID2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/SSID2.PNG -------------------------------------------------------------------------------- /Figs/SSID3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/SSID3.PNG -------------------------------------------------------------------------------- /Figs/SSIDTable.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/Figs/SSIDTable.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/README.md -------------------------------------------------------------------------------- /TestCode/LR/LRBI/RNI15/X1/Audrey_Hepburn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/LR/LRBI/RNI15/X1/Audrey_Hepburn.jpg -------------------------------------------------------------------------------- /TestCode/LR/LRBI/RNI15/X1/Bears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/LR/LRBI/RNI15/X1/Bears.png -------------------------------------------------------------------------------- /TestCode/LR/LRBI/RNI15/X1/Dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/LR/LRBI/RNI15/X1/Dog.png -------------------------------------------------------------------------------- /TestCode/LR/LRBI/temp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TestCode/code/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/data/__init__.py -------------------------------------------------------------------------------- /TestCode/code/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/data/benchmark.py -------------------------------------------------------------------------------- /TestCode/code/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/data/common.py -------------------------------------------------------------------------------- /TestCode/code/data/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/data/demo.py -------------------------------------------------------------------------------- /TestCode/code/data/div2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/data/div2k.py -------------------------------------------------------------------------------- /TestCode/code/data/myimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/data/myimage.py -------------------------------------------------------------------------------- /TestCode/code/data/srdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/data/srdata.py -------------------------------------------------------------------------------- /TestCode/code/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/dataloader.py -------------------------------------------------------------------------------- /TestCode/code/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/loss/__init__.py -------------------------------------------------------------------------------- /TestCode/code/loss/adversarial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/loss/adversarial.py -------------------------------------------------------------------------------- /TestCode/code/loss/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/loss/discriminator.py -------------------------------------------------------------------------------- /TestCode/code/loss/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/loss/vgg.py -------------------------------------------------------------------------------- /TestCode/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/main.py -------------------------------------------------------------------------------- /TestCode/code/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/model/__init__.py -------------------------------------------------------------------------------- /TestCode/code/model/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/model/common.py -------------------------------------------------------------------------------- /TestCode/code/model/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/model/ops.py -------------------------------------------------------------------------------- /TestCode/code/model/ridnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/model/ridnet.py -------------------------------------------------------------------------------- /TestCode/code/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/option.py -------------------------------------------------------------------------------- /TestCode/code/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/template.py -------------------------------------------------------------------------------- /TestCode/code/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/trainer.py -------------------------------------------------------------------------------- /TestCode/code/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/code/utility.py -------------------------------------------------------------------------------- /TestCode/experiment/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saeed-anwar/RIDNet/HEAD/TestCode/experiment/ReadMe.txt --------------------------------------------------------------------------------