Thank the Professor Wangmeng Zuo for his guidance and help in this work.
Winner Award in NTIRE 2020 Real Image Denoising Challenge - Track 1 - rawRGB
Dn_RAW_MWRCANet
3rd Place Award in NTIRE 2020 Real Image Denoising Challenge - Track 2 - sRGB
Dn_sRGB_MWRCANet
Original Network : mwresnet (multi-level wavelet-resnet)
Siamese Network : mwrcanet (multi-level wavelet-residual channel attention network)
Compared with other denoising networks to design the complex network structure, we mainly use distillating knowledge and NAS (Neural Architecture Search technology) to improve the denoising performance. Our method included four-step training procedures. First, we take advantage of both MWCNN[1] and ResNet[4] to propose mwresnet (multi-level wavelet- resnet) as Original Network. The Discrete Wavelet Transformation (DWT) Inverse Discrete Wavelet Transformation (IWT) are realized by convolution operation and deconvolution operation with fixed convolution kernel parameters, respectively. Second, we are based on Original Network to design the Siamese Network by use of NAS technology. By using evolutionary algorithm search for the efficient basic block with the search space(block number, type and channel number) to replace the residual block in mwresnet, we get the Siamese Network which is named mwrcanet (multi-level wavelet-residual channel attention network). The Dense Block in densenet[3] and Residual Channel Attention Block (RCAB) in RCAN[2] are considered in the search area about block type. Through the training of mwresnet and mwrcanet, we get denoising results of validation set and test set. The averaged denoising results (between original network and siamese network) and original noisy images pair became the new training data in distillating knowledge stage. In the third training step, we finetune those two networks. In the fourth training step, we finetune siamese network through the use of the noisy images and denoised results of both original network and siamese network. We only use the Siamese Network to get the final denoised results. Those two networks can complement each other to improve denoising performance in distillating knowledge stage.
In summary, we believe that using distillating knowledge strategy can improve the denoising network and gain better restoration performance.
Networks | SIDDPlus | SIDD |
---|---|---|
mwrcanet | 52.80 | 52.38 |
mwrcanet w/o ensembles | 52.79 | 52.35 |
In testing stage, we only use the Siamese Network to get the final denoised results. We use the self-ensemble to average the eight eight outputs through the same network to improve the denoising performance.
[1] Liu P, Zhang H, Zhang K, et al. Multi-level wavelet-CNN for image restoration[C]. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition Workshops. 2018: 773-782.
[2] Zhang Y , Li K , Li K , et al. Image Super-Resolution Using Very Deep Residual Channel Attention Networks[C]. ECCV 2018.
[3] Huang G, Liu Z, Maaten LVD, et al. Densely Connected Convolutional Networks[C]. CVPR 2017.
[4] He K , Zhang X , Ren S , et al. Deep Residual Learning for Image Recognition[C]// CVPR 2016.
pip install torch
pip install scipy
validation data mat (Ntire 2020 / SIDDPlus)
./mat/siddplus_valid_gt_raw.mat
./mat/siddplus_valid_noisy_raw.mat
validation data mat (Ntire 2019 / SIDD)
./mat/ValidationGtBlocksRaw.mat
./mat/ValidationNoisyBlocksRaw.mat
Raw space './net_last_ckpt/dn_mwrcanet_raw_c1.pth'
Download the mat file and Pre-trained model with the following url
-
BaiduNetDisk password:0odp
Ntire 2020 (SIDDPlus) validation data
python DN_valid_SIDDPlus.py
Ntire 2019 (SIDD) validation data
python DN_valid_SIDD.py
Yue Cao [email protected] [email protected], Harbin Institute of Technology, China
Zhilu Zhang, [email protected], Harbin Institute of Technology, China
Wangmeng Zuo, [email protected], Harbin Institute of Technology, China
Xiaoling Zhang, [email protected], Huawei, China
Jiye Liu, [email protected], Huawei, China
Wendong Chen, [email protected], Huawei, China
Changyuan Wen, [email protected], Huawei, China
Meng Liu, [email protected], Huawei, China
Shuailin Lv, [email protected], Huawei, China
Yunchao Zhang, [email protected], Huawei, China
-
To test pre-trained RAW_MWRCANet on SIDD (Ntire 2019) and SIDDPlus (Ntire 2020)
-
To test pre-trained sRGB_MWRCANet on SIDD (Ntire 2019) and SIDDPlus (Ntire 2020) (soon)
-
Real Image Denoising(RID) Training Code Tookit. To release the traning code of RAW_MWRCANet and sRGB_MWRCANet (CBDNet and PT-MWRN) in PyTorch version (it takes a long time)
Please send email to [email protected] or [email protected]