├── MWCNN_code ├── __init__.py ├── data │ ├── __init__.py │ ├── benchmark.py │ ├── common.py │ ├── demo.py │ ├── div2k.py │ └── srdata.py ├── dataloader.py ├── loss │ ├── __init__.py │ ├── adversarial.py │ ├── discriminator.py │ └── vgg.py ├── main.py ├── model │ ├── __init__.py │ ├── common.py │ └── mwcnn.py ├── option.py ├── template.py ├── trainer.py └── utility.py ├── README.md ├── data_gen ├── A_data_generation.m ├── patches_generation.m └── stride_init.m └── images ├── JIAR_images.png ├── JISR_tab.png ├── MWCNN.png ├── denoising_tab.png ├── dn_image.png ├── sisr_images.png └── sisr_tab.png /MWCNN_code/__init__.py: -------------------------------------------------------------------------------- 1 | ##### -------------------------------------------------------------------------------- /MWCNN_code/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/data/__init__.py -------------------------------------------------------------------------------- /MWCNN_code/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/data/benchmark.py -------------------------------------------------------------------------------- /MWCNN_code/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/data/common.py -------------------------------------------------------------------------------- /MWCNN_code/data/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/data/demo.py -------------------------------------------------------------------------------- /MWCNN_code/data/div2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/data/div2k.py -------------------------------------------------------------------------------- /MWCNN_code/data/srdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/data/srdata.py -------------------------------------------------------------------------------- /MWCNN_code/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/dataloader.py -------------------------------------------------------------------------------- /MWCNN_code/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/loss/__init__.py -------------------------------------------------------------------------------- /MWCNN_code/loss/adversarial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/loss/adversarial.py -------------------------------------------------------------------------------- /MWCNN_code/loss/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/loss/discriminator.py -------------------------------------------------------------------------------- /MWCNN_code/loss/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/loss/vgg.py -------------------------------------------------------------------------------- /MWCNN_code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/main.py -------------------------------------------------------------------------------- /MWCNN_code/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/model/__init__.py -------------------------------------------------------------------------------- /MWCNN_code/model/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/model/common.py -------------------------------------------------------------------------------- /MWCNN_code/model/mwcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/model/mwcnn.py -------------------------------------------------------------------------------- /MWCNN_code/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/option.py -------------------------------------------------------------------------------- /MWCNN_code/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/template.py -------------------------------------------------------------------------------- /MWCNN_code/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/trainer.py -------------------------------------------------------------------------------- /MWCNN_code/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/MWCNN_code/utility.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/README.md -------------------------------------------------------------------------------- /data_gen/A_data_generation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/data_gen/A_data_generation.m -------------------------------------------------------------------------------- /data_gen/patches_generation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/data_gen/patches_generation.m -------------------------------------------------------------------------------- /data_gen/stride_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/data_gen/stride_init.m -------------------------------------------------------------------------------- /images/JIAR_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/images/JIAR_images.png -------------------------------------------------------------------------------- /images/JISR_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/images/JISR_tab.png -------------------------------------------------------------------------------- /images/MWCNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/images/MWCNN.png -------------------------------------------------------------------------------- /images/denoising_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/images/denoising_tab.png -------------------------------------------------------------------------------- /images/dn_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/images/dn_image.png -------------------------------------------------------------------------------- /images/sisr_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/images/sisr_images.png -------------------------------------------------------------------------------- /images/sisr_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lpj-github-io/MWCNNv2/HEAD/images/sisr_tab.png --------------------------------------------------------------------------------