Pith. sign in

REVIEW 4 major objections 5 minor 70 references

Preserve More Details: Mitigating Content Drift in Real-World Image Super-Resolution

T0 review · 4 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read A dual-pathway one-step diffusion model preserves fine structures and corrects semantic drift in real-world super-resolution.

desk verdict Solid incremental one-step SR paper with a good idea; the ablation doesn't match the final model configuration and the abstract overclaims, but it's worth refereeing. read the letter →

arxiv 2608.09373 v1 pith:JHOKLS5W submitted 2026-08-10 cs.CV

classification cs.CV
keywords real-worldimagesuper-resolutionone-stepdiffusioncontentdriftstructureddetailssemanticguidanceVisionTransformerfeaturesdetail-awaretokencompressiondetailconditionedattention
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Real-world image super-resolution must reconstruct sharp images from low-quality inputs, but diffusion-based methods suffer content drift: the compressed latent discards fine structures, and captions generated from unclear images can shift the semantics (a house rendered as a snow pile). This paper proposes FSP-Diff, a one-step diffusion model whose dual-pathway architecture counteracts both failure modes. One pathway extracts structured details from the first block of a frozen Vision Transformer and injects them into the diffusion network; the other uses the same details to modulate the text embeddings so the semantic guidance stays faithful to the input. Benchmarks on DIV2K-val, RealSR, and DRealSR show the model outperforming existing one-step diffusion methods on most fidelity and perceptual metrics. The paper claims that preserving fine-grained structure from the low-quality input, both as pixel-level guidance and as a check on the text prompt, is what resolves content drift.

What carries the argument

The load-bearing mechanism is the dual-pathway architecture built on a pre-trained Stable Diffusion backbone: (1) the Detail-Conditioned Pathway extracts a structured-detail feature map $X_S$ from the first block of a frozen ViT encoder, compresses it to a small token set $X_H$ with a learnable Detail-Aware Token Compression (DATC) transformer, and injects it into the UNet through Structured Detail Conditioned Attention (SDCA), in which the diffusion latents query the detail tokens; (2) the Detail-Modulated Semantic Pathway passes the text embeddings and $X_S$ through a Semantic-Detail Modulator (SDM), whose scaled dot-product attention produces a detail-aware text conditioning $C_T$. DATC keeps the attention cost tractable, SDCA feeds fine structure directly into generation, and SDM lets the details correct semantic misalignment in the caption.

What would settle it

A controlled experiment that replaces the ViT feature map with random noise of the same shape, while keeping DATC and SDCA intact, would settle the claim: if the noise-injected model still matches FSP-Diff's PSNR and LPIPS scores on any of the three benchmarks, then the structured details themselves are not the cause of the improvement.

Watch

Extended reading notes

Core claim

The central discovery claimed is that content drift in one-step diffusion-based real-world super-resolution arises from the loss of structured details in the VAE-compressed latent and from the unreliability of text captions derived from low-quality images, and that both can be mitigated by explicitly extracting fine structures from the input and using them in two complementary ways. FSP-Diff's Detail-Conditioned Pathway uses a frozen first-block ViT feature map at one-eighth resolution as structured detail, compresses it through a Detail-Aware Token Compression module, and injects the resulting tokens into each UNet block through Structured Detail Conditioned Attention placed after the text cross-attention. The Detail-Modulated Semantic Pathway computes attention between text embeddings and the structured detail map, producing a refined text conditioning that replaces the original caption embedding. Trained with L1 and LPIPS reconstruction losses plus variational score distillation regularization and a shifted timestep distribution, the model attains the best or second-best results on most benchmark metrics and, in the paper's qualitative comparisons, avoids both the stochastic artifacts of the baseline and the polygonal artifacts of a fine-structure-preserving competitor.

Load-bearing premise

The whole scheme rests on the assumption that the first block of a frozen ViT, applied to the low-quality image, retains the fine structures that the VAE latent has discarded, and that the DATC and SDCA modules can feed those structures into the generator without introducing their own artifacts.

Editorial extensions

If this is right

  • One-step real-world super-resolution can preserve fine structures without retraining a less-compressed VAE, avoiding the multi-stage pipeline used by methods that transfer the VAE to a lower compression ratio.
  • Adding the two pathways to an existing one-step diffusion baseline raises fidelity and perceptual metrics together, suggesting that detail injection and semantic modulation do not force the usual fidelity-perception trade-off.
  • Because the structured-detail extractor is frozen and the token set is small, the dual-pathway design adds only modest inference cost, about 0.15 seconds versus 0.12 seconds for the baseline on the reported hardware.
  • The semantic pathway uses the same detail features as the detail pathway, so semantic mis-reconstructions such as rendering a house as a snow pile are corrected without introducing an extra captioning model beyond the existing prompt extractor.
  • The design is compatible with the one-step latent diffusion formulation and can be trained in a single stage on the same training data as the baseline.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The dual-pathway principle may transfer to other diffusion-based restoration tasks, such as deblurring or deraining, where the input carries high-frequency structure that the latent drops and where text prompts from degraded images are unreliable.
  • The success of the frozen first-block ViT features suggests a general recipe: bypass the VAE's lossy compression with an off-the-shelf high-resolution feature extractor, then compress adaptively before injection.
  • A testable extension is to generate the semantic conditioning directly from the structured-detail tokens, which could remove the dependency on the captioning module entirely.
  • The ViT-depth ablation implies that only the earliest layer of the encoder matters for this purpose, so a lightweight edge-and-boundary extractor might achieve similar gains at lower computational cost.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The manuscript proposes FSP-Diff, a one-step diffusion model for real-world image super-resolution (Real-ISR). It augments an OSEDiff-style Stable Diffusion 2.1 backbone with two pathways: a Detail-Conditioned Pathway that extracts structured details from frozen early ViT features, compresses them with a Detail-Aware Token Compression module, and injects them via Structured Detail Conditioned Attention; and a Detail-Modulated Semantic Pathway that refines text embeddings with a Semantic-Detail Modulator. Training uses L1+LPIPS reconstruction together with variational score distillation and a shifted timestep-sampling distribution. The model is evaluated on DIV2K-val, RealSR, and DRealSR against one-step diffusion baselines, and the paper reports ablations of components and hyperparameters as well as inference complexity.

Significance. If the claimed gains are reproducible, the core idea—using early-layer ViT features as a structured-detail complement to the lossy VAE latent and conditioning both detail injection and semantic modulation on those features—is a plausible and useful direction for one-step Real-ISR. The paper has strengths: it uses standard benchmarks and baselines, reports parameter/FLOP/latency comparisons, and makes an effort to match OSEDiff's training setup. However, the experimental validation as reported does not fully support the central claims: the headline model and the component ablations use different feature extractors, several hyperparameters are selected directly on the test benchmarks, and the abstract overstates the quantitative comparison.

major comments (4)
  1. [Section 4.3, Tables 2 and 4] The component ablation is run with the VAE+ extractor, while the headline FSP-Diff model in Tables 1–3 uses the ViT+ first-block extractor. The paper acknowledges this but asserts it 'does not affect the conclusions' without support. Table 2 shows the two extractors produce measurably different results: ViT+DATC_D4 gives DISTS 0.2014, MANIQA 0.6092, FID 127.19, and CLIPIQA 0.6868, whereas VAE+DATC_D4 gives DISTS 0.2048, MANIQA 0.6053, FID 125.34, and CLIPIQA 0.6725. Table 4's 'Full' row (PSNR 28.93, DISTS 0.2048, NIQE 6.21, MANIQA 0.6053, FID 125.34) matches the VAE-based configuration, not the ViT-based model whose results are advertised. The incremental gains attributed to SDCA, DATC, and SDM in Table 4 are of the same order as the differences caused by the extractor choice, so the component-wise attribution for the final model is not established. The ablations should be rerun with the ViT+ extractor, or the authors should provide direct evidence that the extractor choice does not change the conclusions.
  2. [Section 4.3, Tables 3, 5, and 6] Several key hyperparameters are selected using the same benchmark test sets that are later reported as the main results. Table 3 selects ViT depth on DRealSR, Table 5 selects L_q (presumably on DRealSR, though the table is not labeled), and Table 6 selects the shift parameter on DIV2K according to the caption but on DRealSR according to the main text. Since the final configuration is chosen by comparing directly on these benchmarks, the numbers in Table 1 are not held-out evaluations, and the reported improvements are inflated by test-set optimizer's curse. The authors should use a separate validation split or nested evaluation procedure for hyperparameter selection and then report unbiased test-set numbers.
  3. [Abstract and Table 1] The abstract claims that FSP-Diff 'surpasses existing one-step diffusion methods in both quantitative and qualitative metrics,' but Table 1 contradicts this on several no-reference metrics. TSD-SR outperforms FSP-Diff on CLIPIQA on all three benchmarks (0.7344 vs 0.6868 on DRealSR, 0.7160 vs 0.6687 on RealSR, 0.7416 vs 0.6583 on DIV2K-Val) and on MUSIQ on all three (66.62 vs 65.17, 71.19 vs 68.60, 71.69 vs 67.78). TSD-SR also has better NIQE on RealSR and DIV2K-Val, and PiSA-SR has better MANIQA on RealSR and DIV2K-Val. The text in Section 4.2 partially acknowledges this, but the abstract and contribution statements should be revised to claim competitiveness or superiority only on the specific metrics and benchmarks where it holds.
  4. [Table 4 and Section 4.3] The table shows that 'Full' (with shift s=0.9) has worse PSNR than 'Add SDM' (s=1.0) by 0.13 dB and worse FID by 0.79, while improving only NIQE and MANIQA by small margins. The manuscript states that 'Full' is the best configuration, but it is not supported by the fidelity metrics reported in the same table. This is a specific internal inconsistency in the ablation story for the shift parameter. The authors should report the trade-off explicitly and justify why the perceptual gains outweigh the fidelity loss, or adjust the claimed best configuration.
minor comments (5)
  1. [Section 4.1] The text says the DIV2K-val dataset contains 3,000 LR–HR image pairs, but the standard DIV2K validation set contains only 100 images; please clarify whether this is a different synthesized validation set of crops.
  2. [Section 4.3 and Table 6] The caption of Table 6 says 'DIV2K Benchmark,' while the main text says the shift hyperparameter is evaluated on the 'DRealSR test set.' These need to be reconciled.
  3. [Table 5] The table does not state which benchmark is used for the L_q ablation; it should be labeled for reproducibility.
  4. [Section 3.3] The 'vit_b' feature extractor is not precisely specified; please state which pretrained ViT checkpoint (e.g., CLIP ViT-B/32, DINOv2, or another model) is used, how the input is preprocessed, and at which spatial resolution the features are taken.
  5. [Section 4.3] There are minor typos: 'we adopt adopt this value' and 'experimemts'; also Table 2's VAE row is missing spaces between numeric entries.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the dual-pathway result is benchmarked against external baselines, while the ablation-extractor mismatch and test-set hyperparameter selection are validity concerns rather than circular reductions.

full rationale

FSP-Diff's central claim—that a dual-pathway detail-conditioned architecture improves one-step Real-ISR—is not derived from its own inputs by construction. The architecture is an empirical proposal (Eqs. 1–11 define the flow, losses, and timestep shift), and its success is evaluated against external benchmarks and public baselines (Table 1), so the reported scores are not logically forced. The VSD regularizer is adopted from OSEDiff [49] and the DAPE prompt extractor from SeeSR [50]; these are prior works with no author overlap with the present paper, and they do not contain the dual-pathway claim, so there is no load-bearing self-citation chain. The main validity concerns are non-circular: Table 6, Table 5, and Table 3 select the shift s, query length Lq, and ViT depth on the evaluation sets themselves, which weakens the 'surpasses' claim as an unbiased prediction; and Section 4.3 explicitly says the component ablation uses the VAE+ extractor while the final model uses ViT+ ('This choice does not affect the conclusions'), even though Table 2's VAE+DATC_D4 row (FID 125.34) is numerically the 'Full' row of Table 4 rather than the headline Table 1 model (FID 127.19). These are experimental-support and selection-bias problems, not reductions of the claimed result to its inputs by equation or by self-citation. No Eq. X = Eq. Y by construction and no fitted parameter renamed as a prediction was found; therefore the circularity score is 0.

Assumptions & free parameters 6 free parameters · 5 assumptions · 0 invented entities

The load-bearing assumptions are standard in the diffusion-SR literature: a pre-trained SD prior, a synthetic degradation model, and VSD regularization. The paper's own contribution rests on the ad hoc assumption that early ViT features are the right carrier of fine structure. No new physical entities are introduced. Hyperparameters are largely chosen by hand or by test-set search.

free parameters (6)
  • lambda (reconstruction/VSD balance) = 1
    Weights the VSD regularization term in Eq 7. Chosen by hand, not derived.
  • lambda1 (LPIPS weight) = 2
    Weights LPIPS loss in Eq 8. Chosen by hand.
  • shift parameter s = 0.9
    Controls timestep shift in Eq 11. Selected based on test-set metrics in Table 6.
  • L_q (DATC query count) = 400
    Number of learnable queries in DATC. Selected based on Table 5 ablation.
  • M (DATC depth) = 4
    Number of stacked Transformer blocks in DATC. Selected based on Table 2.
  • ViT feature depth = first block
    Structured details extracted from first ViT block. Selected based on Table 3 ablation.
assumptions (5)
  • domain assumption Pre-trained Stable Diffusion 2.1-base provides a valid generative prior for LQ-to-HQ mapping.
    Used as the backbone throughout Section 3.2; the method assumes SD latents are a good starting point.
  • domain assumption Real-ESRGAN degradation pipeline produces LQ images representative of real-world degradations.
    Training pairs are synthesized with this pipeline (Section 4.1), so the model assumes it captures real-world distribution.
  • domain assumption DAPE-generated captions from LQ images provide useful semantic guidance.
    Section 3.4 uses DAPE to produce text prompts; if captions are wrong, SDM refinement may not fix them.
  • domain assumption VSD regularization from OSEDiff improves generalization of the one-step generator.
    Section 3.5 adopts the OSEDiff VSD loss; the paper relies on this prior result.
  • ad hoc to paper Early ViT features retain the structured details lost by VAE compression.
    Section 3.3 states the first ViT block captures low-level edge and boundary information. This is the load-bearing premise of the Detail-Conditioned Pathway.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Preserve More Details: Mitigating Content Drift in Real-World Image Super-Resolution." pith.science (2026). https://pith.science/paper/JHOKLS5W

@misc{pith2026260809373,
  author       = {Pith},
  title        = {Pith review of: Preserve More Details: Mitigating Content Drift in Real-World Image Super-Resolution},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/JHOKLS5W}},
  note         = {Machine review of arXiv:2608.09373}
}
read the original abstract

Real-world image super-resolution (Real-ISR) aims to reconstruct high-quality (HQ) images from low-quality (LQ) inputs subject to diverse real-world degradations. Recent advances have leveraged the LQ inputs and natural image priors learned by Stable Diffusion models to achieve impressive results. However, existing methods often overlook insufficient clarity of LQ inputs inevitably induce content drift in the generated HQ images. This manifests primarily as visual detail degradation and textual semantic shift, severely compromising both fidelity and perceptual quality. To address this challenge, we propose FSP-Diff, a novel one-step diffusion model featuring a dual-pathway architecture. This architecture comprises a Detail-Conditioned Pathway for injecting structured details to recover fine structures, and a Detail-Modulated Semantic Pathway that refines semantic guidance using structured details to mitigate semantic deviations. Extensive experiments on standard Real-ISR benchmarks demonstrate that FSP-Diff surpasses existing one-step diffusion methods in both quantitative and qualitative metrics.

Figures

Figures reproduced from arXiv: 2608.09373 by the authors.

Figure 1
Figure 1. Content drift in Real-World Image Super [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of our method. We first extract a structured details [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Visual Comparisions of different Real-ISR methods. Please zoom in for a better view. [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Comparison ofstructured detail-preserving Real [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: Qualitative ablation comparison. Red boxes high [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

70 extracted references · 28 canonical work pages

  1. [1]

    Eirikur Agustsson and Radu Timofte. 2017. Ntire 2017 challenge on single image super-resolution: Dataset and study. InProceedings of the IEEE conference on computer vision and pattern recognition workshops. 126–135

  2. [2]

    Jianrui Cai, Hui Zeng, Hongwei Yong, Zisheng Cao, and Lei Zhang. 2019. Toward real-world single image super-resolution: A new benchmark and a new model. InProceedings of the IEEE/CVF international conference on computer vision. 3086– 3095

  3. [3]

    Chaofeng Chen, Xinyu Shi, Yipeng Qin, Xiaoming Li, Xiaoguang Han, Tao Yang, and Shihui Guo. 2022. Real-world blind super-resolution via feature matching with implicit high-resolution priors. InProceedings of the 30th ACM International Conference on Multimedia. 1329–1338

  4. [4]

    Hanting Chen, Yunhe Wang, Tianyu Guo, Chang Xu, Yiping Deng, Zhenhua Liu, Siwei Ma, Chunjing Xu, Chao Xu, and Wen Gao. 2021. Pre-trained image processing transformer. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition. 12299–12310

  5. [5]

    Junyang Chen, Jinshan Pan, and Jiangxin Dong. 2025. Faithdiff: Unleashing diffusion priors for faithful image super-resolution. InProceedings of the Computer Vision and Pattern Recognition Conference. 28188–28197

  6. [6]

    Junsong Chen, Jincheng Yu, Chongjian Ge, Lewei Yao, Enze Xie, Yue Wu, Zhong- dao Wang, James Kwok, Ping Luo, Huchuan Lu, et al. 2023. Pixart-𝛼: Fast training of diffusion transformer for photorealistic text-to-image synthesis.arXiv preprint arXiv:2310.00426(2023)

  7. [7]

    Tao Dai, Jianrui Cai, Yongbing Zhang, Shu-Tao Xia, and Lei Zhang. 2019. Second- order attention network for single image super-resolution. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition. 11065–11074

  8. [8]

    Trung Dao, Thuan Hoang Nguyen, Thanh Le, Duc Vu, Khoi Nguyen, Cuong Pham, and Anh Tran. 2024. Swiftbrush v2: Make your one-step diffusion model better than its teacher. InEuropean Conference on Computer Vision. Springer, 176–192

Show all 70 references
  1. [9]

    Prafulla Dhariwal and Alexander Nichol. 2021. Diffusion models beat gans on image synthesis.Advances in neural information processing systems34 (2021), 8780–8794

  2. [10]

    Keyan Ding, Kede Ma, Shiqi Wang, and Eero P Simoncelli. 2020. Image quality assessment: Unifying structure and texture similarity.IEEE transactions on pattern analysis and machine intelligence44, 5 (2020), 2567–2581

  3. [11]

    Linwei Dong, Qingnan Fan, Yihong Guo, Zhonghao Wang, Qi Zhang, Jinwei Chen, Yawei Luo, and Changqing Zou. 2025. Tsd-sr: One-step diffusion with target score distillation for real-world image super-resolution. InProceedings of the Computer Vision and Pattern Recognition Confere...

  4. [12]

    Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xi- aohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. 2020. An image is worth 16x16 words: Transformers for image recognition at scale.arXiv preprin...

  5. [13]

    Patrick Esser, Sumith Kulal, Andreas Blattmann, Rahim Entezari, Jonas Müller, Harry Saini, Yam Levi, Dominik Lorenz, Axel Sauer, Frederic Boesel, et al. 2024. Scaling rectified flow transformers for high-resolution image synthesis. InForty- first international conference on ma...

  6. [14]

    Ian J Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. 2014. Generative adversarial nets.Advances in neural information processing systems27 (2014)

  7. [15]

    Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. 2017. Gans trained by a two time-scale update rule converge to a local nash equilibrium.Advances in neural information processing systems30 (2017)

  8. [16]

    Jonathan Ho, Ajay Jain, and Pieter Abbeel. 2020. Denoising diffusion probabilistic models.Advances in neural information processing systems33 (2020), 6840–6851

  9. [17]

    Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen, et al. 2022. Lora: Low-rank adaptation of large language models.ICLR1, 2 (2022), 3

  10. [18]

    Tero Karras, Samuli Laine, and Timo Aila. 2019. A style-based generator ar- chitecture for generative adversarial networks. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition. 4401–4410

  11. [19]

    Bahjat Kawar, Michael Elad, Stefano Ermon, and Jiaming Song. 2022. Denoising diffusion restoration models.Advances in neural information processing systems 35 (2022), 23593–23606

  12. [20]

    Junjie Ke, Qifei Wang, Yilin Wang, Peyman Milanfar, and Feng Yang. 2021. Musiq: Multi-scale image quality transformer. InProceedings of the IEEE/CVF international conference on computer vision. 5148–5157

  13. [21]

    Alina Kuznetsova, Hassan Rom, Neil Alldrin, Jasper Uijlings, Ivan Krasin, Jordi Pont-Tuset, Shahab Kamali, Stefan Popov, Matteo Malloci, Alexander Kolesnikov, et al. 2020. The open images dataset v4: Unified image classification, object detection, and visual relationship detec...

  14. [22]

    Yawei Li, Kai Zhang, Jingyun Liang, Jiezhang Cao, Ce Liu, Rui Gong, Yulun Zhang, Hao Tang, Yun Liu, Denis Demandolx, et al. 2023. Lsdir: A large scale dataset for image restoration. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 1775–1787

  15. [23]

    Jingyun Liang, Jiezhang Cao, Guolei Sun, Kai Zhang, Luc Van Gool, and Radu Timofte. 2021. Swinir: Image restoration using swin transformer. InProceedings of the IEEE/CVF international conference on computer vision. 1833–1844

  16. [24]

    Jie Liang, Hui Zeng, and Lei Zhang. 2022. Details or artifacts: A locally discrimi- native learning approach to realistic image super-resolution. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition. 5657–5666

  17. [25]

    Jie Liang, Hui Zeng, and Lei Zhang. 2022. Efficient and degradation-adaptive net- work for real-world image super-resolution. InEuropean Conference on Computer Vision. Springer, 574–591

  18. [26]

    Bee Lim, Sanghyun Son, Heewon Kim, Seungjun Nah, and Kyoung Mu Lee

  19. [27]

    Shanchuan Lin, Xin Xia, Yuxi Ren, Ceyuan Yang, Xuefeng Xiao, and Lu Jiang

  20. [28]

    Xinqi Lin, Jingwen He, Ziyan Chen, Zhaoyang Lyu, Bo Dai, Fanghua Yu, Yu Qiao, Wanli Ouyang, and Chao Dong. 2024. Diffbir: Toward blind image restora- tion with generative diffusion prior. InEuropean conference on computer vision. Springer, 430–448

  21. [29]

    Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. 2023. Visual in- struction tuning.Advances in neural information processing systems36 (2023), 34892–34916

  22. [30]

    Simian Luo, Yiqin Tan, Longbo Huang, Jian Li, and Hang Zhao. 2023. Latent consistency models: Synthesizing high-resolution images with few-step inference. arXiv preprint arXiv:2310.04378(2023)

  23. [31]

    Jianqi Ma, Zhetong Liang, Wangmeng Xiang, Xi Yang, and Lei Zhang. 2023. A benchmark for chinese-english scene text image super-resolution. InProceedings of the IEEE/CVF International Conference on Computer Vision. 19452–19461

  24. [32]

    Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas Müller, Joe Penna, and Robin Rombach. 2023. Sdxl: Improving latent diffusion models for high-resolution image synthesis.arXiv preprint arXiv:2307.01952 (2023)

  25. [33]

    Yunpeng Qu, Kun Yuan, Kai Zhao, Qizhi Xie, Jinhua Hao, Ming Sun, and Chao Zhou. 2024. Xpsr: Cross-modal priors for diffusion-based image super-resolution. InEuropean Conference on Computer Vision. Springer, 285–303

  26. [34]

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. 2022. High-resolution image synthesis with latent diffusion models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. 10684–10695

  27. [35]

    Chitwan Saharia, William Chan, Saurabh Saxena, Lala Li, Jay Whang, Emily L Denton, Kamyar Ghasemipour, Raphael Gontijo Lopes, Burcu Karagol Ayan, Tim Salimans, et al. 2022. Photorealistic text-to-image diffusion models with deep language understanding.Advances in neural inform...

  28. [36]

    Jiaming Song, Chenlin Meng, and Stefano Ermon. 2020. Denoising diffusion implicit models.arXiv preprint arXiv:2010.02502(2020)

  29. [37]

    Yang Song, Jascha Sohl-Dickstein, Diederik P Kingma, Abhishek Kumar, Stefano Ermon, and Ben Poole. 2020. Score-based generative modeling through stochastic differential equations.arXiv preprint arXiv:2011.13456(2020)

  30. [38]

    Lingchen Sun, Rongyuan Wu, Zhiyuan Ma, Shuaizheng Liu, Qiaosi Yi, and Lei Zhang. 2025. Pixel-level and semantic-level adjustable super-resolution: A dual- lora approach. InProceedings of the Computer Vision and Pattern Recognition Conference. 2333–2343

  31. [39]

    Radu Timofte, Eirikur Agustsson, Luc Van Gool, Ming-Hsuan Yang, and Lei Zhang. 2017. Ntire 2017 challenge on single image super-resolution: Methods and results. InProceedings of the IEEE conference on computer vision and pattern recognition workshops. 114–125

  32. [40]

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need.Advances in neural information processing systems30 (2017)

  33. [41]

    Jianyi Wang, Kelvin CK Chan, and Chen Change Loy. 2023. Exploring clip for assessing the look and feel of images. InProceedings of the AAAI conference on artificial intelligence, Vol. 37. 2555–2563

  34. [42]

    Jingkai Wang, Jue Gong, Lin Zhang, Zheng Chen, Xing Liu, Hong Gu, Yutong Liu, Yulun Zhang, and Xiaokang Yang. 2025. Osdface: One-step diffusion model for face restoration. InProceedings of the Computer Vision and Pattern Recognition Conference. 12626–12636

  35. [43]

    Jianyi Wang, Zongsheng Yue, Shangchen Zhou, Kelvin CK Chan, and Chen Change Loy. 2024. Exploiting diffusion prior for real-world image super- resolution.International Journal of Computer Vision132, 12 (2024), 5929–5949

  36. [44]

    Xintao Wang, Liangbin Xie, Chao Dong, and Ying Shan. 2021. Real-esrgan: Train- ing real-world blind super-resolution with pure synthetic data. InProceedings of the IEEE/CVF international conference on computer vision. 1905–1914

  37. [45]

    Yufei Wang, Wenhan Yang, Xinyuan Chen, Yaohui Wang, Lanqing Guo, Lap-Pui Chau, Ziwei Liu, Yu Qiao, Alex C Kot, and Bihan Wen. 2024. Sinsr: diffusion-based image super-resolution in a single step. InProceedings of the IEEE/CVF conference MM ’26, November 10–14, 2026, Rio de Jan...

  38. [46]

    Zhou Wang, Alan C Bovik, Hamid R Sheikh, and Eero P Simoncelli. 2004. Image quality assessment: from error visibility to structural similarity.IEEE transactions on image processing13, 4 (2004), 600–612

  39. [47]

    Zhengyi Wang, Cheng Lu, Yikai Wang, Fan Bao, Chongxuan Li, Hang Su, and Jun Zhu. 2023. Prolificdreamer: High-fidelity and diverse text-to-3d generation with variational score distillation.Advances in neural information processing systems 36 (2023), 8406–8441

  40. [48]

    Pengxu Wei, Ziwei Xie, Hannan Lu, Zongyuan Zhan, Qixiang Ye, Wangmeng Zuo, and Liang Lin. 2020. Component divide-and-conquer for real-world image super-resolution. InEuropean conference on computer vision. Springer, 101–117

  41. [49]

    Rongyuan Wu, Lingchen Sun, Zhiyuan Ma, and Lei Zhang. 2024. One-step effective diffusion network for real-world image super-resolution.Advances in Neural Information Processing Systems37 (2024), 92529–92553

  42. [50]

    Rongyuan Wu, Tao Yang, Lingchen Sun, Zhengqiang Zhang, Shuai Li, and Lei Zhang. 2024. Seesr: Towards semantics-aware real-world image super-resolution. InProceedings of the IEEE/CVF conference on computer vision and pattern recogni- tion. 25456–25467

  43. [51]

    Liangbin Xie, Xintao Wang, Xiangyu Chen, Gen Li, Ying Shan, Jiantao Zhou, and Chao Dong. 2023. Desra: detect and delete the artifacts of gan-based real-world super-resolution models.arXiv preprint arXiv:2307.02457(2023)

  44. [52]

    Rui Xie, Chen Zhao, Kai Zhang, Zhenyu Zhang, Jun Zhou, Jian Yang, and Ying Tai

  45. [53]

    Sidi Yang, Tianhe Wu, Shuwei Shi, Shanshan Lao, Yuan Gong, Mingdeng Cao, Jia- hao Wang, and Yujiu Yang. 2022. Maniqa: Multi-dimension attention network for no-reference image quality assessment. InProceedings of the IEEE/CVF conference on computer vision and pattern recognitio...

  46. [54]

    Tao Yang, Rongyuan Wu, Peiran Ren, Xuansong Xie, and Lei Zhang. 2024. Pixel- aware stable diffusion for realistic image super-resolution and personalized stylization. InEuropean conference on computer vision. Springer, 74–91

  47. [55]

    Qiaosi Yi, Shuai Li, Rongyuan Wu, Lingchen Sun, Yuhui Wu, and Lei Zhang

  48. [56]

    Tianwei Yin, Michaël Gharbi, Richard Zhang, Eli Shechtman, Fredo Durand, William T Freeman, and Taesung Park. 2024. One-step diffusion with distribution matching distillation. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition. 6613–6623

  49. [57]

    Fanghua Yu, Jinjin Gu, Zheyuan Li, Jinfan Hu, Xiangtao Kong, Xintao Wang, Jingwen He, Yu Qiao, and Chao Dong. 2024. Scaling up to excellence: Practicing model scaling for photo-realistic image restoration in the wild. InProceedings of the IEEE/CVF conference on computer vision...

  50. [58]

    Zongsheng Yue, Jianyi Wang, and Chen Change Loy. 2023. Resshift: Efficient diffusion model for image super-resolution by residual shifting.Advances in Neural Information Processing Systems36 (2023), 13294–13307

  51. [59]

    InProceedings of the IEEE/CVF international conference on computer vision

    Fine-structure preserved real-world image super-resolution via transfer vae training. InProceedings of the IEEE/CVF international conference on computer vision. 12415–12426

  52. [60]

    Kai Zhang, Jingyun Liang, Luc Van Gool, and Radu Timofte. 2021. Designing a practical degradation model for deep blind image super-resolution. InProceedings of the IEEE/CVF international conference on computer vision. 4791–4800

  53. [61]

    Lvmin Zhang, Anyi Rao, and Maneesh Agrawala. 2023. Adding conditional con- trol to text-to-image diffusion models. InProceedings of the IEEE/CVF international conference on computer vision. 3836–3847

  54. [62]

    Lin Zhang, Lei Zhang, and Alan C Bovik. 2015. A feature-enriched completely blind image quality evaluator.IEEE Transactions on Image Processing24, 8 (2015), 2579–2591

  55. [63]

    Aiping Zhang, Zongsheng Yue, Renjing Pei, Wenqi Ren, and Xiaochun Cao. 2024. Degradation-guided one-step image super-resolution with diffusion priors.arXiv preprint arXiv:2409.17058(2024)

  56. [64]

    Xindong Zhang, Hui Zeng, Shi Guo, and Lei Zhang. 2022. Efficient long-range attention network for image super-resolution. InEuropean conference on computer vision. Springer, 649–667

  57. [65]

    Yulun Zhang, Kunpeng Li, Kai Li, Lichen Wang, Bineng Zhong, and Yun Fu. 2018. Image super-resolution using very deep residual channel attention networks. In Proceedings of the European conference on computer vision (ECCV). 286–301

  58. [67]

    Richard Zhang, Phillip Isola, Alexei A Efros, Eli Shechtman, and Oliver Wang

  59. [2017]

    In Proceedings of the IEEE conference on computer vision and pattern recognition workshops

    Enhanced deep residual networks for single image super-resolution. In Proceedings of the IEEE conference on computer vision and pattern recognition workshops. 136–144

  60. [2018]

    InProceedings of the IEEE conference on computer vision and pattern recognition

    The unreasonable effectiveness of deep features as a perceptual metric. InProceedings of the IEEE conference on computer vision and pattern recognition. 586–595

  61. [2024]

    Addsr: Accelerating diffusion-based blind super-resolution with adversarial diffusion distillation.arXiv preprint arXiv:2404.01717(2024)

  62. [2025]

    Diffusion adversarial post-training for one-step video generation.arXiv preprint arXiv:2501.08316(2025)

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.