REVIEW 3 major objections 4 minor 177 references
Trainable Nonexpansive Denoisers for Contractive Image Reconstruction
T0 review · 3 major / 4 minor · reviewed 2026-07-31 · deepseek-v4-flash
Pith's one-line read This paper shows that a permutation-based weighted-aggregation denoiser can be made globally nonexpansive (Lipschitz constant at most 1) by construction, and that the resulting plug-and-play reconstruction operator is contractive, guarantee
desk verdict Genuinely new mechanism for global nonexpansivity, but the boundary convention in the implementation must be clarified before the contraction guarantee is believable. 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 weighted aggregation operator K(x;ξ) = Σ_{π∈G} Nθ(ξ, π·ξ) ⊙ (π·x), normalized element-wise by C(ξ) = Σ_{π∈G} Nθ(ξ, π·ξ), where G is an inversion-closed, transitive set of lattice permutations (in practice, local translations T[7]). The load-bearing identity is the inverse-consistency condition Nθ(ξ, π·ξ) = π·Nθ(ξ, π⁻¹·ξ), which makes K symmetric. The symmetrization φ (defined in Eq. 17) converts the normalized denoiser into Dsym, a symmetric, stochastic matrix with spectral norm 1. Theorem 3.1 then proves that composing Dsym with the proximal operator of the quadratic data-fidelity term yields a contraction, combining a Perron–Frobenius argument for the simplicity o
What would settle it
For a fixed trained network, forward operator A, and reference ξ, numerically compute the matrix norm ∥Dsym(·;ξ)(I+ρAᵀA)⁻¹∥₂; the paper predicts it is strictly less than 1, so finding any ξ or network instance with norm ≥ 1—or observing two different initializations converge to different fixed points—refutes the contractivity claim. A code-level check is simpler: replace the permuted-copy weight with a genuine evaluation of Nθ(ξ, π⁻¹·ξ) and repeat the reconstruction; any change in the limiting image indicates Assumption (A3) was not actually satisfied.
Extended reading notes
Core claim
For a fixed reference image ξ, the proposed denoiser D(·;ξ) is linear in the input image, while remaining nonlinear in ξ through the weight-predicting network Nθ. By imposing an inverse-consistency condition (ICC) — computing the weight for permutation π⁻¹ as the permuted copy of the weight for π — the aggregation operator K(·;ξ) becomes symmetric for every ξ. A symmetrization step then yields Dsym, a symmetric, entrywise nonnegative, stochastic operator with spectral norm exactly 1, i.e., globally nonexpansive. The main theorem (Theorem 3.1) shows that the reconstruction operator Tξ = Dsym ∘ prox_{ρf} is contractive, meaning ∥Dsym (I+ρAᵀA)⁻¹∥₂ < 1, under assumptions that include transitivit
Load-bearing premise
The proof treats the weight for π⁻¹ as a permuted copy of the weight for π via a computational shortcut, an identity that is not intrinsic to a generic trained CNN—if inverse pairs are evaluated separately, or order-2 permutations are included, the symmetry of K and the contractivity conclusion can fail.
Editorial extensions
If this is right
- With the reference image fixed after warm-up, the reconstruction iteration converges to the same unique fixed point from any initialization, including all-zeros, random noise, the observed image, or the true image.
- Because the nonexpansive property is architectural rather than penalty-based, the Lipschitz guarantee holds for all inputs and all parameter values, ruling out divergence on out-of-distribution data where empirically constrained baselines can fail.
- The denoiser can be reused across different forward operators without retraining; contractivity requires only that the forward operator be non-annihilating (A e ≠ 0), which holds for standard deblurring and superresolution operators.
- On standard CBSD10 benchmarks, the method's PSNR falls within roughly 0.3–0.8 dB of the strongest convergent baselines while providing a strictly stronger, global convergence guarantee.
Reading between the lines
- The inverse-consistency construction could be ported to any input-dependent linear aggregation scheme (e.g., non-local means or attention) to obtain certified nonexpansive variants, since the symmetry argument only requires an inversion-closed, transitive permutation structure and positive weights.
- A natural testable extension is an adaptive-reference schedule: re-freeze the reference only when the iterate change is small, which might improve adaptation while retaining contraction in practice, although the paper's theorem does not cover the adaptive phase.
- The sharpest stress test of the proof is to remove the ICC shortcut and evaluate the network on inverse pairs directly; if the reconstructed images differ materially, the implementation–theory alignment is carrying the guarantee rather than the network itself.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a plug-and-play reconstruction framework in which the denoiser is a normalized, permutation-aggregated linear operator whose weights are produced by a small CNN. By imposing an inverse-consistency condition (ICC) on the CNN outputs, the unnormalized aggregation operator becomes symmetric; a subsequent symmetrization step yields a symmetric, entrywise nonnegative, stochastic operator Dsym. Under assumptions of positivity, transitivity of the permutation set, and a nonannihilating forward operator, the paper claims that Dsym composed with the proximal operator of the quadratic data-fidelity term is a strict contraction, so the fixed-point iteration converges from any initialization. Experiments report competitive PSNR on deblurring and superresolution benchmarks compared with recently proposed convergent PnP methods.
Significance. If the claims hold, the paper offers a useful structural route to globally nonexpansive trainable denoisers: the Lipschitz control is by construction and does not depend on the training distribution. This is in contrast to sample-based spectral-regularization baselines, and the paper is honest that its guarantee covers the symmetrized operator and the frozen-reference phase. The theoretical development is explicit, with proofs in the appendix and a code link, and the experimental comparisons are against relevant convergent baselines. The main value is the combination of a simple permutation-based architecture with a parameter-independent contractivity guarantee, which would be a meaningful contribution to convergent deep image reconstruction.
major comments (3)
- [Section 4, Assumption (A4), Theorem 3.1] The paper states that the translation set T[7] 'satisfies the permutation assumptions' because translations act transitively on the lattice. This is only true if Ω is treated as a torus with periodic boundary conditions. A finite-lattice shift is a bijection only under circular wrap-around; with zero-padded or replicated shifts, each π is not a permutation of Ω, the pullback (7) is not a group action, and the inverse steps in Lemma 3.3 and the transitivity condition (A4) fail. The manuscript must state the boundary convention explicitly and confirm that the implementation uses circular shifts. Otherwise Theorem 3.1 does not apply to the reported experiments.
- [Section 3, Eq. (15), Algorithm 1] The theoretical operator K in Eq. (12) is defined in terms of the CNN Nθ satisfying the ICC (A3). In Algorithm 1, ICC is instead imposed by defining winv = π^{-1}·w for the inverse permutation and never querying Nθ for π^{-1}. This creates an effective operator that coincides with (12) only if the CNN itself satisfies (15). Since a generic trained CNN will not satisfy ICC as a function on X×X, the proof of Lemma 3.3 applies to the algorithm's effective map, not to the map (12) with an arbitrary Nθ. The paper should define the effective network output, e.g., Ñθ, and state that all theoretical statements are for that effective map, so that the theorem and the implementation refer to the same object.
- [Sections 2, 3, and Algorithm 2] The contraction guarantee is established for Dsym = φ(D), not for the denoiser D in Algorithm 1. The text itself notes that the normalization in D can destroy symmetry and that ∥D(·;ξ)∥2 can exceed 1. Nevertheless, the standalone denoising results in Figure 2 and Table 4 are reported for Algorithm 1's D, not for Dsym. In addition, the warm-up phase of Algorithm 2 updates the reference ξ, so the contraction theorem does not cover the initial N_warm iterations; the paper acknowledges this but the abstract and contribution statements should consistently scope 'globally nonexpansive denoiser' and 'globally convergent reconstruction' to the symmetrized, frozen-reference operator to avoid overclaiming.
minor comments (4)
- [Section 4] The claim that T[R] contains no nontrivial order-2 elements depends on the lattice dimensions being larger than 2R. On a torus of side length ≤ 2R, a shift by half the side length is an involution. Since Algorithm 1 skips all involutions, the effective permutation set is smaller than G; please state the size condition and note that the analysis applies to the reduced set.
- [Section 2] G is repeatedly called a 'group of permutations,' but T[R] is only inversion-closed and is not closed under composition. The assumptions actually use a set of permutations with inversion closure and transitivity of the generated action. The terminology should be corrected or clarified.
- [Appendix, Theorem 3.1 proof] In the proof, the reference to Eq. (29) is ambiguous; the displayed expression for K_{ij} should be numbered or cited accurately. This is a minor presentation issue but helps the reader verify the irreducibility argument.
- [Equation (17)] The notation C^{1/2}DC^{-1/2}(x) is dense and appears before its componentwise convention is fully explained. A short example or an explicit matrix expression would improve readability.
Circularity Check
No significant circularity: the nonexpansive/contractive guarantees are architecturally enforced and proved from stated assumptions.
full rationale
The paper's central derivation is self-contained. Nonexpansivity of Dsym is not a fitted prediction; it is imposed by the explicit symmetrization formula (17), which by construction yields a symmetric, entrywise nonnegative, stochastic operator, and Lemma 3.4 then verifies these properties from the definition. Contractivity in Theorem 3.1 follows from a spectral argument: Dsym has eigenvalues in [-1,1], transitivity (A4) gives Perron-Frobenius irreducibility so the eigenvalue 1 is simple, and (A5) rules out E u = u, yielding ||Dsym E||_2 < 1. No parameter is fit to a subset of data and then reported as a prediction of a closely related quantity; the trained network weights affect denoising quality and PSNR but not the validity of the contraction bound. The ICC condition (A3) is enforced by construction in Algorithm 1 (w_inv = pi^{-1} . w), and the paper explicitly states it is imposed rather than derived from data. The only self-citation (Gavaskar et al., 2021, Chandhury coauthor) appears in a contextual list of prior PnP dynamical-systems analyses and is not load-bearing for the main theorem. Concerns about boundary conventions or exact implementation-theory alignment of ICC are correctness/robustness issues, not circularity, because they concern whether the implemented operator satisfies the stated assumptions, not whether the proof reduces to its own conclusion.
Assumptions & free parameters
free parameters (5)
- CNN parameters θ
- Reference noise multiplier δ =
1.2
- Permutation radius R =
7
- Warm-up iterations N_warm =
20
- HQS penalty ρ
assumptions (5)
- domain assumption A2 strict positivity: Nθ(x,y) > 0 for all x,y
- ad hoc to paper A3 Inverse-Consistency Condition (ICC), eq. (15)
- domain assumption A4 transitivity of permutation set G
- domain assumption A5 nonannihilating forward model Ae ≠ 0
- standard math Perron-Frobenius theorem and spectral theorem for symmetric matrices
Cite this review
Pith. "Pith review of Trainable Nonexpansive Denoisers for Contractive Image Reconstruction." pith.science (2026). https://pith.science/paper/XSN5JRPL
@misc{pith2026260723347,
author = {Pith},
title = {Pith review of: Trainable Nonexpansive Denoisers for Contractive Image Reconstruction},
year = {2026},
howpublished = {\url{https://pith.science/paper/XSN5JRPL}},
note = {Machine review of arXiv:2607.23347}
}
abstract
Trainable denoisers with Lipschitz control have become central to convergent image reconstruction. However, training neural networks that simultaneously offer strong denoising performance and global Lipschitz guarantees is challenging. Existing approaches enforce Lipschitz control only empirically, providing no guarantees beyond the training data. In this work, we show that by exploiting the action of permutations on the image lattice, we can constrain a neural architecture that is globally nonexpansive (Lipschitz bound $\leqslant 1$). We integrate the proposed denoiser with forward imaging operators to develop a reconstruction mechanism that is provably contractive and therefore globally convergent. Experiments on standard inverse problems, such as superresolution and deblurring, demonstrate that our reconstruction performance is competitive with softly constrained baselines while providing Lipschitz guarantees.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[7]
Improving lipschitz-constrained neural networks by learning activation functions
Ducotterd, S., Goujon, A., Bohra, P., Perdios, D., Neumayer, S., and Unser, M. Improving lipschitz-constrained neural networks by learning activation functions. Journal of Machine Learning Research, 25 0 (65): 0 1--30, 2024
2024
-
[1]
Oracle inequalities and minimax rates for nonlocal means and related adaptive kernel-based methods
Arias-Castro, E., Salmon, J., and Willett, R. Oracle inequalities and minimax rates for nonlocal means and related adaptive kernel-based methods. SIAM Journal on Imaging Sciences, 5 0 (3): 0 944--992, 2012
2012
-
[2]
Bauschke, H. H. and Combettes, P. L. Convex Analysis and Monotone Operator Theory in Hilbert Spaces. Springer, 2011
2011
-
[3]
Bouman, C. A. Foundations of Computational Imaging: A Model-Based Approach. SIAM, 2022
2022
-
[4]
A non-local algorithm for image denoising
Buades, A., Coll, B., and Morel, J.-M. A non-local algorithm for image denoising. Proc. CVPR, 2: 0 60--65, 2005
2005
-
[5]
It has potential: G radient-driven denoisers for convergent solutions to inverse problems
Cohen, R., Blau, Y., Freedman, D., and Rivlin, E. It has potential: G radient-driven denoisers for convergent solutions to inverse problems. Proc. NeurIPS, pp.\ 18152--18164, 2021
2021
-
[6]
Image denoising by sparse 3- D transform-domain collaborative filtering
Dabov, K., Foi, A., Katkovnik, V., and Egiazarian, K. Image denoising by sparse 3- D transform-domain collaborative filtering. IEEE Trans. Image Process., 16 0 (8): 0 2080--2095, 2007
-
[8]
Dummit, D. S. and Foote, R. M. Abstract algebra. Wiley, 2004
2004
Show all 177 references
-
[9]
Image denoising: The deep learning revolution and beyond—a survey paper
Elad, M., Kawar, B., and Vaksman, G. Image denoising: The deep learning revolution and beyond—a survey paper. SIAM J. Imaging Sci., 16 0 (3): 0 1594--1654, 2023
2023
-
[10]
G., Athalye, C
Gavaskar, R. G., Athalye, C. D., and Chaudhury, K. N. On plug-and-play regularization using linear denoisers. IEEE Trans. Image Process., 30: 0 4802--4813, 2021
2021
-
[11]
A neural-network-based convex regularizer for inverse problems
Goujon, A., Neumayer, S., Bohra, P., Ducotterd, S., and Unser, M. A neural-network-based convex regularizer for inverse problems. IEEE Trans. Comput. Imaging, 9: 0 781--795, 2023
2023
-
[12]
Learning weakly convex regularizers for convergent image-reconstruction algorithms
Goujon, A., Neumayer, S., and Unser, M. Learning weakly convex regularizers for convergent image-reconstruction algorithms. SIAM J. Imaging Sci., 17 0 (1): 0 91--115, 2024
2024
-
[13]
Convolutional proximal neural networks and plug-and-play algorithms
Hertrich, J., Neumayer, S., and Steidl, G. Convolutional proximal neural networks and plug-and-play algorithms. Linear Algebra Appl., 631: 0 203--234, 2021
2021
-
[14]
Horn, R. A. and Johnson, C. R. Matrix Analysis. Cambridge University Press, 2012
2012
-
[15]
Gradient step denoiser for convergent plug-and-play
Hurault, S., Leclaire, A., and Papadakis, N. Gradient step denoiser for convergent plug-and-play. Proc. ICLR, 2022 a
2022
-
[16]
Proximal denoiser for convergent plug-and-play optimization with nonconvex regularization
Hurault, S., Leclaire, A., and Papadakis, N. Proximal denoiser for convergent plug-and-play optimization with nonconvex regularization. Proc. ICML, pp.\ 9483--9505, 2022 b
2022
-
[17]
Denoising diffusion restoration models
Kawar, B., Elad, M., Ermon, S., and Song, J. Denoising diffusion restoration models. Proc. NeurIPS, pp.\ 23593--23606, 2022
2022
-
[18]
Moreau, J. J. Proximit\' e et dualit\' e dans un espace H ilbertien. Bull. Soc. Math. Fr., 93: 0 273--299, 1965
1965
-
[19]
Learning maximally monotone operators for image recovery
Pesquet, J.-C., Repetti, A., Terris, M., and Wiaux, Y. Learning maximally monotone operators for image recovery. SIAM J. Imaging Sci., 14 0 (3): 0 1206--1237, 2021
2021
-
[20]
Reehorst, E. T. and Schniter, P. Regularization by denoising: Clarifications and new interpretations. IEEE Trans. Comput. Imaging, 5 0 (1): 0 52--67, 2018
2018
-
[21]
The little engine that could: Regularization by Denoising ( RED )
Romano, Y., Elad, M., and Milanfar, P. The little engine that could: Regularization by Denoising ( RED ). SIAM J. Imaging Sci., 10 0 (4): 0 1804--1844, 2017
2017
-
[22]
I., Osher, S., and Fatemi, E
Rudin, L. I., Osher, S., and Fatemi, E. Nonlinear total variation based noise removal algorithms. Phys. D: Nonlinear Phenom., 60 0 (1-4): 0 259--268, 1992
1992
-
[23]
Plug-and-play methods provably converge with properly trained denoisers
Ryu, E., Liu, J., Wang, S., Chen, X., Wang, Z., and Yin, W. Plug-and-play methods provably converge with properly trained denoisers. Proc. ICML, pp.\ 5546--5557, 2019
2019
-
[24]
V., Wohlberg, B., Buzzard, G
Sreehari, S., Venkatakrishnan, S. V., Wohlberg, B., Buzzard, G. T., Drummy, L. F., Simmons, J. P., and Bouman, C. A. Plug-and-play priors for bright field electron tomography and sparse interpolation. IEEE Trans. Comput. Imaging, 2 0 (4): 0 408--423, 2016
2016
-
[25]
N., Kaiser, L
Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., Kaiser, L. u., and Polosukhin, I. Attention is all you need. Proc. NeurIPS, 2017
2017
-
[26]
V., Bouman, C
Venkatakrishnan, S. V., Bouman, C. A., and Wohlberg, B. Plug-and-play priors for model based reconstruction. In 2013 IEEE global conference on signal and information processing, pp.\ 945--948. IEEE, 2013
2013
-
[27]
and Scaman, K
Virmaux, A. and Scaman, K. Lipschitz regularity of deep neural networks: analysis and efficient estimation. Proc. NeurIPS, 2018
2018
-
[28]
Non-local neural networks
Wang, X., Girshick, R., Gupta, A., and He, K. Non-local neural networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp.\ 7794--7803, 2018
2018
-
[29]
Learning pseudo-contractive denoisers for inverse problems
Wei, D., Chen, P., and Li, F. Learning pseudo-contractive denoisers for inverse problems. Proc. ICML, 2024
2024
-
[30]
Learning cocoercive conservative denoisers via helmholtz decomposition for poisson imaging inverse problems
Wei, D., Chen, P., Xu, H., Yao, J., Li, F., and Zeng, T. Learning cocoercive conservative denoisers via helmholtz decomposition for poisson imaging inverse problems. Proc. NeuRIPS, 2025
2025
-
[31]
Basis prediction networks for effective burst denoising with large kernels
Xia, Z., Perazzi, F., Gharbi, M., Sunkavalli, K., and Chakrabarti, A. Basis prediction networks for effective burst denoising with large kernels. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pp.\ 11844--11853, 2020
2020
-
[32]
Beyond a G aussian denoiser: Residual learning of deep CNN for image denoising
Zhang, K., Zuo, W., Chen, Y., Meng, D., and Zhang, L. Beyond a G aussian denoiser: Residual learning of deep CNN for image denoising. IEEE Trans. Image Process., 26 0 (7): 0 3142--3155, 2017 a
2017
-
[33]
Learning deep cnn denoiser prior for image restoration
Zhang, K., Zuo, W., Gu, S., and Zhang, L. Learning deep cnn denoiser prior for image restoration. Proc. CVPR, pp.\ 3929--3938, 2017 b
2017
-
[34]
Plug-and-play image restoration with deep denoiser prior
Zhang, K., Li, Y., Zuo, W., Zhang, L., Van Gool, L., and Timofte, R. Plug-and-play image restoration with deep denoiser prior. IEEE Trans. Pattern Anal. Mach. Intell., 44 0 (10): 0 6360--6376, 2021
2021
-
[35]
Zhang, K., Li, Y., Liang, J., Cao, J., Zhang, Y., Tang, H., Fan, D.-P., Timofte, R., and Gool, L. V. Practical blind image denoising via S win- C onv- UN et and data synthesis. Mach. Intell. Res., 20 0 (6): 0 822--836, 2023
2023
-
[36]
Residual non-local attention networks for image restoration
Zhang, Y., Li, K., Li, K., Zhong, B., and Fu, Y. Residual non-local attention networks for image restoration. In Proceedings of the International Conference on Learning Representations (ICLR), 2019
2019
-
[37]
2015 , journal=
On the convergence of the iterates of the ``fast iterative shrinkage/thresholding algorithm'' , author =. 2015 , journal=
2015
-
[38]
2014 , publisher=
Proximal algorithms , author=. 2014 , publisher=
2014
-
[39]
Non-local sparse models for image restoration , author=. Proc. ICCV , pages=. 2009 , organization=
2009
-
[40]
and Hunt, Bobby R
Andrews, Harry C. and Hunt, Bobby R. , title =. 1977 , publisher =
1977
-
[41]
Nature , volume=
Deep Learning , author=. Nature , volume=
-
[42]
Tuning-free plug-and-play proximal algorithm for inverse imaging problems , author =. Proc. ICML , pages=
-
[43]
Variational networks: An optimal control approach to early stopping variational methods for image restoration , author=. J. Math. Imaging Vis. , volume=. 2020 , publisher=
2020
-
[44]
Zhang, Kai and Li, Yawei and Liang, Jingyun and Cao, Jiezhang and Zhang, Yulun and Tang, Hao and Fan, Deng-Ping and Timofte, Radu and Gool, Luc Van , title =. Mach. Intell. Res. , volume=. 2023 , publisher=
2023
-
[45]
Dong, Chao and Loy, Chen Change and Tang, Xiaoou , title=. Proc. ECCV , year=
-
[46]
Nonlinear total variation based noise removal algorithms , author=. Phys. D: Nonlinear Phenom. , volume=. 1992 , publisher=
1992
-
[47]
IEEE Trans
A neural-network-based convex regularizer for inverse problems , author=. IEEE Trans. Comput. Imaging , volume=
-
[48]
Geman, Stuart and Graffigne, Christine , journal=. Markov
-
[49]
Huang, Jia-Bin and Singh, Abhishek and Ahuja, Narendra , title =. Proc. CVPR , month =
-
[50]
Tachella, Julia and Chen, Dongdong and Hurault, Samuel and Terris, M and Wang, Andrew , journal=
-
[51]
A database of human segmented natural images and its application to evaluating segmentation algorithms and measuring ecological statistics , year=
Martin, David and Fowlkes, Charless and Tal, Doron and Malik, Jitendra , journal=. A database of human segmented natural images and its application to evaluating segmentation algorithms and measuring ecological statistics , year=
-
[52]
2016 , publisher=
Variational Methods in Image Processing , author =. 2016 , publisher=
2016
-
[53]
Restormer:
Syed Waqas Zamir and Aditya Arora and Salman Khan and Munawar Hayat and Fahad Shahbaz Khan and Ming-Hsuan Yang , journal=. Restormer:
-
[54]
Learning a deep convolutional network for image super-resolution , author=. Proc. ECCV , pages=. 2014 , organization=
2014
-
[55]
, author=
A Wavelet Tour of Signal Process. , author=. 1999 , publisher=
1999
-
[56]
and Chaudhury, Kunal N
Sinha, A. and Chaudhury, Kunal N. , journal=. On the strong convexity of. 2024 , publisher=
2024
-
[57]
2012 , publisher=
Digital Picture Processing: An Introduction , author=. 2012 , publisher=
2012
-
[58]
Total Generalized Variation , author=. SIAM J. Imaging Sci. , volume=
-
[59]
Digital image smoothing and the sigma filter , author=. Comput. Gr. Image Process. , volume=. 1983 , publisher=
1983
-
[60]
On instabilities of deep learning in image reconstruction and the potential costs of
Antun, Vegard and Renna, Francesco and Poon, Clarice and Adcock, Ben and Hansen, Anders C , journal=. On instabilities of deep learning in image reconstruction and the potential costs of
-
[61]
SIAM Review , volume=
The Troublesome Kernel: On Hallucinations, No Free Lunches, and the Accuracy-Stability Tradeoff in Inverse Problems , author=. SIAM Review , volume=
-
[62]
2022 , publisher=
Computer Vision: Algorithms and Applications , author=. 2022 , publisher=
2022
-
[63]
IEEE Trans
Kernel regression for image processing and reconstruction , author=. IEEE Trans. Image Process. , volume=. 2007 , publisher=
2007
-
[64]
Bilateral filtering for gray and color images , author=. Proc. ICCV , pages=
-
[65]
IEEE Signal Process
Fast high-dimensional kernel filtering , author=. IEEE Signal Process. Lett. , volume=
-
[66]
Averaged deep denoisers for image regularization , author=. J. Math. Imaging Vis. , pages =. 2024 , publisher=
2024
-
[67]
Plug-and-play methods provably converge with properly trained denoisers , author=. Proc. ICML , pages=
-
[68]
Hyperspectral image fusion using fast high-dimensional denoising , author=. Proc. IEEE ICIP , pages=
-
[69]
, journal=
Reddy, P and Chaudhury, Kunal N. , journal=. Learning to optimally sample in
-
[70]
IEEE Trans
Plug-and-play regularization using linear solvers , author=. IEEE Trans. Image Process. , volume=
-
[71]
Plug-and-play
Chan, Stanley H and Wang, Xiran and Elgendy, Omar A , journal=. Plug-and-play. 2017 , publisher=
2017
-
[72]
Backtracking strategies for accelerated descent methods with smooth composite objectives , author=. SIAM J. Optim. , volume=
-
[73]
2011 , publisher=
Convex Analysis and Monotone Operator Theory in Hilbert Spaces , author=. 2011 , publisher=
2011
-
[74]
1983 , publisher=
Matrix Computations , author=. 1983 , publisher=
1983
-
[75]
Johnstone, P. R. and Moulin, P. , journal=. A
-
[76]
, journal=
Milanfar, P. , journal=
-
[77]
IEEE Trans
Plug-and-play priors for bright field electron tomography and sparse interpolation , author=. IEEE Trans. Comput. Imaging , volume=
-
[78]
IEEE Signal Process
Plug-and-play methods for magnetic resonance imaging: Using denoisers for image recovery , author=. IEEE Signal Process. Mag. , volume=
-
[79]
and Boley, D
Tao, S. and Boley, D. and Zhang, S. , journal=. Local linear convergence of
-
[80]
An inertial forward-backward algorithm for monotone inclusions , author=. J. Math. Imaging Vis. , volume=. 2015 , publisher=
2015
-
[81]
The little engine that could:
Romano, Yaniv and Elad, Michael and Milanfar, Peyman , journal=. The little engine that could:
-
[82]
2009 , journal =
A fast iterative shrinkage-thresholding algorithm for linear inverse problems , author =. 2009 , journal =
2009
-
[83]
IEEE Trans
Global image denoising , author=. IEEE Trans. Image Process. , volume=
-
[84]
Teodoro, A. M. and Bioucas-Dias, J. M. and Figueiredo, M. A. T. , journal =. A convergent image fusion algorithm using scene-adapted. 2019 , volume =
2019
-
[85]
Lipschitz regularity of deep neural networks: analysis and efficient estimation , author =. Proc. NeurIPS , year=
-
[86]
IEEE Trans
Plug-and-play image restoration with deep denoiser prior , author =. IEEE Trans. Pattern Anal. Mach. Intell. , year=
-
[87]
2022 , publisher =
Foundations of Computational Imaging: A Model-Based Approach , author=. 2022 , publisher =
2022
-
[88]
Regularization by denoising:
Reehorst, Edward T and Schniter, Philip , journal=. Regularization by denoising:
-
[89]
and Foi, A
Dabov, K. and Foi, A. and Katkovnik, V. and Egiazarian, K. , journal=. Image denoising by sparse 3-
-
[90]
A non-local algorithm for image denoising , author=. Proc. CVPR , volume=
-
[91]
2017 , publisher =
First-Order Methods in Optimization , author=. 2017 , publisher =
2017
-
[92]
1981 , journal =
The Rate of Convergence of a Matrix Power Series , author =. 1981 , journal =
1981
-
[93]
and Johnson, Charles R
Horn, Roger A. and Johnson, Charles R. , year=. Matrix Analysis , publisher=
-
[94]
Meyer, C. D. , edition=. Matrix Analysis and Applied Linear Algebra , publisher =
-
[95]
R. G. Gavaskar and C. D. Athalye and K. N. Chaudhury , title =. Signal Process. , volume =
-
[96]
Symmetrizing smoothing filters , author=. SIAM J. Imaging Sci. , volume=
-
[97]
On the contractivity of plug-and-play operators , year=
Athalye, Chirayu D and Chaudhury, Kunal N and Kumar, Bhartendu , journal=. On the contractivity of plug-and-play operators , year=
-
[98]
, journal=
Athalye, Chirayu D and Chaudhury, Kunal N. , journal=. Corrections to “
-
[99]
Plug-and-play
Gavaskar, Ruturaj G and Chaudhury, Kunal N , journal=. Plug-and-play
-
[100]
2021 , journal=
On plug-and-play regularization using linear denoisers , author =. 2021 , journal=
2021
-
[101]
IEEE Signal Process
Provable convergence of plug-and-play priors with. IEEE Signal Process. Lett. , author =. 2020 , pages =
2020
-
[102]
It has potential:
Cohen, Regev and Blau, Yochai and Freedman, Daniel and Rivlin, Ehud , journal=. It has potential:
-
[103]
Equivariant plug-and-play image reconstruction , author =. Proc. CVPR , pages=
-
[104]
J. J. Moreau , title=. Bull. Soc. Math. Fr. , volume=. 1965 , pages=
1965
-
[105]
IEEE Signal Process
Study on convergence of plug-and-play. IEEE Signal Process. Lett. , author =. 2021 , pages =
2021
-
[106]
and Mukherjee, S
Hauptmann, A. and Mukherjee, S. and Schönlieb, C.-B. and Sherry, F. , year =. Convergent regularization in inverse problems and linear plug-and-play denoisers , journal =
-
[107]
Learning maximally monotone operators for image recovery , volume =
Pesquet, Jean-Christophe and Repetti, Audrey and Terris, Matthieu and Wiaux, Yves , journal=. Learning maximally monotone operators for image recovery , volume =. 2021 , pages =
2021
-
[108]
Gradient step denoiser for convergent plug-and-play , author=. Proc. ICLR , year=
-
[109]
IEEE Signal Process
Plug-and-play methods for integrating physical and learned models in computational imaging: Theory, algorithms, and applications , author=. IEEE Signal Process. Mag. , volume=
-
[110]
IEEE Trans
Deep convolutional neural network for inverse problems in imaging , author=. IEEE Trans. Image Process. , volume=
-
[111]
Regularization by denoising via fixed-point projection (. SIAM J. Imaging Sci. , author=. 2021 , pages =
2021
-
[112]
Fast nonlocal filtering applied to electron cryomicroscopy , author=. Proc. ISBI , pages=
-
[113]
ACM Trans
Gaussian KD-Trees for Fast High-Dimensional Filtering , author=. ACM Trans. Graph. , volume=
-
[114]
IEEE Trans
Fast high-dimensional bilateral and nonlocal means filtering , author=. IEEE Trans. Image Process. , volume=
-
[115]
Learning weakly convex regularizers for convergent image-reconstruction algorithms , volume =. SIAM J. Imaging Sci. , author=. 2024 , pages =
2024
-
[116]
Energy dissipation with plug-and-play priors , author=. Proc. NeurIPS Workshops , year=
-
[117]
Linear Algebra Appl
Convolutional proximal neural networks and plug-and-play algorithms , volume =. Linear Algebra Appl. , author=. 2021 , pages =
2021
-
[118]
Adaptive restart for accelerated gradient schemes , volume =. Found. Comput. Math. , author =. 2015 , pages =
2015
-
[119]
and Zuo, W
Zhang, K. and Zuo, W. and Chen, Y. and Meng, D. and Zhang, L. , journal=. Beyond a. 2017 , volume=
2017
-
[120]
Learning Deep CNN Denoiser Prior for Image Restoration , author=. Proc. CVPR , pages=
-
[121]
Mathematical Programming , author =
Scaled relative graph: Nonexpansive operators via. Mathematical Programming , author =. 2022 , volume =
2022
-
[122]
Image denoising: The deep learning revolution and beyond—A survey paper , volume =. SIAM J. Imaging Sci. , author=
-
[123]
2008 , edition=
Linear and Nonlinear Programming , author=. 2008 , edition=
2008
-
[124]
J. W. Daniel , title =. J. Soc. Ind. Appl. Math. , volume =
-
[125]
IEEE Trans
Nonlinear image recovery with half-quadratic regularization , author=. IEEE Trans. Image Process. , volume=
-
[126]
Proximal Denoiser for Convergent Plug-and-Play Optimization with Nonconvex Regularization , pages =. Proc. ICML , author=
-
[127]
Viscosity approximation methods for nonexpansive mappings , volume =. J. Math. Anal. Appl. , author =
-
[128]
Viscosity Solutions of Minimization Problems , volume =. SIAM J. Optim. , author=
-
[129]
Convex Bi-level Optimization Problems with Nonsmooth Outer Objective Function , volume =. SIAM J. Optim. , author =
-
[130]
A First Order Method for Solving Convex Bilevel Optimization Problems , volume =. SIAM J. Optim. , author=
-
[131]
NTIRE 2023 challenge on image super-resolution (x4): Methods and results , author=. Proc. CVPR Workshops , pages=
2023
-
[132]
ICCV Workshops , author=
Proc. ICCV Workshops , author=
-
[133]
ECCV , author=
Proc. ECCV , author=
-
[134]
Diffusion Posterior Sampling for General Noisy Inverse Problems , author=. Proc. ICLR , year =
-
[135]
Diffusion. Proc. NeurIPS , author=
-
[136]
Denoising Diffusion Restoration Models , pages =. Proc. NeurIPS , author=
-
[137]
Denoising diffusion models for plug-and-play image restoration , author=. Proc. CVPR Workshops , pages=
-
[138]
Plug-and-play algorithms for large-scale snapshot compressive imaging , author =. Proc. CVPR , pages=
-
[139]
CVPR , author=
Proc. CVPR , author=
-
[140]
An algorithm for total variation minimization and applications , author=. J. Math. Imaging Vis. , volume=. 2004 , publisher=
2004
-
[141]
Wavelet algorithms for high-resolution image reconstruction , author=. SIAM J. Sci. Comput. , volume=. 2003 , publisher=
2003
-
[142]
Provably convergent plug-and-play quasi-
Tan, Hong Ye and Mukherjee, Subhadip and Tang, Junqi and Sch\". Provably convergent plug-and-play quasi-. SIAM J. Imaging Sci. , volume=. 2024 , publisher=
2024
-
[143]
Levin, Anat and Weiss, Yair and Durand, Fredo and Freeman, William T , title=. Proc. CVPR , year=
-
[144]
2021 , pages=
Choi, Jooyoung and Kim, Sungwon and Jeong, Yonghyun and Gwon, Youngjune and Yoon, Sungroh , journal=. 2021 , pages=
2021
-
[145]
Plug-and-. Proc. IEEE GlobalSIP , author =. 2013 , pages =
2013
-
[146]
Attention is All you Need , year =
Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N and Kaiser, ukasz and Polosukhin, Illia , journal =. Attention is All you Need , year =
-
[147]
An image is worth 16x16 words:
Dosovitskiy, Alexey and Beyer, Lucas and Kolesnikov, Alexander and Weissenborn, Dirk and Zhai, Xiaohua and Unterthiner, Thomas and Dehghani, Mostafa and Minderer, Matthias and Heigold, Georg and Gelly, Sylvain and Uszkoreit, Jakob and Houlsby, Neil , journal=. An image is wort...
-
[148]
Mehrsa Pourya and Erich Kobler and Michael Unser and Sebastian Neumayer , journal=
-
[149]
U-net: Convolutional networks for biomedical image segmentation , author=. Proc. MICCAI , pages=
-
[150]
Multiscale Model
An iterative regularization method for total variation-based image restoration , author=. Multiscale Model. Simul. , volume=. 2005 , publisher=
2005
-
[151]
A first-order primal-dual algorithm for convex problems with applications to imaging , author=. J. Math. Imaging Vis. , volume=. 2011 , publisher=
2011
-
[152]
and Chaudhury, Kunal N
Sinha, Arghya and Kumar, Bhartendu and Athalye, Chirayu D. and Chaudhury, Kunal N. , journal=. Linear Convergence of Plug-and-Play Algorithms With Kernel Denoisers , year=
-
[153]
Iteratively. Numer. Funct. Anal. Optim. , author =. 2024 , pages =
2024
-
[154]
and Black, M.J
Roth, S. and Black, M.J. , journal =. Fields of Experts: a framework for learning image priors , year=
-
[155]
Nesterov, Yu. E. , title =. Sov. Math., Dokl. , pages =
-
[156]
Timofte, Radu and Agustsson, Eirikur and Gool, Luc Van and Yang, Ming-Hsuan and Zhang, Lei and Lim, Bee and Son, Sanghyun and Kim, Heewon and Nah, Seungjun and Lee, Kyoung Mu and Wang, Xintao and Tian, Yapeng and Yu, Ke and Zhang, Yulun and Wu, Shixiang and Dong, Chao and Lin,...
2017
-
[157]
arXiv preprint arXiv:2302.10886 , year=
Some fundamental aspects about lipschitz continuity of neural networks , author=. arXiv preprint arXiv:2302.10886 , year=
-
[158]
Machine Learning , volume=
Regularisation of neural networks by enforcing lipschitz continuity , author=. Machine Learning , volume=. 2021 , publisher=
2021
-
[159]
2013 IEEE global conference on signal and information processing , pages=
Plug-and-play priors for model based reconstruction , author=. 2013 IEEE global conference on signal and information processing , pages=. 2013 , organization=
2013
-
[160]
Journal of Mathematical Imaging and Vision , volume=
On maximum a posteriori estimation with plug & play priors and stochastic gradient descent , author=. Journal of Mathematical Imaging and Vision , volume=. 2023 , publisher=
2023
-
[161]
SIAM Journal on Imaging Sciences , volume=
Oracle inequalities and minimax rates for nonlocal means and related adaptive kernel-based methods , author=. SIAM Journal on Imaging Sciences , volume=. 2012 , publisher=
2012
-
[162]
Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
Non-local Neural Networks , author=. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
-
[163]
Advances in Neural Information Processing Systems (NeurIPS) , volume=
Non-Local Recurrent Network for Image Restoration , author=. Advances in Neural Information Processing Systems (NeurIPS) , volume=
-
[164]
Proceedings of the International Conference on Learning Representations (ICLR) , year=
Residual Non-local Attention Networks for Image Restoration , author=. Proceedings of the International Conference on Learning Representations (ICLR) , year=
-
[165]
Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
Burst Denoising with Kernel Prediction Networks , author=. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
-
[166]
Proceedings of the IEEE International Conference on Image Processing (ICIP) , pages=
Multi-Kernel Prediction Networks for Denoising of Burst Images , author=. Proceedings of the IEEE International Conference on Image Processing (ICIP) , pages=
-
[167]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
Basis Prediction Networks for Effective Burst Denoising With Large Kernels , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
-
[168]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
Deep Graph Laplacian Regularization for Robust Denoising of Real Images , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages=
-
[169]
IEEE Signal Processing Letters , volume=
Deep Unrolled Graph Laplacian Regularization for Robust Time-of-Flight Depth Denoising , author=. IEEE Signal Processing Letters , volume=
-
[170]
Proceedings of the IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , pages=
Unrolling of Deep Graph Total Variation for Image Denoising , author=. Proceedings of the IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , pages=
-
[171]
, year =
Sinha, Arghya and Chaudhury, Kunal N. , year =
-
[172]
Proceedings of the IEEE/CVF international conference on computer vision workshops , pages=
Gcnet: Non-local networks meet squeeze-excitation networks and beyond , author=. Proceedings of the IEEE/CVF international conference on computer vision workshops , pages=
-
[173]
2008 5th IEEE International Symposium on biomedical imaging: from nano to macro , pages=
Fast nonlocal filtering applied to electron cryomicroscopy , author=. 2008 5th IEEE International Symposium on biomedical imaging: from nano to macro , pages=. 2008 , organization=
2008
-
[174]
2004 , publisher=
Abstract algebra , author=. 2004 , publisher=
2004
-
[175]
Learning Pseudo-Contractive Denoisers for Inverse Problems , author=. Proc. ICML , year=
-
[176]
Learning Cocoercive Conservative Denoisers via Helmholtz Decomposition for Poisson Imaging Inverse Problems , author=. Proc. NeuRIPS , year=
-
[177]
Journal of Machine Learning Research , year =
Stanislas Ducotterd and Alexis Goujon and Pakshal Bohra and Dimitris Perdios and Sebastian Neumayer and Michael Unser , title =. Journal of Machine Learning Research , year =
Reviewed July 31, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.