Pith. sign in

REVIEW 4 major objections 5 minor 1 cited by

Text-Aware Real-World Image Super-Resolution via Diffusion Model with Joint Segmentation Decoders

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

Pith's one-line read TADiSR, a diffusion SR model with text-aware cross-attention and joint segmentation decoders, claims to substantially improve text legibility, reporting an 18.7% OCR-A gain over HAT on Real-CE.

desk verdict Worth refereeing; the Real-CE OCR-A gain looks real but is not yet established independently. read the letter →

arxiv 2506.04641 v1 pith:G3LZY4RZ submitted 2025-06-05 cs.CV

classification cs.CV
keywords text-awaresuper-resolutiondiffusionmodelstextsegmentationcross-attentionfine-tuningjointdecoderssyntheticSRdatasetreal-worldimageOCRaccuracy
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

This paper presents TADiSR, a diffusion-based framework for real-world image super-resolution that treats text as a first-class citizen. The authors claim that by fine-tuning the cross-attention layers of a latent diffusion model so they focus on the word 'text' in a fixed prompt, and by decoding image and text segmentation jointly through interacting decoder branches, the model recovers character-level details that generic GAN- and diffusion-based super-resolvers distort. They support this claim with a new synthetic dataset, FTSR, built by pasting filtered, super-resolved text patches onto high-quality backgrounds, and with experiments showing improved PSNR, SSIM, LPIPS, FID, and OCR accuracy over existing methods on both synthetic and real paired data. The strongest reported result is an 18.7% improvement in OCR-A over the HAT baseline on the real-world Real-CE validation set. If true, this shows that text-aware attention is a practical route to preserving structural fidelity in generative super-resolution.

What carries the argument

The two load-bearing components are Text-Aware Cross-Attention (TACA) and the Joint Segmentation Decoders (JSD). TACA extracts, from every cross-attention layer of the U-Net, the response slice corresponding to the single token 'text' in the prompt, concatenates these slices, and projects them with a learned matrix; after LoRA fine-tuning these maps concentrate on textual regions. JSD consists of the VAE image decoder and a symmetric text segmentation decoder that exchange features through Cross-Decoder Interaction Blocks (CDIB), which split each branch's features, exchange half across branches through a sigmoid-gated Hadamard product, and use zero-initialized residual scaling to stabilize training. The segmentation decoder turns the attention maps into text masks, giving the image decoder an explicit structural target.

What would settle it

On a held-out set of real-world text images from unseen domains with human-annotated masks, compute the IoU between TADiSR's predicted text masks and the human masks; if the IoU is no better than that of a model trained without the joint segmentation decoders, the claimed structural benefit of JSD is not supported. Alternatively, retrain the pipeline using masks from a different segmentation model and check whether the OCR-A advantage over HAT persists; a large sensitivity to the mask source would imply the results are an artifact of the specific pseudo-label generator.

Watch

Extended reading notes

Core claim

The central discovery is that the cross-attention maps of a pre-trained latent diffusion model, when fine-tuned with LoRA on a joint super-resolution and text-segmentation task, become a reliable spatial indicator of text regions for the token 'text'. These attention maps are linearly projected and fed, together with the denoised latent, into a pair of interacting decoders: the original VAE image decoder and a newly added text segmentation decoder, connected by Cross-Decoder Interaction Blocks. This design lets structural text information flow between the two tasks, and a modified focal loss that weights edge-gradient mismatch by segmentation-confidence sharpens character boundaries. The paper further claims that the accompanying FTSR data-synthesis pipeline, which combines OCR-filtered text patches from recognition datasets with high-quality background images, provides the fine-grained, full-image text masks needed to train such a model at scale.

Load-bearing premise

The method works only if, after LoRA fine-tuning, the cross-attention map for the token 'text' reliably marks the location of text in images the model has not seen, and if the pseudo-ground-truth text masks generated by the fine-tuned SAM-TS model (trained on TextSeg/BTS and applied to CTR and Real-CE) are accurate enough to supervise joint training without systematic bias.

Editorial extensions

If this is right

  • A single forward pass of TADiSR produces a full-image super-resolved output with intact text, removing the need for OCR-based detection, cropped text super-resolution, and subsequent fusion used by prior text-SR methods.
  • Because the text-awareness comes from tuning attention to a token rather than adding a recognition module, the same recipe can in principle be applied to other under-represented semantic categories by selecting their tokens.
  • The FTSR synthesis pipeline is scalable: any text-segmentation or detection dataset can be filtered with OCR and pasted onto high-quality backgrounds, enabling large-scale training data for text-aware restoration.
  • Joint training strengthens both tasks: the paper reports that the text masks predicted by TADiSR on degraded real-world photos are finer than those of a dedicated text segmentation model, implying the SR path helps segmentation under degradation.
  • Across synthetic FTSR and real Real-CE benchmarks, TADiSR reports the best quantitative scores on all reported metrics, with the largest margin on OCR-A, indicating that the improvements transfer from synthetic training to real capture conditions.

Reading between the lines

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

  • The attention-to-token mechanism could be probed as a general spatial localizer: the same LoRA-tuned attention maps might serve as candidate text priors for text inpainting, text removal, or scene text editing without retraining the segmentation head.
  • The 18.7% OCR-A gain over HAT suggests that the bottleneck in current generative super-resolution is not raw detail synthesis but the model's failure to 'know' where text is; TADiSR's mechanism is one way to inject that knowledge, and a text-recognition loss at the character level might push accuracy further.
  • A natural stress test is domain shift: because the fixed prompt contains only the word 'text', the method may saturate for unusual typefaces, decorative fonts, or low-contrast text; extending the prompt with style tokens (e.g., 'neon sign', 'handwriting') could specialize attention without architectural changes.
  • If the FTSR dataset is adopted as a benchmark, its pseudo-GT masks could themselves become a bottleneck; a comparison with human-annotated masks on a subset would tell whether label noise is capping the achievable text fidelity.
Share X Bluesky LinkedIn Reddit HN

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. This paper proposes TADiSR, a diffusion-based real-world image super-resolution framework that augments a latent diffusion model with text-aware cross-attention and joint segmentation decoders. The authors also introduce the FTSR dataset, constructed by pasting segmentation-masked text patches onto high-quality backgrounds, and report state-of-the-art results on both the synthetic FTSR test set and a manually filtered validation split of Real-CE, including an 18.7% OCR-A improvement over HAT on Real-CE-val. The work addresses the practically important problem of preserving text legibility in super-resolved images and provides extensive qualitative comparisons, including challenging real-world cases.

Significance. If the quantitative claims hold, TADiSR would be a valuable step toward practical, single-pass text-aware super-resolution, offering an alternative to OCR-based pipeline approaches. The paper is clearly written, the architecture is plausible, and the authors include a thorough empirical study with several baselines. However, the evaluation protocol contains weaknesses that currently prevent full confidence in the headline numbers: the Real-CE test set is author-filtered, the OCR metric may be circular with the training data curation, no statistical uncertainty is reported, and the ablations are confined to the synthetic FTSR set. These issues are fixable and do not invalidate the core idea, but they must be addressed before the claimed gains can be accepted.

major comments (4)
  1. [§4.1, Table 1] The Real-CE evaluation uses only the 189 manually filtered 'aligned' validation pairs, and no results are reported on the full, unfiltered Real-CE validation or test set. Because the filtering criterion is subjective and performed only by the authors, the 18.7% OCR-A gain over HAT could be driven by the removal of hard cases that disproportionately affect baselines. The authors should report metrics on the complete Real-CE test split (or at least the unfiltered validation set), state the exact filtering rule, and release the list of retained sample indices for reproducibility.
  2. [§3.5 and §4.2] The training-data curation and the OCR-A evaluation rely on the same OCR engine (PP-OCR [7]). Section 3.5 filters pseudo-GT text patches by comparing OCR recognition results between original images and their segmentation maps, and Section 4.2 defines OCR-A using PP-OCR recognition with Levenshtein ratio. This creates a training-evaluation circularity that can inflate the reported OCR gains without improving generic text legibility. The authors should evaluate with at least one independent OCR engine (e.g., Tesseract or a different commercial OCR) and explicitly state whether the evaluation OCR is identical to the one used in data filtering.
  3. [Table 1 and §4.2] All metrics are reported as point estimates without error bars, confidence intervals, or significance tests. The Real-CE-val set contains only 189 images, yet the paper claims a large 18.7% OCR-A improvement. The authors should provide bootstrap confidence intervals or a paired statistical test (e.g., Wilcoxon signed-rank over images) to demonstrate that the differences are not due to a few outliers.
  4. [§4.3] The ablation study (Table 2) is conducted only on the synthetic FTSR-TE set, so it does not establish which components are responsible for the real-world gains on Real-CE. The authors should include the same ablations (w/o JSD, w/o TACA, w/o MF Loss) on Real-CE-val, at least for OCR-A, to support the claim that each module contributes to real-world text fidelity.
minor comments (5)
  1. [Eq. (1)] The symbols alpha_t and beta_t are used without definition; please define them by referencing the diffusion noise schedule (e.g., DDPM notation) or by giving the formulas in the text.
  2. [§4.2] The OCR-A protocol should clarify whether the same OCR detector/recognizer is used for all methods and whether the recognizer is PP-OCR; the metric definition would be easier to interpret with this information.
  3. [§4.2] The paper states that baselines are fine-tuned on FTSR and Real-CE using official code 'if provided,' but it does not list which baselines were fine-tuned and which were not. A supplementary table with training details for each baseline would improve reproducibility.
  4. [Supplementary Fig. 7] The caption acknowledges that 'part of our training segmentation labels were selected from Hi-SAM outputs.' This limits the strength of the segmentation comparison against Hi-SAM and should be mentioned in the main text as a known limitation.
  5. [Throughout] Minor typographical issues include a stray space in 'V AE,' a missing space in 'Wuet al.,' and 'Flicker2K' should be 'Flickr2K.'

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the reported gains are empirical outcomes of a trained system, not algebraic consequences of its inputs.

full rationale

The paper's central claim is that TADiSR improves text legibility in real-world super-resolution. The proposed method is an empirical learning system: it fine-tunes a diffusion U-Net with LoRA, adds a segmentation decoder supervised by text masks, and evaluates with image-quality metrics and OCR accuracy. No equation in the paper reduces a predicted quantity to a fitted parameter by construction. The closest potential concern is the overlap between the OCR-based filtering used to construct the FTSR pseudo-labels and the OCR-A metric used for evaluation. However, the paper does not optimize OCR-A or a Levenshtein loss during training, and the filtering step is applied to source text patches before degradation and pasting, so the reported improvements are not statistically forced by the training objective. Likewise, the use of SAM-TS to generate segmentation supervision and Real-CE masks is a label-generation choice, not a self-definitional step: the model is trained to predict those masks, but the headline super-resolution and OCR-A results are measured on held-out images and compare against external baselines. The author-filtered Real-CE-val split and the author-created FTSR-TE set raise questions of benchmark fairness and external validity, but those are correctness risks, not circularity. No load-bearing self-citations or imported uniqueness theorems appear. Accordingly, the derivation chain is self-contained and the circularity score is 0.

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

The method is an empirical deep learning system with no new physical entities. The central free parameters are loss weights and the fixed diffusion time step; several architectural hyperparameters are unreported. The key assumptions are the usability of cross-attention maps as segmentation priors and the reliability of pseudo-label-based synthetic data.

free parameters (9)
  • lambda_1 (LPIPS loss weight) = 5.0
    Manual balancing weight in Eq. 7, chosen by hand (Section 3.4).
  • lambda_2 (modified focal loss weight) = 10.0
    Manual balancing weight in Eq. 7 (Section 3.4).
  • lambda_3 (focal loss weight) = 10.0
    Manual balancing weight in Eq. 9 (Section 3.4).
  • lambda_4 (dice loss weight) = 1.0
    Manual balancing weight in Eq. 9 (Section 3.4).
  • gamma (modified focal exponent)
    Hyperparameter in Eq. 8; no value or schedule is reported in the paper.
  • diffusion time step t = 200
    Fixed time step for one-step denoising (Section 4.1, Eq. 1).
  • LoRA rank
    Rank of the low-rank adapters is not stated; it controls the fine-tuning capacity.
  • CDIB layer count N
    Number of cross-decoder interaction blocks is not specified; it defines architecture depth.
  • FTSR filtering thresholds (long-edge/character ratio and OCR score)
    The data synthesis pipeline filters CTR samples by a ratio and OCR-based checks, but the exact thresholds are not reported (Section 3.5).
assumptions (5)
  • domain assumption The Kolors latent diffusion model provides a sufficiently strong generative prior for real-world super-resolution, including for text regions.
    The whole method is built on this pretrained backbone (Section 3.1); if the backbone cannot represent fine text structures, the fine-tuning cannot recover them.
  • ad hoc to paper Cross-attention maps to the single token 'text' contain enough spatial localization information to be linearly projected and decoded into an accurate text segmentation mask.
    This is the core inductive bias of TADiSR (Sections 3.2-3.3); the paper provides empirical DAAM visualizations but no proof that this holds across fonts, languages, and layouts.
  • domain assumption The Real-ESRGAN degradation pipeline is a faithful model of real-world degradations for training.
    All training pairs are degraded with this pipeline (Section 3.5); if real degradations differ, the model's generalization would suffer.
  • domain assumption Pseudo-ground-truth text masks produced by a SAM-TS model fine-tuned on TextSeg/BTS and filtered by OCR are sufficiently accurate to supervise joint training.
    The FTSR dataset and the Real-CE segmentation ground truth both rely on these pseudo-labels (Sections 3.5 and 4.1).
  • ad hoc to paper A single denoising step at t=200 approximates the full diffusion reverse process well enough for high-quality super-resolution.
    The model uses Eq. 1 with fixed t=200 instead of iterative sampling; the paper does not validate this approximation against multi-step sampling.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Text-Aware Real-World Image Super-Resolution via Diffusion Model with Joint Segmentation Decoders." pith.science (2026). https://pith.science/paper/G3LZY4RZ

@misc{pith2026250604641,
  author       = {Pith},
  title        = {Pith review of: Text-Aware Real-World Image Super-Resolution via Diffusion Model with Joint Segmentation Decoders},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/G3LZY4RZ}},
  note         = {Machine review of arXiv:2506.04641}
}
read the original abstract

The introduction of generative models has significantly advanced image super-resolution (SR) in handling real-world degradations. However, they often incur fidelity-related issues, particularly distorting textual structures. In this paper, we introduce a novel diffusion-based SR framework, namely TADiSR, which integrates text-aware attention and joint segmentation decoders to recover not only natural details but also the structural fidelity of text regions in degraded real-world images. Moreover, we propose a complete pipeline for synthesizing high-quality images with fine-grained full-image text masks, combining realistic foreground text regions with detailed background content. Extensive experiments demonstrate that our approach substantially enhances text legibility in super-resolved images, achieving state-of-the-art performance across multiple evaluation metrics and exhibiting strong generalization to real-world scenarios. Our code is available at \href{https://github.com/mingcv/TADiSR}{here}.

Figures

Figures reproduced from arXiv: 2506.04641 by the authors.

Figure 1
Figure 1. Left: visual comparison between SR results on real-world samples. Our method shows a [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Overall architecture of the proposed TADiSR model. Text-aware cross-attention responses [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Visual comparison of super-resolution results between previous state-of-the-arts and ours [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (12 more)
Figure 4
Figure 4. Figure 4: Visual comparison of super-resolution results between previous state-of-the-arts and ours [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: Specifically, we evaluate three ablated variants: (1) removing the Joint Segmentation Decoders [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]
Figure 5
Figure 5. Figure 5: Visual results of the ablation study under different configurations. Note the zoom-in regions, [PITH_FULL_IMAGE:figures/full_fig_p009_5.png]
Figure 6
Figure 6. Figure 6: Sample triplets from our FTSR dataset, including low-resolution inputs (LR), high [PITH_FULL_IMAGE:figures/full_fig_p014_6.png]
Figure 7
Figure 7. Figure 7: Text segmentation comparison between TADiSR and Hi-SAM [ [PITH_FULL_IMAGE:figures/full_fig_p014_7.png]
Figure 8
Figure 8. Figure 8: Visual comparison of super-resolution results between previous state-of-the-arts and ours [PITH_FULL_IMAGE:figures/full_fig_p015_8.png]
Figure 9
Figure 9. Figure 9: Visual comparison of super-resolution results between previous state-of-the-arts and ours [PITH_FULL_IMAGE:figures/full_fig_p015_9.png]
Figure 10
Figure 10. Figure 10: Visual comparison of super-resolution results between previous state-of-the-arts and ours [PITH_FULL_IMAGE:figures/full_fig_p016_10.png]
Figure 11
Figure 11. Figure 11: Visual comparison of super-resolution results between previous state-of-the-arts and ours [PITH_FULL_IMAGE:figures/full_fig_p016_11.png]
Figure 12
Figure 12. Figure 12: Visual comparison of super-resolution results between previous state-of-the-arts and ours [PITH_FULL_IMAGE:figures/full_fig_p017_12.png]
Figure 13
Figure 13. Figure 13: Visual comparison of super-resolution results between previous state-of-the-arts and ours [PITH_FULL_IMAGE:figures/full_fig_p017_13.png]
Figure 14
Figure 14. Figure 14: A case from the Real-CE dataset showing our limitation. The character highlighted by [PITH_FULL_IMAGE:figures/full_fig_p018_14.png]

Discussion (0). Sign in to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Restore Text First, Enhance Image Later: Two-Stage Scene Text Image Super-Resolution with Glyph Structure Guidance

    cs.CV 2025-10 conditional novelty 6.0 of 10

    A two-stage 'text-first, image-later' super-resolution framework restores glyph structures before enhancing the whole image, improving OCR accuracy and visual quality on a new extreme-zoom Chinese text dataset.

Reference graph

Works this paper leans on

46 extracted references · 37 canonical work pages · cited by 1 Pith paper

  1. [7]

    Pp-ocr: A practical ultra lightweight ocr system.arXiv preprint, 2020

    Yuning Du, Chenxia Li, Ruoyu Guo, Xiaoting Yin, Weiwei Liu, Jun Zhou, Yifan Bai, Zilin Yu, Yehua Yang, Qingqing Dang, et al. Pp-ocr: A practical ultra lightweight ocr system.arXiv preprint, 2020

  2. [1]

    Ntire 2017 challenge on single image super-resolution: Dataset and study

    Eirikur Agustsson and Radu Timofte. Ntire 2017 challenge on single image super-resolution: Dataset and study. InCVPRW, pages 126–135, 2017

  3. [2]

    Scene text telescope: Text-focused scene image super-resolution

    Jingye Chen, Bin Li, and Xiangyang Xue. Scene text telescope: Text-focused scene image super-resolution. InCVPR, pages 12026–12035, 2021

  4. [3]

    Benchmarking chinese text recognition: Datasets, baselines, and an empirical study.arXiv preprint, 2021

    Jingye Chen, Haiyang Yu, Jianqi Ma, Mengnan Guan, Xixi Xu, Xiaocong Wang, Shaobo Qu, Bin Li, and Xiangyang Xue. Benchmarking chinese text recognition: Datasets, baselines, and an empirical study.arXiv preprint, 2021

  5. [4]

    Activating more pixels in image super-resolution transformer

    Xiangyu Chen, Xintao Wang, Jiantao Zhou, Yu Qiao, and Chao Dong. Activating more pixels in image super-resolution transformer. InCVPR, pages 22367–22377, 2023

  6. [5]

    Learning a deep convolutional network for image super-resolution

    Chao Dong, Chen Change Loy, Kaiming He, and Xiaoou Tang. Learning a deep convolutional network for image super-resolution. InECCV, pages 184–199, 2014

  7. [6]

    Boosting optical character recognition: A super-resolution approach.arXiv preprint, 2015

    Chao Dong, Ximei Zhu, Yubin Deng, Chen Change Loy, and Yu Qiao. Boosting optical character recognition: A super-resolution approach.arXiv preprint, 2015

  8. [8]

    Sigmoid-weighted linear units for neural network function approximation in reinforcement learning.Neural networks, 107:3–11, 2018

    Stefan Elfwing, Eiji Uchibe, and Kenji Doya. Sigmoid-weighted linear units for neural network function approximation in reinforcement learning.Neural networks, 107:3–11, 2018

Show all 46 references
  1. [9]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. InCVPR, pages 770–778, 2016

  2. [10]

    Gans trained by a two time-scale update rule converge to a local nash equilibrium.NeurIPS, 30, 2017

    Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. Gans trained by a two time-scale update rule converge to a local nash equilibrium.NeurIPS, 30, 2017

  3. [11]

    Lora: Low-rank adaptation of large language models.ICLR, page 3, 2022

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

  4. [12]

    Learning generative structure prior for blind text image super-resolution

    Xiaoming Li, Wangmeng Zuo, and Chen Change Loy. Learning generative structure prior for blind text image super-resolution. InCVPR, pages 10103–10113, 2023

  5. [13]

    Lsdir: A large scale dataset for image restoration

    Yawei Li, Kai Zhang, Jingyun Liang, Jiezhang Cao, Ce Liu, Rui Gong, Yulun Zhang, Hao Tang, Yun Liu, Denis Demandolx, et al. Lsdir: A large scale dataset for image restoration. InCVPRW, pages 1775–1787, 2023

  6. [14]

    Details or artifacts: A locally discriminative learning approach to realistic image super-resolution

    Jie Liang, Hui Zeng, and Lei Zhang. Details or artifacts: A locally discriminative learning approach to realistic image super-resolution. InCVPR, pages 5657–5666, 2022

  7. [15]

    Focal loss for dense object detection

    Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. Focal loss for dense object detection. InICCV, pages 2980–2988, 2017

  8. [16]

    Diffbir: Toward blind image restoration with generative diffusion prior

    Xinqi Lin, Jingwen He, Ziyan Chen, Zhaoyang Lyu, Bo Dai, Fanghua Yu, Yu Qiao, Wanli Ouyang, and Chao Dong. Diffbir: Toward blind image restoration with generative diffusion prior. InECCV, pages 430–448, 2024

  9. [17]

    Structure-preserving image super-resolution

    Cheng Ma, Yongming Rao, Jiwen Lu, and Jie Zhou. Structure-preserving image super-resolution. TPAMI, 44(11):7898–7911, 2021

  10. [18]

    A benchmark for chinese-english scene text image super-resolution

    Jianqi Ma, Zhetong Liang, Wangmeng Xiang, Xi Yang, and Lei Zhang. A benchmark for chinese-english scene text image super-resolution. InICCV, pages 19452–19461, 2023

  11. [19]

    A text attention network for spatial deformation robust scene text image super-resolution

    Jianqi Ma, Zhetong Liang, and Lei Zhang. A text attention network for spatial deformation robust scene text image super-resolution. InCVPR, pages 5911–5920, 2022. 10

  12. [20]

    Plugnet: Degradation aware scene text recognition supervised by a pluggable super-resolution unit

    Yongqiang Mou, Lei Tan, Hui Yang, Jingying Chen, Leyuan Liu, Rui Yan, and Yaohong Huang. Plugnet: Degradation aware scene text recognition supervised by a pluggable super-resolution unit. InECCV, pages 158–174, 2020

  13. [21]

    Content-aware local gan for photo-realistic super-resolution

    JoonKyu Park, Sanghyun Son, and Kyoung Mu Lee. Content-aware local gan for photo-realistic super-resolution. InICCV, pages 10585–10594, 2023

  14. [22]

    Addison-Wesley Longman Publishing Co., Inc., 1987

    Richard A Roberts and Clifford T Mullis.Digital signal processing. Addison-Wesley Longman Publishing Co., Inc., 1987

  15. [23]

    High- resolution image synthesis with latent diffusion models

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. High- resolution image synthesis with latent diffusion models. InCVPR, pages 10684–10695, 2022

  16. [24]

    Glu variants improve transformer.arXiv preprint, 2020

    Noam Shazeer. Glu variants improve transformer.arXiv preprint, 2020

  17. [25]

    What the daam: Interpreting stable diffusion using cross attention

    Raphael Tang, Linqing Liu, Akshat Pandey, Zhiying Jiang, Gefei Yang, Karun Kumar, Pontus Stenetorp, Jimmy Lin, and Ferhan Ture. What the daam: Interpreting stable diffusion using cross attention. InComputational Linguistics, 2023

  18. [26]

    Kolors: Effective training of diffusion model for photorealistic text-to-image synthesis.arXiv preprint, 2024

    Kolors Team. Kolors: Effective training of diffusion model for photorealistic text-to-image synthesis.arXiv preprint, 2024

  19. [27]

    Ntire 2017 challenge on single image super-resolution: Methods and results

    Radu Timofte, Eirikur Agustsson, Luc Van Gool, Ming-Hsuan Yang, and Lei Zhang. Ntire 2017 challenge on single image super-resolution: Methods and results. InCVPRW, pages 114–125, 2017

  20. [28]

    Attention is all you need.NeurIPS, 30, 2017

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need.NeurIPS, 30, 2017

  21. [29]

    Exploiting diffusion prior for real-world image super-resolution.IJCV, 132(12):5929–5949, 2024

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

  22. [30]

    Scene text image super-resolution in the wild

    Wenjia Wang, Enze Xie, Xuebo Liu, Wenhai Wang, Ding Liang, Chunhua Shen, and Xiang Bai. Scene text image super-resolution in the wild. InECCV, pages 650–666, 2020

  23. [31]

    Textsr: Content-aware text super-resolution guided by recognition.arXiv preprint, 2019

    Wenjia Wang, Enze Xie, Peize Sun, Wenhai Wang, Lixun Tian, Chunhua Shen, and Ping Luo. Textsr: Content-aware text super-resolution guided by recognition.arXiv preprint, 2019

  24. [32]

    Real-esrgan: Training real-world blind super-resolution with pure synthetic data

    Xintao Wang, Liangbin Xie, Chao Dong, and Ying Shan. Real-esrgan: Training real-world blind super-resolution with pure synthetic data. InICCV, pages 1905–1914, 2021

  25. [33]

    Sinsr: diffusion-based image super-resolution in a single step

    Yufei Wang, Wenhan Yang, Xinyuan Chen, Yaohui Wang, Lanqing Guo, Lap-Pui Chau, Ziwei Liu, Yu Qiao, Alex C Kot, and Bihan Wen. Sinsr: diffusion-based image super-resolution in a single step. InCVPR, pages 25796–25805, 2024

  26. [34]

    One-step effective diffusion network for real-world image super-resolution.NeurIPS, 37:92529–92553, 2024

    Rongyuan Wu, Lingchen Sun, Zhiyuan Ma, and Lei Zhang. One-step effective diffusion network for real-world image super-resolution.NeurIPS, 37:92529–92553, 2024

  27. [35]

    Seesr: Towards semantics-aware real-world image super-resolution

    Rongyuan Wu, Tao Yang, Lingchen Sun, Zhengqiang Zhang, Shuai Li, and Lei Zhang. Seesr: Towards semantics-aware real-world image super-resolution. InCVPR, pages 25456–25467, 2024

  28. [36]

    Group normalization

    Yuxin Wu and Kaiming He. Group normalization. InECCV, pages 3–19, 2018

  29. [37]

    Rethinking text segmentation: A novel dataset and a text-specific refinement approach

    Xingqian Xu, Zhifei Zhang, Zhaowen Wang, Brian Price, Zhonghao Wang, and Humphrey Shi. Rethinking text segmentation: A novel dataset and a text-specific refinement approach. In CVPR, pages 12045–12055, 2021

  30. [38]

    Bts: a bi-lingual benchmark for text segmentation in the wild

    Xixi Xu, Zhongang Qi, Jianqi Ma, Honglun Zhang, Ying Shan, and Xiaohu Qie. Bts: a bi-lingual benchmark for text segmentation in the wild. InCVPR, pages 19152–19162, 2022

  31. [39]

    Pixel-aware stable diffusion for realistic image super-resolution and personalized stylization

    Tao Yang, Rongyuan Wu, Peiran Ren, Xuansong Xie, and Lei Zhang. Pixel-aware stable diffusion for realistic image super-resolution and personalized stylization. InECCV, pages 74–91, 2024. 11

  32. [40]

    Hi-sam: Marrying segment anything model for hierarchical text segmentation.TPAMI, 2024

    Maoyuan Ye, Jing Zhang, Juhua Liu, Chenyu Liu, Baocai Yin, Cong Liu, Bo Du, and Dacheng Tao. Hi-sam: Marrying segment anything model for hierarchical text segmentation.TPAMI, 2024

  33. [41]

    Scaling up to excellence: Practicing model scaling for photo-realistic image restoration in the wild

    Fanghua Yu, Jinjin Gu, Zheyuan Li, Jinfan Hu, Xiangtao Kong, Xintao Wang, Jingwen He, Yu Qiao, and Chao Dong. Scaling up to excellence: Practicing model scaling for photo-realistic image restoration in the wild. InCVPR, pages 25669–25680, 2024

  34. [42]

    Resshift: Efficient diffusion model for image super-resolution by residual shifting.NeurIPS, 36:13294–13307, 2023

    Zongsheng Yue, Jianyi Wang, and Chen Change Loy. Resshift: Efficient diffusion model for image super-resolution by residual shifting.NeurIPS, 36:13294–13307, 2023

  35. [43]

    A normalized levenshtein distance metric.TPAMI, 29(6):1091–1095, 2007

    Li Yujian and Liu Bo. A normalized levenshtein distance metric.TPAMI, 29(6):1091–1095, 2007

  36. [44]

    Designing a practical degradation model for deep blind image super-resolution

    Kai Zhang, Jingyun Liang, Luc Van Gool, and Radu Timofte. Designing a practical degradation model for deep blind image super-resolution. InICCV, pages 4791–4800, 2021

  37. [45]

    The un- reasonable effectiveness of deep features as a perceptual metric

    Richard Zhang, Phillip Isola, Alexei A Efros, Eli Shechtman, and Oliver Wang. The un- reasonable effectiveness of deep features as a perceptual metric. InCVPR, pages 586–595, 2018

  38. [46]

    Diffusion-based blind text image super-resolution

    Yuzhe Zhang, Jiawei Zhang, Hao Li, Zhouxia Wang, Luwei Hou, Dongqing Zou, and Liheng Bian. Diffusion-based blind text image super-resolution. InCVPR, pages 25827–25836, 2024. 12 A FTSR Synthetic Dataset Visualization To further illustrate the construction and diversity of our ...

Pith tools

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