Home

Awesome

Single Image Deraining using a Recurrent Multi-scale Aggregation and Enhancement Network (ICME'19)

[pdf][code][DerainZoo]

Youzhao Yang, Hong Lu; School of Computer Science, Fudan University

Abstract

Single image deraining is an ill-posed inverse problem due to the presence of non-uniform rain shapes, directions, and densities in images. In this paper, we propose a novel progressive single image deraining method named Recurrent Multiscale Aggregation and Enhancement Network (ReMAEN). Differing from previous methods, ReMAEN contains a symmetric structure where recurrent blocks with shared channel attention are applied to select useful information collaboratively and remove rain streaks stage by stage. In ReMAEN, a Multi-scale Aggregation and Enhancement Block (MAEB) is constructed to detect multi-scale rain details. Moreover, to better leverage the rain details from rainy images, ReMAEN enables a symmetric skipping connection from low level to high level. Extensive experiments on synthetic and real-world datasets demonstrate that our method outperforms the state-of-the-art methods tremendously. Furthermore, ablation studies are conducted to show the improvements obtained by each module in ReMAEN.

<p align='center'><img src='./materials/ReMAEN.png' height="600px"/></p>

Dataset

Synthetic Datasets

Datasets#train#testlabel
Rain100L200100rain mask & rain map
Rain100H1800100rain mask & rain map
Rain800700100-
Rain1200120001200rain density
Rain1400126001400-

Real-World Datasets

Datasets#train#testlabel
Real-World-67-

Pre-trained Model

We note that these models is trained on NVIDIA GeForce GTX1080Ti:

DatasetsPre-trained model
Rain100LRain100L model
Rain100HRain100H model TAB
Rain800Rain800 model TAB
Rain1200Rain1200 model TAB
Rain1400Rain1400 model TAB

Requirements

Usages

   $ git clone https://github.com/nnUyi/ReMAEN
   $ cd ReMAEN
   $ cd codes
   $ CUDA_VISIBLE_DEVICES=0 python main.py --is_training True
                                           --train_dataset Rain100L
                                           --test_dataset Rain100L
                                           --trainset_size 200
                                           --testset_size 100
                                           --iterations 40000
                                           --lr 0.001
                                           --batch_size 32
   $ CUDA_VISIBLE_DEVICES=0 python main.py --is_testing True
                                           --train_dataset Rain100L
                                           --test_dataset Rain100L
                                           --trainset_size 200
                                           --testset_size 100
                                           --batch_size 32

Results

Recurrent rain removal analysis

<div align="center"> <img src="./materials/PSNR.png" height="300px" alt="PSNR" > <img src="./materials/SSIM.png" height="300px" alt="SSIM" > </div>

Edge loss analysis

Rainyw/o edge losswith edge lossground truth
Alt testAlt testAlt testAlt test
Alt testAlt testAlt testAlt test

Average PSNR and SSIM values on five synthetic datasets

MethodsRain100LRain100HRain800Rain1200Rain1400
--PSNR/SSIMPSNR/SSIMPSNR/SSIMPSNR/SSIMPSNR/SSIM
JORDER (CVPR'17)[1]36.11/0.97022.15/0.67422.24/0.77624.32/0.86227.55/0.853
DID-MDN (CVPR'18)[2]25.70/0.85817.39/0.61221.89/0.79527.95/0.90827.99/0.869
DualCNN (CVPR'18)[3]26.87/0.86014.23/0.46824.11/0.82123.38/0.78724.98/0.838
RESCAN (ECCV'18)[4]36.64/0.97526.45/0.84624.09/0.84129.95/0.88428.57/0.891
OURS (ICME'19)37.80/0.98228.97/0.88426.86/0.85432.50/0.91132.31/0.916

References

[1] Wenhan Yang, Robby T. Tan, Jiashi Feng, Jiaying Liu, Zongming Guo, and Shuicheng Yan, “Deep joint rain detection and removal from a single image,” in Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2017, pp. 1357–1366.

[2] He Zhang and Vishal M. Patel, “Density-aware single image deraining using a multi-stream dense network,” in The IEEE Conference on Computer Vision and Pattern Recognition, 2018, pp. 695–704.

[3] Jinshan Pan, Sifei Liu, Deqing Sun, Jiawei Zhang, Yang Liu, Jimmy Ren, Zechao Li, Jinhui Tang, Huchuan Lu, and Yu-Wing Tai, “Learning dual convolutional neural networks for low-level vision,” in Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2018, pp. 3070–3079.

[4] Xia Li, Jianlong Wu, Zhouchen Lin, Hong Liu, and Hongbin Zha, “Recurrent squeeze-and-excitation context aggregation net for single image deraining,” in The European Conference on Computer Vision (ECCV), 2018, pp. 262–277.

Acknowledgements

Citation

If you find the resource usefully, please cite the following:

   @inproceedings{yang2019single,
      title={Single Image Deraining using a Recurrent Multi-scale Aggregation and Enhancement Network},
      author={Yang, Youzhao and Lu, Hong},   
      booktitle={IEEE International Conference on Multimedia and Expo (ICME)},
      year={2019}
   }