├── .idea ├── MFDNet.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Datasets ├── README.md └── test │ └── Rain100L │ ├── input │ ├── 1.png │ ├── 2.png │ └── 3.png │ └── target │ ├── 1.png │ ├── 2.png │ └── 3.png ├── MFDNet.py ├── README.md ├── SSIM.py ├── checkpoints └── checkpoints_mfd.pth ├── config.py ├── data_RGB.py ├── dataset_RGB.py ├── losses.py ├── mfd.yml ├── requirement.txt ├── restormer_block.py ├── test.py ├── train.py ├── training.yml └── utils ├── __init__.py ├── dataset_utils.py ├── dir_utils.py ├── image_utils.py ├── model_utils.py └── util.py /.idea/MFDNet.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/.idea/MFDNet.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/Datasets/README.md -------------------------------------------------------------------------------- /Datasets/test/Rain100L/input/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/Datasets/test/Rain100L/input/1.png -------------------------------------------------------------------------------- /Datasets/test/Rain100L/input/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/Datasets/test/Rain100L/input/2.png -------------------------------------------------------------------------------- /Datasets/test/Rain100L/input/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/Datasets/test/Rain100L/input/3.png -------------------------------------------------------------------------------- /Datasets/test/Rain100L/target/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/Datasets/test/Rain100L/target/1.png -------------------------------------------------------------------------------- /Datasets/test/Rain100L/target/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/Datasets/test/Rain100L/target/2.png -------------------------------------------------------------------------------- /Datasets/test/Rain100L/target/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/Datasets/test/Rain100L/target/3.png -------------------------------------------------------------------------------- /MFDNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/MFDNet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/README.md -------------------------------------------------------------------------------- /SSIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/SSIM.py -------------------------------------------------------------------------------- /checkpoints/checkpoints_mfd.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/checkpoints/checkpoints_mfd.pth -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/config.py -------------------------------------------------------------------------------- /data_RGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/data_RGB.py -------------------------------------------------------------------------------- /dataset_RGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/dataset_RGB.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/losses.py -------------------------------------------------------------------------------- /mfd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/mfd.yml -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/requirement.txt -------------------------------------------------------------------------------- /restormer_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/restormer_block.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/train.py -------------------------------------------------------------------------------- /training.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/training.yml -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/utils/dataset_utils.py -------------------------------------------------------------------------------- /utils/dir_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/utils/dir_utils.py -------------------------------------------------------------------------------- /utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/utils/image_utils.py -------------------------------------------------------------------------------- /utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/utils/model_utils.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwangg/MFDNet/HEAD/utils/util.py --------------------------------------------------------------------------------