REVIEW 4 major objections 5 minor 45 references
Frequency-Domain Fusion Transformer for Image Inpainting
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read A Transformer inpainting architecture that fuses wavelet and Gabor frequency features preserves high-frequency texture better than self-attention alone.
desk verdict Incremental but real architecture; the paper's own Table II contradicts its 'consistently superior' claim, so it needs major revision plus the missing Gabformer baseline. 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 load-bearing mechanism is the Frequency-Domain Fusion Attention (FDFA) paired with the Frequency-Domain Adaptive Gating Network (FDAGN). FDFA applies a discrete wavelet transform to the query, keeps the low-frequency LL subband for a depthwise convolution, and runs Gabor filters on the HL, LH, and HH subbands with a learnable wavelength so that filter scale adapts to local texture; the resulting query drives cross-channel attention of complexity $O(C\times C)$ rather than $O(M\times M)$. FDAGN replaces the standard feedforward network: it transforms feature blocks with the fast Fourier transform, applies a learnable complex filter initialized near identity, transforms back, and gates the result with GELU, which lets the network suppress redundant frequencies while preserving structure. The combination is what carries the paper's claim that high-frequency detail survives inpainting.
What would settle it
Run Dabformer on Places2 and CelebA with free-form irregular masks, holding everything else fixed, and compare PSNR and SSIM against Restormer, StrDiffusion, and FADformer. If the gains seen under random noise blocks shrink, vanish, or reverse on irregular masks, then the reported superiority is tied to the square-block corruption model rather than to general inpainting.
Extended reading notes
Core claim
On its own terms, the paper claims that the low-pass behavior of standard Transformer attention is the main obstacle to high-quality image inpainting, and that this obstacle can be removed by fusing two classical frequency tools into the Transformer. A wavelet decomposition splits the query into one low-frequency and three high-frequency subbands; Gabor filters aligned with each high-frequency subband's orientation extract directional textures; and a learnable FFT-domain filter takes over the feedforward network's role, adaptively suppressing noisy frequency components while retaining useful ones. Guided by a combination of L1, perceptual, edge, and SSIM losses, the four-level encoder-decoder then produces restorations that, in the paper's experiments, preserve more high-frequency detail than the compared methods. The authors present Dabformer as an extension of their earlier Gabor-guided deraining model, generalized from rain removal to damaged-image restoration.
Load-bearing premise
The inpainting experiments corrupt each image with random noise blocks of varying size and position, and the central claim assumes this synthetic corruption is a fair stand-in for real missing regions and for the irregular mask patterns used in standard inpainting benchmarks.
Editorial extensions
If this is right
- On dense, directional rain (Rain200H, DID-Data), the method reports the best or near-best PSNR and SSIM among the compared deraining models.
- Under 40–70% occlusion on Places2 and CelebA, Dabformer matches or exceeds diffusion-based inpainting baselines on PSNR and SSIM while using far fewer parameters (29.73M versus 114.05M for StrDiffusion).
- Ablations show that combining wavelet and Gabor query features raises PSNR from 23.80 to 24.71 dB on CelebA at 40–50% occlusion, and adding the FFT gating network raises it further to 26.62 dB.
- Adding perceptual, edge, and SSIM losses on top of L1 raises Rain200H PSNR from 31.97 to 32.34 dB, so each loss term contributes to detail preservation.
Reading between the lines
- Editorial inference: The same FDFA and FDAGN modules are likely transferable to other pixel-level restoration tasks such as super-resolution and deblurring, because the problem they solve—retaining high-frequency texture while suppressing noise—is not specific to rain or square-block damage.
- Editorial inference: Because the damage model uses random square blocks rather than free-form masks, the method's inpainting claim would be tested more sharply on irregular-mask benchmarks; the texture-preservation advantage may or may not survive that change.
- Editorial inference: The learnable wavelength in the Gabor filters suggests a natural extension to learnable orientation as well, which could handle textures whose directions do not align with the three fixed subband orientations.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Dabformer, a Transformer-based image inpainting network that integrates wavelet transform and Gabor filtering into a frequency-domain fusion attention mechanism (FDFA) and replaces the feedforward network with a learnable frequency-domain adaptive gating network (FDAGN). The model is evaluated on four deraining datasets and on a 'damaged image restoration' task built by adding random noise blocks of varying size and position to Places2 and CelebA. The authors claim consistent state-of-the-art performance and improved high-frequency preservation for image inpainting.
Significance. The architectural idea of adaptively combining wavelet multiscale decomposition with directional Gabor filtering is timely, and the ablation study suggests that each proposed component contributes to the reported scores. However, the paper's central empirical claim is not established: Table II contradicts the claim of consistent superiority in inpainting, the evaluation protocol diverges from standard free-form-mask inpainting benchmarks, and the claimed high-frequency benefit is never directly measured. The deraining results are also not consistently superior across datasets. The paper would need a substantially revised experimental study to support its claims.
major comments (4)
- [Section IV-F2, Table II] The abstract and Section IV-F2 claim that the proposed method achieves 'consistently superior performance' and the highest PSNR/SSIM under moderate and heavy occlusion. Table II contradicts this: under 60-70% occlusion on Places2, StrDiffusion achieves PSNR/SSIM 20.43/0.858 versus Dabformer's 20.04/0.792; on CelebA 60-70%, StrDiffusion achieves 21.75/0.874 versus 21.44/0.842; on Places2 40-50%, Dabformer's PSNR lead over StrDiffusion is 0.03 dB (22.42 vs 22.39) while its SSIM is lower (0.780 vs 0.882). The central inpainting claim is therefore unsupported by the paper's own numbers.
- [Section IV-B] The damaged image restoration protocol corrupts each image with 'noise blocks of varying size and position' and does not provide a mask to the model. This is a blind restoration task, not the standard free-form-mask inpainting benchmark used in the field. Consequently, even if the results were strong, they would not establish the abstract's claim about image inpainting. The paper should evaluate on standard inpainting masks (for example, irregular masks) and compare with inpainting-specific methods.
- [Section IV-E, Table I] The text claims that on sparse-rain datasets 'our method still maintains a leading overall performance,' but Table I shows FADformer outperforms Dabformer on Rain200L (41.69/0.990 vs 41.66/0.990) and DDN-Data (34.42/0.960 vs 34.09/0.957). The claim of consistent superiority in deraining is inaccurate.
- [Section III and Section IV] The paper claims that the method preserves high-frequency information, but no frequency-domain metric or analysis is provided. The only evidence is PSNR and SSIM, which do not directly measure high-frequency fidelity. Please include spectral comparisons or a frequency-domain error metric to support the mechanism that is central to the paper's title and abstract.
minor comments (5)
- [Section III-B, Eq. (3)] Only Q is defined in Eq. (3); K and V are used in Eq. (4) but never defined. Please state explicitly how K and V are computed from the input feature maps.
- [Section III-D, Eq. (8)] The definition L_M = 1 - SSIM(O) is incomplete because SSIM takes two images; it should be written as 1 - SSIM(G_t, O).
- [Section III-A, Eq. (1)] The text below Eq. (1) refers to 'GTFFN modules', but the proposed module is called FDAGN. Please align the terminology.
- [Table II] The parameter count reported for Dabformer (29.73M) is identical to that of ICT (29.73M). Please verify that this is not a typo and provide the correct value.
- [Section IV-B] The noise-block corruption procedure is underspecified: the sizes, positions, number of blocks, and whether the blocks are contiguous are not stated. Please provide full details for reproducibility.
Circularity Check
No significant circularity: the central claim is an empirical architecture comparison, and the one self-citation is not load-bearing.
full rationale
The paper's derivation chain is a standard architecture paper: Eq. (1) defines the encoder block as a residual composition of FDFA and FDAGN; Eqs. (2)-(5) define Gabor filtering, frequency-domain fusion, and cross-channel attention; Eqs. (6)-(9) define a multi-term loss. None of these definitions contain the target quantity (inpainting PSNR/SSIM or high-frequency preservation) as an input, and none of the reported results are fitted parameters renamed as predictions. The learnable Gabor wavelength and the loss weights in Section III-D are trained or empirically set in the ordinary sense, and Table IV tests the loss components incrementally rather than treating a fitted weight as a performance claim. The only self-citation is Section III-C, where the post-IFFT operations of FDAGN are said to be 'consistent with our method in Gabformer [26]'; this identifies a reused building block but does not carry the inpainting claim, and the FDAGN's contribution is separately ablated in Table III. The paper is self-contained against external benchmarks (Restormer, StrDiffusion, RePaint, etc.), so the central comparison is not forced by a self-citation chain. The narrative in Section IV-F overstates Table II in places (e.g., Dabformer trails StrDiffusion in most heavy-occlusion cells and its best PSNR lead is 0.03 dB with a 0.102 SSIM deficit), but that is an evidence-vs-claim mismatch, not circularity.
Assumptions & free parameters
free parameters (4)
- Learnable Gabor wavelength =
not reported (initialized to 'reasonable prior')
- Gabor filter fixed parameters =
sigma=2*pi, psi=0, gamma=0.5
- Loss weights =
lambda1=10, lambdaP=0.6, lambdaE=0.4, lambdaM=0.5
- Channel expansion ratio =
2.66
assumptions (4)
- standard math Wavelet transform decomposes feature maps into LL, HL, LH, HH subbands with standard DWT
- standard math Gabor filters respond selectively to oriented textures with the given parameters
- domain assumption Self-attention is low-pass and loses high-frequency information
- ad hoc to paper Random noise block corruption models real-world damage for inpainting
Cite this review
Pith. "Pith review of Frequency-Domain Fusion Transformer for Image Inpainting." pith.science (2026). https://pith.science/paper/7MWFQMS5
@misc{pith2026250618437,
author = {Pith},
title = {Pith review of: Frequency-Domain Fusion Transformer for Image Inpainting},
year = {2026},
howpublished = {\url{https://pith.science/paper/7MWFQMS5}},
note = {Machine review of arXiv:2506.18437}
}
read the original abstract
Image inpainting plays a vital role in restoring missing image regions and supporting high-level vision tasks, but traditional methods struggle with complex textures and large occlusions. Although Transformer-based approaches have demonstrated strong global modeling capabilities, they often fail to preserve high-frequency details due to the low-pass nature of self-attention and suffer from high computational costs. To address these challenges, this paper proposes a Transformer-based image inpainting method incorporating frequency-domain fusion. Specifically, an attention mechanism combining wavelet transform and Gabor filtering is introduced to enhance multi-scale structural modeling and detail preservation. Additionally, a learnable frequency-domain filter based on the fast Fourier transform is designed to replace the feedforward network, enabling adaptive noise suppression and detail retention. The model adopts a four-level encoder-decoder structure and is guided by a novel loss strategy to balance global semantics and fine details. Experimental results demonstrate that the proposed method effectively improves the quality of image inpainting by preserving more high-frequency information.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Recurrent feature reasoning for image inpainting,
J. Li, N. Wang, L. Zhang, B. Du, and D. Tao, “Recurrent feature reasoning for image inpainting,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2020, pp. 7760– 7768
work page 2020
-
[2]
Misf: Multi- level interactive siamese filtering for high-fidelity image inpainting,
X. Li, Q. Guo, D. Lin, P. Li, W. Feng, and S. Wang, “Misf: Multi- level interactive siamese filtering for high-fidelity image inpainting,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 1869–1878
work page 2022
-
[3]
Image inpainting with learnable bidirectional attention maps,
C. Xie, S. Liu, C. Li, M.-M. Cheng, W. Zuo, X. Liu, S. Wen, and E. Ding, “Image inpainting with learnable bidirectional attention maps,” inProceedings of the IEEE/CVF international conference on computer vision, 2019, pp. 8858–8867
work page 2019
-
[4]
Attention is all you need,
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin, “Attention is all you need,”Advances in neural information processing systems, vol. 30, 2017
2017
-
[5]
Transfill: Reference-guided image inpainting by merging multiple color and spatial transformations,
Y . Zhou, C. Barnes, E. Shechtman, and S. Amirghodsi, “Transfill: Reference-guided image inpainting by merging multiple color and spatial transformations,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2021, pp. 2266–2276
work page 2021
-
[6]
High-fidelity pluralistic image completion with transformers,
Z. Wan, J. Zhang, D. Chen, and J. Liao, “High-fidelity pluralistic image completion with transformers,” inProceedings of the IEEE/CVF international conference on computer vision, 2021, pp. 4692–4701
work page 2021
-
[7]
Swinir: Image restoration using swin transformer,
J. Liang, J. Cao, G. Sun, K. Zhang, L. Van Gool, and R. Timofte, “Swinir: Image restoration using swin transformer,” inProceedings of the IEEE/CVF international conference on computer vision, 2021, pp. 1833–1844
2021
-
[8]
D. Zhang, F. Huang, S. Liu, X. Wang, and Z. Jin, “Swinfir: Revisiting the swinir with fast fourier convolution and improved training for image super-resolution,”arXiv preprint arXiv:2208.11247, 2022
arXiv 2022
Show all 45 references
-
[9]
Activating more pixels in image super-resolution transformer,
X. Chen, X. Wang, J. Zhou, Y . Qiao, and C. Dong, “Activating more pixels in image super-resolution transformer,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2023, pp. 22 367–22 377
2023
-
[10]
Hint: High-quality inpainting transformer with mask-aware encoding and enhanced atten- tion,
S. Chen, A. Atapour-Abarghouei, and H. P. Shum, “Hint: High-quality inpainting transformer with mask-aware encoding and enhanced atten- tion,”IEEE Transactions on Multimedia, 2024
2024
-
[11]
Transref: Multi-scale reference embedding transformer for reference- guided image inpainting,
T. Liu, L. Liao, D. Chen, J. Xiao, Z. Wang, C.-W. Lin, and S. Satoh, “Transref: Multi-scale reference embedding transformer for reference- guided image inpainting,”Neurocomputing, vol. 632, p. 129749, 2025
2025
-
[12]
Restormer: Efficient transformer for high-resolution image restoration,
S. W. Zamir, A. Arora, S. Khan, M. Hayat, F. S. Khan, and M.-H. Yang, “Restormer: Efficient transformer for high-resolution image restoration,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 5728–5739
2022
-
[13]
A practical guide to wavelet analysis,
C. Torrence and G. P. Compo, “A practical guide to wavelet analysis,” Bulletin of the American Meteorological society, vol. 79, no. 1, pp. 61– 78, 1998
1998
-
[14]
A review of convolutional neural networks and gabor filters in object recognition,
M. Rai and P. Rivas, “A review of convolutional neural networks and gabor filters in object recognition,” in2020 International Conference on Computational Science and Computational Intelligence (CSCI). IEEE, 2020, pp. 1560–1567
2020
-
[15]
Ft-tdr: Frequency-guided transformer and top-down refinement network for blind face inpainting,
J. Wang, S. Chen, Z. Wu, and Y .-G. Jiang, “Ft-tdr: Frequency-guided transformer and top-down refinement network for blind face inpainting,” IEEE Transactions on Multimedia, vol. 25, pp. 2382–2392, 2022
2022
-
[16]
Bridging global context interactions for high-fidelity image completion,
C. Zheng, T.-J. Cham, J. Cai, and D. Phung, “Bridging global context interactions for high-fidelity image completion,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 11 512–11 522. 12
2022
-
[17]
Incremental transformer structure en- hanced image inpainting with masking positional encoding,
Q. Dong, C. Cao, and Y . Fu, “Incremental transformer structure en- hanced image inpainting with masking positional encoding,” inPro- ceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 11 358–11 368
2022
-
[18]
Reduce information loss in transformers for pluralistic image inpainting,
Q. Liu, Z. Tan, D. Chen, Q. Chu, X. Dai, Y . Chen, M. Liu, L. Yuan, and N. Yu, “Reduce information loss in transformers for pluralistic image inpainting,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 11 347–11 357
2022
-
[19]
Mat: Mask- aware transformer for large hole image inpainting,
W. Li, Z. Lin, K. Zhou, L. Qi, Y . Wang, and J. Jia, “Mat: Mask- aware transformer for large hole image inpainting,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 10 758–10 768
2022
-
[20]
Image restoration refine- ment with uformer gan,
X. Ouyang, Y . Chen, K. Zhu, and G. Agam, “Image restoration refine- ment with uformer gan,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024, pp. 5919–5928
2024
-
[21]
Blind image inpainting via omni-dimensional gated attention and wavelet queries,
S. S. Phutke, A. Kulkarni, S. K. Vipparthi, and S. Murala, “Blind image inpainting via omni-dimensional gated attention and wavelet queries,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2023, pp. 1251–1260
2023
-
[22]
Multi-dimensional visual prompt enhanced image restoration via mamba-transformer ag- gregation,
A. Jiang, H. Chen, Z. Chen, J. Ye, and M. Wang, “Multi-dimensional visual prompt enhanced image restoration via mamba-transformer ag- gregation,”arXiv preprint arXiv:2412.15845, 2024
2024 arXiv
-
[23]
Real-time single image and video super- resolution using an efficient sub-pixel convolutional neural network,
W. Shi, J. Caballero, F. Husz ´ar, J. Totz, A. P. Aitken, R. Bishop, D. Rueckert, and Z. Wang, “Real-time single image and video super- resolution using an efficient sub-pixel convolutional neural network,” in Proceedings of the IEEE conference on computer vision and pattern r...
2016
-
[24]
U-net: Convolutional networks for biomedical image segmentation,
O. Ronneberger, P. Fischer, and T. Brox, “U-net: Convolutional networks for biomedical image segmentation,” inMedical image computing and computer-assisted intervention–MICCAI 2015: 18th international con- ference, Munich, Germany, October 5-9, 2015, proceedings, part III 18. ...
2015
-
[25]
Gabor filter-based edge detection,
R. Mehrotra, K. R. Namuduri, and N. Ranganathan, “Gabor filter-based edge detection,”Pattern recognition, vol. 25, no. 12, pp. 1479–1494, 1992
1992
-
[26]
Gabor-guided transformer for single image deraining,
S. He, G. Lin, and J. Feng, “Gabor-guided transformer for single image deraining,” in2024 10th International Conference on Systems and Informatics (ICSAI), 2024, pp. 1–6
2024
-
[27]
Very deep convolutional networks for large-scale image recognition,
K. Simonyan and A. Zisserman, “Very deep convolutional networks for large-scale image recognition,”arXiv preprint arXiv:1409.1556, 2014
2014 arXiv
-
[28]
Removing rain from a single image via discriminative sparse coding,
Y . Luo, Y . Xu, and H. Ji, “Removing rain from a single image via discriminative sparse coding,” inProceedings of the IEEE international conference on computer vision, 2015, pp. 3397–3405
2015
-
[29]
Rain streak removal using layer priors,
Y . Li, R. T. Tan, X. Guo, J. Lu, and M. S. Brown, “Rain streak removal using layer priors,” inProceedings of the IEEE conference on computer vision and pattern recognition, 2016, pp. 2736–2744
2016
-
[30]
Multi-scale progressive fusion network for single image deraining,
K. Jiang, Z. Wang, P. Yi, C. Chen, B. Huang, Y . Luo, J. Ma, and J. Jiang, “Multi-scale progressive fusion network for single image deraining,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2020, pp. 8346–8355
2020
-
[31]
Progressive image deraining networks: A better and simpler baseline,
D. Ren, W. Zuo, Q. Hu, P. Zhu, and D. Meng, “Progressive image deraining networks: A better and simpler baseline,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2019, pp. 3937–3946
2019
-
[32]
Multi-stage progressive image restoration,
S. W. Zamir, A. Arora, S. Khan, M. Hayat, F. S. Khan, M.-H. Yang, and L. Shao, “Multi-stage progressive image restoration,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2021, pp. 14 821–14 831
2021
-
[33]
Image de-raining trans- former,
J. Xiao, X. Fu, A. Liu, F. Wu, and Z.-J. Zha, “Image de-raining trans- former,”IEEE transactions on pattern analysis and machine intelligence, vol. 45, no. 11, pp. 12 978–12 995, 2022
2022
-
[34]
Hybrid cnn-transformer feature fusion for single image deraining,
X. Chen, J. Pan, J. Lu, Z. Fan, and H. Li, “Hybrid cnn-transformer feature fusion for single image deraining,” inProceedings of the AAAI conference on artificial intelligence, vol. 37, no. 1, 2023, pp. 378–386
2023
-
[35]
Learning a sparse transformer network for effective image deraining,
X. Chen, H. Li, M. Li, and J. Pan, “Learning a sparse transformer network for effective image deraining,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2023, pp. 5896– 5905
2023
-
[36]
Efficient frequency- domain image deraining with contrastive regularization,
N. Gao, X. Jiang, X. Zhang, and Y . Deng, “Efficient frequency- domain image deraining with contrastive regularization,” inEuropean Conference on Computer Vision. Springer, 2024, pp. 240–257
2024
-
[37]
Deep joint rain detection and removal from a single image,
W. Yang, R. T. Tan, J. Feng, J. Liu, Z. Guo, and S. Yan, “Deep joint rain detection and removal from a single image,” inProceedings of the IEEE conference on computer vision and pattern recognition, 2017, pp. 1357–1366
2017
-
[38]
Removing rain from single images via a deep detail network,
X. Fu, J. Huang, D. Zeng, Y . Huang, X. Ding, and J. Paisley, “Removing rain from single images via a deep detail network,” inProceedings of the IEEE conference on computer vision and pattern recognition, 2017, pp. 3855–3863
2017
-
[39]
Density-aware single image de-raining using a multi-stream dense network,
H. Zhang and V . M. Patel, “Density-aware single image de-raining using a multi-stream dense network,” inProceedings of the IEEE conference on computer vision and pattern recognition, 2018, pp. 695–704
2018
-
[40]
Places: A 10 million image database for scene recognition,
B. Zhou, A. Lapedriza, A. Khosla, A. Oliva, and A. Torralba, “Places: A 10 million image database for scene recognition,”IEEE transactions on pattern analysis and machine intelligence, vol. 40, no. 6, pp. 1452–1464, 2017
2017
-
[41]
Deep learning face attributes in the wild,
Z. Liu, P. Luo, X. Wang, and X. Tang, “Deep learning face attributes in the wild,” inProceedings of the IEEE international conference on computer vision, 2015, pp. 3730–3738
2015
-
[42]
Cmt: Convolutional neural networks meet vision transformers,
J. Guo, K. Han, H. Wu, Y . Tang, X. Chen, Y . Wang, and C. Xu, “Cmt: Convolutional neural networks meet vision transformers,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 12 175–12 185
2022
-
[43]
Repaint: Inpainting using denoising diffusion probabilistic models,
A. Lugmayr, M. Danelljan, A. Romero, F. Yu, R. Timofte, and L. Van Gool, “Repaint: Inpainting using denoising diffusion probabilistic models,” inProceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 11 461–11 471
2022
-
[44]
Image restoration with mean-reverting stochastic differential equations,
Z. Luo, F. K. Gustafsson, Z. Zhao, J. Sj ¨olund, and T. B. Sch ¨on, “Image restoration with mean-reverting stochastic differential equations,”arXiv preprint arXiv:2301.11699, 2023
2023 arXiv
-
[45]
Structure matters: Tackling the semantic discrepancy in diffusion models for image inpaint- ing,
H. Liu, Y . Wang, B. Qian, M. Wang, and Y . Rui, “Structure matters: Tackling the semantic discrepancy in diffusion models for image inpaint- ing,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024, pp. 8038–8047
2024
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.