REVIEW 3 major objections 5 minor 56 references
LAN: Learning to Adapt Noise for Image Denoising
T0 review · 3 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read Adding a learnable pixel-wise offset to a noisy input, while keeping the pretrained denoiser frozen, improves denoising on unseen noise.
desk verdict A simple, genuinely new test-time adaptation trick—freeze the denoiser and learn a per-pixel input offset—with consistent but modest gains, and a mechanism story that is plausible but not yet proven. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the pixel-wise noise offset $\phi$ added directly to the noisy input. It is trained by minimizing a self-supervised denoising loss, specifically the Zero-Shot Noise2Noise and Neighbor2Neighbor losses, with the pretrained denoiser held frozen. The offset is meant to approximate $-\epsilon_{s\to u}$, the deviation that separates the unseen noise from the noise the network was trained on, thereby translating the input into $y_{u\to s} = y_u + \phi \approx x_u + e_s$. This input-side translation carries the whole argument: all adaptation happens in the image, not in the network weights.
What would settle it
Compute a statistical distance such as KL divergence or maximum mean discrepancy between the residual noise of the LAN-adapted image and the noise distribution the denoiser was trained on, across the PolyU and Nam test sets; if PSNR improves while this distance does not shrink, the mechanism is unsupported. A second check is to run LAN on images whose noise already matches the training distribution; if it still gives the same gain, the improvement is not explained by noise-distribution matching.
Extended reading notes
Core claim
The central claim is that unseen noise $e_u$ can be written as seen noise $e_s$ plus a deviation $\epsilon_{s\to u}$, and that subtracting a learned approximation of that deviation from the input image, rather than changing the pretrained denoiser, lets the frozen network denoise as if the noise were familiar. Formally, the method optimizes $\phi = \arg\min_\phi \| f_{\theta^*}(D_1(y_u+\phi)) - D_2(y_u+\phi) \|_2^2$ with $f_{\theta^*}$ frozen, then estimates the clean image as $f_{\theta^*}(y_u+\phi^*)$. The paper reports that this outperforms adapting all or part of the network, with the largest gain on Restormer going from 38.03 dB to 38.86 dB on SIDD-to-Nam with the ZS-N2N loss, and shows qualitatively that the adapted image's noise histogram shifts toward the training noise distribution.
Load-bearing premise
The load-bearing premise is that minimizing the self-supervised loss on the adapted input actually pulls the noise distribution toward the training distribution; the paper asserts this in Section 3.2 and supports it only with one qualitative histogram, without a proof or quantitative measure.
Editorial extensions
If this is right
- A pretrained denoiser can be adapted to a new noise type without any weight updates, removing the risk of overwriting or overfitting the network during test-time adaptation.
- The input-side offset produces gains within 5 to 20 adaptation iterations across all tested backbones and both self-supervised losses, with the largest reported gain on Restormer from 38.03 dB to 38.86 dB on SIDD-to-Nam with ZS-N2N.
- LAN is computationally cheaper than full-network adaptation for 256x256 images, using roughly 74 to 93 percent of the runtime and 74 to 93 percent of the memory of full-trainable adaptation in the reported settings.
- Because the offset is optimized per image with a frozen network, the method is orthogonal to the choice of self-supervised loss and could be stacked on top of future self-supervised objectives.
Reading between the lines
- A natural extension is to apply input-side adaptation to other restoration tasks such as super-resolution, deblurring, or low-light enhancement, where a pretrained model faces a distribution shift in the degradation.
- The per-pixel offset could be constrained to a low-rank or smooth parametric form to remove the image-size-dependent memory cost the authors list as a limitation.
- Combining LAN with a small amount of model adaptation may yield gains larger than either alone, since the offset fixes input statistics while fine-tuning could correct remaining network-side bias.
- One could test whether the learned offset behaves like an anti-adversarial perturbation by measuring its norm and spatial structure and comparing it to adversarial noise of similar magnitude.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes LAN, a test-time adaptation method for image denoising that keeps a pretrained denoiser frozen and instead optimizes a pixel-wise additive offset on the given noisy image using a self-supervised loss such as ZS-N2N or Neighbor2Neighbor. The adapted image is then passed through the frozen denoiser. Experiments compare LAN with full-network, first-layer, last-layer, and meta-learning adaptation on SIDD-pretrained DnCNN, Restormer, and Uformer evaluated on PolyU and Nam, reporting consistent PSNR/SSIM gains and reduced runtime/memory relative to full fine-tuning. A qualitative histogram experiment on synthetic Gaussian and Gamma noise is offered as evidence that the offset moves the input noise toward the training noise distribution.
Significance. If the empirical gains are robust, LAN is an interesting and orthogonal contribution: it avoids modifying network weights, is memory-efficient for large backbones, and opens an input-side view of test-time adaptation. The paper ships code and evaluates three backbones, two self-supervised losses, and two target real-world datasets, which is a strength. The evaluation is not circular, since the offset is optimized with a self-supervised loss while performance is measured on clean PSNR/SSIM. However, the significance is limited by the unverified mechanism and the lack of statistical controls; without these, the contribution is an empirical technique whose working principle remains unsupported.
major comments (3)
- [3.2, Eq. (12)] The central claim that minimizing the self-supervised loss with respect to the offset pulls the input noise toward the training distribution Ds is asserted but not demonstrated. Equation (12) is a consistency loss between two downsampled views after the frozen denoiser, not a distributional divergence between noise residuals. An unconstrained pixel-wise offset can lower this loss by smoothing the image or by exploiting the downsampling operators D1/D2, without making the residual statistically similar to the training noise. The only supporting evidence is Figure 6, which shows marginal histograms for one synthetic setup, and Figure 4, which is qualitative. Matching marginal histograms does not establish spatial noise statistics. Please provide a quantitative distributional measure (e.g., MMD or KL divergence on estimated residuals) before and after adaptation, and preferably an ablation where the offset is constrained or where a different loss is optimized, to show that the mechanism is noise-distribution matching rather than generic input alteration.
- [Table 1] The central empirical claim of consistent improvement lacks statistical support. No error bars, standard deviations, or significance tests are reported, and the comparisons use per-method learning rates chosen by the authors (Section 4.1), so the relative gains could depend on hyperparameter tuning. Please report variance across images or runs, a sensitivity analysis over learning rates and iteration counts, and ideally paired significance tests. Without these, differences of 0.1-0.3 dB may not be distinguishable from run-to-run variability, and the claim that LAN 'consistently outperforms' full-trainable adaptation is not fully supported.
- [Section 4.2, Figure 5] The argument that full-trainable adaptation is fundamentally weaker than LAN is based on a single longer-iteration curve (Uformer with ZS-N2N on Nam). Since the comparison is sensitive to optimization schedules, this one instance is not enough to establish that full-trainable adaptation cannot reach comparable performance with more iterations or better tuning. Please show similar curves for the other backbone/loss/target combinations or explain why this instance is representative. Otherwise the conclusion remains limited to the tuned 20-iteration protocol.
minor comments (5)
- [Section 4.1] The initialization of the offset phi is not specified; if it is initialized to zero, state so explicitly, since the optimization is otherwise not fully specified and the semantics of the learned offset depend on the starting point.
- [Figure 3 caption] The caption states that 'Full-trainable and LAN (Ours) finetuned the pretrained network via ZS-N2N', which is inaccurate for LAN, since LAN does not modify the network parameters; please rephrase to clarify what is adapted in each method.
- [References] References [17] and [18] are the same Neighbor2Neighbor paper with the same authors and venue; please merge them and renumber the citations accordingly.
- [Table 2] The header 'Time Memory' is ambiguous; please label the columns as runtime ratio and memory ratio with explicit units or a note that they are percentages relative to the full-trainable baseline.
- [Section 4.3, Table 3] The zero-shot comparison is not controlled for training budget or initialization: a randomly initialized DnCNN is trained for more than 1K iterations per image, whereas the other methods use a SIDD-pretrained network adapted for at most 20 iterations. This limits the strength of the conclusion that the large training set is the decisive factor; please add a matched-budget comparison or soften the claim.
Circularity Check
No circular derivation: LAN's offset is optimized per test image against a self-supervised loss and evaluated on clean PSNR/SSIM, so the reported gains are not fitted to the target metric; the unverified distribution-matching assumption in Sec. 3.2 is a mechanism gap, not circularity.
full rationale
Walking the derivation chain: the paper's decomposition eu = es + eps_s->u (Eq. 5) is a tautology, but the offset phi is not derived from that decomposition by construction; it is optimized per test image by minimizing the self-supervised loss in Eq. 12, using only the noisy input and a frozen pretrained network, and it is evaluated by PSNR/SSIM against clean images. The clean image is never used during adaptation, so the reported improvements are not fitted to the evaluation metric. No fitted parameter is renamed as a prediction, and no result is equivalent to its input by definition. The main weakness is that Sec. 3.2 asserts, rather than proves, that minimizing Eq. 12 brings the input noise closer to the seen distribution Ds; the only evidence is the qualitative histogram in Figure 6. That is an unverified assumption about the mechanism, which is a correctness risk, not circularity. The paper's self-citations ([27], [28]) appear only as background in the related-work discussion and are not load-bearing for the central claim. No uniqueness theorem is imported from the authors, no ansatz is smuggled in via citation, and no known result is merely renamed. Because the only questionable elements are a minor non-load-bearing self-citation and an unproven mechanism assumption, the circularity score is 2.
Assumptions & free parameters
free parameters (2)
- Per-method learning rates =
LAN: 5e-4, full-trainable: 5e-6, first-layer: 5e-4, last-layer: 1e-4, meta-learning: 1e-5
- Adaptation iterations =
5, 10, 20
assumptions (3)
- domain assumption Noise pixels are independent and clean image pixels are locally correlated, so two transformed views of a single noisy image form a valid self-supervised training pair.
- ad hoc to paper Minimizing the self-supervised loss of a frozen denoiser moves input noise toward the distribution the denoiser was trained on.
- domain assumption The unseen noise eu can be written as eu = es + epsilon for some training noise es, making the deviation epsilon a meaningful quantity to remove.
Cite this review
Pith. "Pith review of LAN: Learning to Adapt Noise for Image Denoising." pith.science (2026). https://pith.science/paper/FEMTVZKW
@misc{pith2026241210651,
author = {Pith},
title = {Pith review of: LAN: Learning to Adapt Noise for Image Denoising},
year = {2026},
howpublished = {\url{https://pith.science/paper/FEMTVZKW}},
note = {Machine review of arXiv:2412.10651}
}
read the original abstract
Removing noise from images, a.k.a image denoising, can be a very challenging task since the type and amount of noise can greatly vary for each image due to many factors including a camera model and capturing environments. While there have been striking improvements in image denoising with the emergence of advanced deep learning architectures and real-world datasets, recent denoising networks struggle to maintain performance on images with noise that has not been seen during training. One typical approach to address the challenge would be to adapt a denoising network to new noise distribution. Instead, in this work, we shift our focus to adapting the input noise itself, rather than adapting a network. Thus, we keep a pretrained network frozen, and adapt an input noise to capture the fine-grained deviations. As such, we propose a new denoising algorithm, dubbed Learning-to-Adapt-Noise (LAN), where a learnable noise offset is directly added to a given noisy image to bring a given input noise closer towards the noise distribution a denoising network is trained to handle. Consequently, the proposed framework exhibits performance improvement on images with unseen noise, displaying the potential of the proposed research direction. The code is available at https://github.com/chjinny/LAN
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Abdelrahman Abdelhamed, Stephen Lin, and Michael S. Brown. A high-quality denoising dataset for smartphone cameras. In CVPR, 2018. 1, 2, 4
work page 2018
-
[2]
Noise flow: Noise modeling with con- ditional normalizing flows
Abdelrahman Abdelhamed, Marcus A Brubaker, and Michael S Brown. Noise flow: Noise modeling with con- ditional normalizing flows. In ICCV, 2019. 2
work page 2019
-
[3]
Ntire 2020 challenge on real image denoising: Dataset, methods and results
Abdelrahman Abdelhamed, Mahmoud Afifi, Radu Timofte, and Michael S Brown. Ntire 2020 challenge on real image denoising: Dataset, methods and results. In CVPR, 2020. 1
work page 2020
-
[4]
Renoir–a dataset for real low-light image noise reduction
Josue Anaya and Adrian Barbu. Renoir–a dataset for real low-light image noise reduction. Journal of Visual Commu- nication and Image Representation, 51:144–154, 2018. 1
2018
-
[5]
Real image denoising with feature attention
Saeed Anwar and Nick Barnes. Real image denoising with feature attention. In ICCV, 2019. 1, 2
work page 2019
-
[6]
Noise2self: Blind denoising by self-supervision
Joshua Batson and Loic Royer. Noise2self: Blind denoising by self-supervision. In ICML, 2019. 2, 3
work page 2019
-
[7]
A non-local algorithm for image denoising
Antoni Buades, Bartomeu Coll, and J-M Morel. A non-local algorithm for image denoising. In CVPR, 2005. 2
work page 2005
-
[8]
Towards evaluating the robustness of neural networks
Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In IEEE Symposium on Secu- rity and Privacy, 2017. 3
work page 2017
Show all 56 references
-
[9]
Learn- ing camera-aware noise models
Ke-Chi Chang, Ren Wang, Hung-Jin Lin, Yu-Lun Liu, Chia- Ping Chen, Yu-Lin Chang, and Hwann-Tzong Chen. Learn- ing camera-aware noise models. In ECCV, 2020. 2
2020
-
[10]
Pre-trained image processing transformer
Hanting Chen, Yunhe Wang, Tianyu Guo, Chang Xu, Yip- ing Deng, Zhenhua Liu, Siwei Ma, Chunjing Xu, Chao Xu, and Wen Gao. Pre-trained image processing transformer. In CVPR, 2021. 2
2021
-
[11]
Hinet: Half instance normalization network for image restoration
Liangyu Chen, Xin Lu, Jie Zhang, Xiaojie Chu, and Cheng- peng Chen. Hinet: Half instance normalization network for image restoration. In CVPR, 2021. 1
2021
-
[12]
Image denoising by sparse 3-d transform- domain collaborative filtering
Kostadin Dabov, Alessandro Foi, Vladimir Katkovnik, and Karen Egiazarian. Image denoising by sparse 3-d transform- domain collaborative filtering. IEEE Transactions on Image Processing, 16(8):2080–2095, 2007. 2
2007
-
[13]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Un- terthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigoldand Sylvain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognitio...
2021
-
[14]
Model- agnostic meta-learning for fast adaptation of deep networks
Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model- agnostic meta-learning for fast adaptation of deep networks. In ICML, 2017. 4
2017
-
[15]
Generative adversarial nets
Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In NeurIPS,
-
[16]
Test-time adaptation for real image denoising via meta- transfer learning
Agus Gunawan, Muhammad Adi Nugroho, and Se Jin Park. Test-time adaptation for real image denoising via meta- transfer learning. arXiv preprint arXiv:2207.02066 , 2022. 2
2022 arXiv
-
[17]
Neighbor2neighbor: Self-supervised de- noising from single noisy images
Tao Huang, Songjiang Li, Xu Jia, Huchuan Lu, and Jianzhuang Liu. Neighbor2neighbor: Self-supervised de- noising from single noisy images. In CVPR, 2021. 2, 5
2021
-
[18]
Neighbor2neighbor: Self-supervised de- noising from single noisy images
Tao Huang, Songjiang Li, Xu Jia, Huchuan Lu, and Jianzhuang Liu. Neighbor2neighbor: Self-supervised de- noising from single noisy images. In CVPR, 2021. 3, 4
2021
-
[19]
Image-to-image translation with conditional adver- sarial networks
Phillip Isola, Jun-Yan Zhu, Tinghui Zhou, and Alexei A Efros. Image-to-image translation with conditional adver- sarial networks. In CVPR, 2017. 2
2017
-
[20]
C2n: Practical generative noise modeling for real-world denoising
Geonwoon Jang, Wooseok Lee, Sanghyun Son, and Ky- oung Mu Lee. C2n: Practical generative noise modeling for real-world denoising. In ICCV, 2021. 2
2021
-
[21]
Adam: A method for stochastic optimization
Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980 ,
-
[22]
Auto-encoding varia- tional bayes
Diederik P Kingma and Max Welling. Auto-encoding varia- tional bayes. arXiv preprint arXiv:1312.6114, 2013. 2
2013 arXiv
-
[23]
Modeling srgb camera noise with normal- izing flows
Shayan Kousha, Ali Maleky, Michael S Brown, and Mar- cus A Brubaker. Modeling srgb camera noise with normal- izing flows. In CVPR, 2022. 2
2022
-
[24]
Noise2void-learning denoising from single noisy images
Alexander Krull, Tim-Oliver Buchholz, and Florian Jug. Noise2void-learning denoising from single noisy images. In CVPR, 2019. 2
2019
-
[25]
Universal source-free domain adaptation
Jogendra Nath Kundu, Naveen Venkat, R Venkatesh Babu, et al. Universal source-free domain adaptation. In Proceed- ings of the IEEE/CVF conference on computer vision and pattern recognition, pages 4544–4553, 2020. 2
2020
-
[26]
Diverse image-to-image translation via disentangled representations
Hsin-Ying Lee, Hung-Yu Tseng, Jia-Bin Huang, Maneesh Singh, and Ming-Hsuan Yang. Diverse image-to-image translation via disentangled representations. In ECCV, 2018. 2
2018
-
[27]
Noisetransfer: Image noise generation with contrastive embeddings
Seunghwan Lee and Tae Hyun Kim. Noisetransfer: Image noise generation with contrastive embeddings. In ACCV,
-
[28]
Self-supervised fast adaptation for denoising via meta- learning
Seunghwan Lee, Donghyeon Cho, Jiwon Kim, and Tae Hyun Kim. Self-supervised fast adaptation for denoising via meta- learning. arXiv preprint arXiv:2001.02899, 2020. 2
2001 arXiv
-
[29]
Ap-bsn: Self-supervised denoising for real-world images via asym- metric pd and blind-spot network
Wooseok Lee, Sanghyun Son, and Kyoung Mu Lee. Ap-bsn: Self-supervised denoising for real-world images via asym- metric pd and blind-spot network. In CVPR, 2022. 2
2022
-
[30]
Noise2noise: Learning image restoration without clean data
Jaakko Lehtinen, Jacob Munkberg, Jon Hasselgren, Samuli Laine, Tero Karras, Miika Aittala, and Timo Aila. Noise2noise: Learning image restoration without clean data. In ICML, 2018. 2, 3
2018
-
[31]
Swinir: Image restoration us- ing swin transformer
Jingyun Liang, Jiezhang Cao, Guolei Sun, Kai Zhang, Luc Van Gool, and Radu Timofte. Swinir: Image restoration us- ing swin transformer. In ICCV, 2021. 2
2021
-
[32]
Unsupervised image-to-image translation networks
Ming-Yu Liu, Thomas Breuel, and Jan Kautz. Unsupervised image-to-image translation networks. 2017. 2
2017
-
[33]
Exemplar guided unsupervised image-to- image translation with semantic consistency
Liqian Ma, Xu Jia, Stamatios Georgoulis, Tinne Tuytelaars, and Luc Van Gool. Exemplar guided unsupervised image-to- image translation with semantic consistency. arXiv preprint arXiv:1805.11145, 2018. 2
2018 arXiv
-
[34]
Non-local sparse models for image restoration
Julien Mairal, Francis Bach, Jean Ponce, Guillermo Sapiro, and Andrew Zisserman. Non-local sparse models for image restoration. In ICCV, 2009. 2
2009
-
[35]
Zero-shot noise2noise: Efficient image denoising without any data
Youssef Mansour and Reinhard Heckel. Zero-shot noise2noise: Efficient image denoising without any data. In CVPR, 2023. 2, 3, 4, 5 9
2023
-
[36]
A database of human segmented natural images and its application to evaluating segmentation algorithms and measuring ecological statistics
David Martin, Charless Fowlkes, Doron Tal, and Jitendra Malik. A database of human segmented natural images and its application to evaluating segmentation algorithms and measuring ecological statistics. In Proceedings Eighth IEEE International Conference on Computer Vision. IC...
2001
-
[37]
A holistic approach to cross-channel im- age noise modeling and its application to image denoising
Seonghyeon Nam, Youngbae Hwang, Yasuyuki Matsushita, and Seon Joo Kim. A holistic approach to cross-channel im- age noise modeling and its application to image denoising. In CVPR, 2016. 1, 4
2016
-
[38]
On first-order meta-learning algorithms
Alex Nichol, Joshua Achiam, and John Schulman. On first-order meta-learning algorithms. arXiv preprint arXiv:1803.02999, 2018. 4
2018 arXiv
-
[39]
Benchmarking denoising al- gorithms with real photographs
Tobias Plotz and Stefan Roth. Benchmarking denoising al- gorithms with real photographs. In CVPR, 2017. 1
2017
-
[40]
Self2self with dropout: Learning self-supervised denoising from single image
Yuhui Quan, Mingqin Chen, Tongyao Pang, and Hui Ji. Self2self with dropout: Learning self-supervised denoising from single image. In Proceedings of the IEEE/CVF con- ference on computer vision and pattern recognition , pages 1890–1898, 2020. 2
2020
-
[41]
Nonlinear total variation based noise removal algorithms
Leonid I Rudin, Stanley Osher, and Emad Fatemi. Nonlinear total variation based noise removal algorithms. Physica D: nonlinear phenomena, 60(1-4):259–268, 1992. 2
1992
-
[42]
Intriguing properties of neural networks
Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. arXiv preprint arXiv:1312.6199, 2013. 3
2013 arXiv
-
[43]
Deep image prior
Dmitry Ulyanov, Andrea Vedaldi, and Victor Lempitsky. Deep image prior. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 9446–9454,
-
[44]
Tent: Fully test-time adaptation by entropy minimization
Dequan Wang, Evan Shelhamer, Shaoteng Liu, Bruno Ol- shausen, and Trevor Darrell. Tent: Fully test-time adaptation by entropy minimization. In International Conference on Learning Representations, 2021. 2
2021
-
[45]
Noise2info: Noisy image to information of noise for self-supervised image denoising
Jiachuan Wang, Shimin Di, Lei Chen, and Charles Wang Wai Ng. Noise2info: Noisy image to information of noise for self-supervised image denoising. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 16034–16043, 2023. 2
2023
-
[46]
Uformer: A gen- eral u-shaped transformer for image restoration
Zhendong Wang, Xiaodong Cun, Jianmin Bao, Wengang Zhou, Jianzhuang Liu, and Houqiang Li. Uformer: A gen- eral u-shaped transformer for image restoration. In CVPR,
-
[47]
Image denoising and inpainting with deep neural networks
Junyuan Xie, Linli Xu, and Enhong Chen. Image denoising and inpainting with deep neural networks. InNeurIPS, 2012. 2
2012
-
[48]
Real-world noisy image denoising: A new bench- mark
Jun Xu, Hui Li, Zhetong Liang, David Zhang, and Lei Zhang. Real-world noisy image denoising: A new bench- mark. arXiv preprint arXiv:1804.02603, 2018. 1, 4
2018 arXiv
-
[49]
Generalized source-free domain adaptation
Shiqi Yang, Yaxing Wang, Joost Van De Weijer, Luis Her- ranz, and Shangling Jui. Generalized source-free domain adaptation. In Proceedings of the IEEE/CVF international conference on computer vision, pages 8978–8987, 2021. 2
2021
-
[50]
Dual adversarial network: Toward real-world noise removal and noise generation
Zongsheng Yue, Qian Zhao, Lei Zhang, and Deyu Meng. Dual adversarial network: Toward real-world noise removal and noise generation. In ECCV, 2020. 2
2020
-
[51]
Cycleisp: Real image restoration via improved data synthesis
Syed Waqas Zamir, Aditya Arora, Salman Khan, Munawar Hayat, Fahad Shahbaz Khan, Ming-Hsuan Yang, and Ling Shao. Cycleisp: Real image restoration via improved data synthesis. In CVPR, 2020. 2
2020
-
[52]
Learning enriched features for real image restoration and enhancement
Syed Waqas Zamir, Aditya Arora, Salman Khan, Munawar Hayat, Fahad Shahbaz Khan, Ming-Hsuan Yang, and Ling Shao. Learning enriched features for real image restoration and enhancement. In ECCV, 2020. 1
2020
-
[53]
Restormer: Efficient transformer for high-resolution image restoration
Syed Waqas Zamir, Aditya Arora, Salman Khan, Mu- nawar Hayat, Fahad Shahbaz Khan, and Ming-Hsuan Yang. Restormer: Efficient transformer for high-resolution image restoration. In CVPR, 2022. 2, 4, 5
2022
-
[54]
Beyond a gaussian denoiser: Residual learning of deep cnn for image denoising
Kai Zhang, Wangmeng Zuo, Yunjin Chen, Deyu Meng, and Lei Zhang. Beyond a gaussian denoiser: Residual learning of deep cnn for image denoising. IEEE Transactions on Image Processing, 26(7):3142–3155, 2017. 1, 2, 4, 5
2017
-
[55]
Ffdnet: Toward a fast and flexible solution for cnn-based image denoising
Kai Zhang, Wangmeng Zuo, and Lei Zhang. Ffdnet: Toward a fast and flexible solution for cnn-based image denoising. IEEE Transactions on Image Processing, 27(9):4608–4622,
-
[56]
To- ward multimodal image-to-image translation
Jun-Yan Zhu, Richard Zhang, Deepak Pathak, Trevor Dar- rell, Alexei A Efros, Oliver Wang, and Eli Shechtman. To- ward multimodal image-to-image translation. In NeurIPS,
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.