├── README.md ├── config.py ├── dataset └── test │ └── download_url.md ├── lib ├── NEDB.py ├── NLEDN.py ├── RNEDB.py ├── __init__.py ├── data_loader.py ├── non_local_block.py ├── region_non_local_block.py └── utils.py ├── readme_pics └── example.png ├── test.py └── weights ├── net_DDN.pth ├── net_DID.pth ├── net_Rain100H.pth └── net_Rain100L.pth /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/config.py -------------------------------------------------------------------------------- /dataset/test/download_url.md: -------------------------------------------------------------------------------- 1 | https://pan.baidu.com/s/1VPAEi7z2F1Efxt5kVaVa8A -------------------------------------------------------------------------------- /lib/NEDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/lib/NEDB.py -------------------------------------------------------------------------------- /lib/NLEDN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/lib/NLEDN.py -------------------------------------------------------------------------------- /lib/RNEDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/lib/RNEDB.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/lib/data_loader.py -------------------------------------------------------------------------------- /lib/non_local_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/lib/non_local_block.py -------------------------------------------------------------------------------- /lib/region_non_local_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/lib/region_non_local_block.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/lib/utils.py -------------------------------------------------------------------------------- /readme_pics/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/readme_pics/example.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/test.py -------------------------------------------------------------------------------- /weights/net_DDN.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/weights/net_DDN.pth -------------------------------------------------------------------------------- /weights/net_DID.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/weights/net_DID.pth -------------------------------------------------------------------------------- /weights/net_Rain100H.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/weights/net_Rain100H.pth -------------------------------------------------------------------------------- /weights/net_Rain100L.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexHex7/NLEDN/HEAD/weights/net_Rain100L.pth --------------------------------------------------------------------------------