Pith. sign in

REVIEW 5 major objections 5 minor 69 references

Retinex-guided Histogram Transformer for Mask-free Shadow Removal

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

Pith's one-line read A compact Retinex-guided transformer removes shadows without masks and matches far larger models.

desk verdict A plausible efficiency story and one genuinely new attention mechanism, buried under an experimental section copy-pasted from the authors' own ShadowRefiner paper — unverifiable as submitted. read the letter →

arxiv 2504.14092 v1 pith:GWNAB7ND submitted 2025-04-18 cs.CV

classification cs.CV
keywords shadowremovalmask-freeRetinextheoryhistogramself-attentionCNN-Transformerhybridimagerestorationilluminationestimationefficientdeeplearning
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

ReHiT is a mask-free shadow removal network whose central claim is that shadow removal is best organized as two separate restoration problems: one for reflectance (intrinsic object color) and one for illumination (lighting). Guided by Retinex theory, the network estimates approximate inverse maps that split the shadowed image into these two components, then restores each with a hybrid CNN-Transformer encoder-decoder whose histogram-based attention is modulated by the estimated illumination. The paper argues this design reaches the quality of much larger mask-free methods, reporting PSNR/SSIM/LPIPS comparable to ShadowRefiner on ISTD, ISTD+, and WSRD+ while using 17.5M parameters and 66.4 GFLOPs, roughly 17x fewer parameters and 4x fewer FLOPs than that baseline. Because it needs no shadow mask and was trained only on the NTIRE 2025 Shadow Removal Challenge training set, the result speaks to real-world shadow removal under imperfect annotations and limited compute.

What carries the argument

The load-bearing component is the Illumination-Guided Histogram Transformer Block (IG-HTB), specifically its illumination-guided histogram self-attention (IG-HSA). Standard self-attention uses a fixed attention range; IG-HSA instead sorts spatial elements into histogram bins with equal pixel counts and computes attention within and across bins, giving the model a flexible attention span for shadows of varying size and softness. The estimated illumination map is injected to modulate the attention, so the block can concentrate on regions of abrupt lighting change. Around this block, each IG-HCT encoder/decoder level also contains a Dilated Residual Dense Block (DRDB) for residual dense features and a Semantic-aligned Scale-Aware Module (SAM) for multi-scale fusion. The dual-branch Retinex decomposition of Eq. 3 is what turns shadow removal into two sub-problems; IG-HSA is what makes each sub-problem tractable with a small network.

What would settle it

Take the trained model and set the estimator to a constant identity ($\bar L=\bar R=1$) so that $R'=L'=I^{Sh}$; if the PSNR on WSRD+ stays near the reported 26.15 dB rather than falling to the 25.86 dB of the 'w/o dual-branch' ablation, the Retinex guidance is not the source of the gain. The paper's own ablation table supplies the exact number this variant must beat to confirm the mechanism.

Watch

Extended reading notes

Core claim

The paper's central claim is that a Retinex-guided dual-branch pipeline can make a compact CNN-Transformer competitive with large pre-trained mask-free shadow removers. The shadowed image is modeled as $I^{Sh}=(R_{GT}+\hat R)\odot(L_{GT}+\hat L)$; assuming a Retinex estimator yields approximate inverses $\bar L$ and $\bar R$ satisfying $\bar L\odot L_{GT}=1$ and $\bar R\odot R_{GT}=1$, multiplying the input by these inverses produces near-clean reflectance $R'=I^{Sh}\odot\bar L$ and illumination $L'=I^{Sh}\odot\bar R$. Two instances of the Illumination-Guided Hybrid CNN-Transformer (IG-HCT) predict the residual degradations in $R'$ and $L'$, and the refined outputs are multiplied to obtain $I_{out}=R_{out}\odot L_{out}$. On benchmarks, ReHiT reports top-tier mask-free numbers: 28.81 dB PSNR on ISTD, 31.16 dB on ISTD+, and 26.15 dB on WSRD+, and its WSRD+ ablation attributes part of the gain to the dual-branch design and to the illumination-guided histogram attention.

Load-bearing premise

The whole framework depends on an unshown preprocessing step that separates each image into reflectance and illumination layers; the paper borrows this estimator from earlier work and never evaluates it on its own, so an inaccurate estimator would collapse the two branches into one and remove the claimed benefit of the lighting/color separation.

Editorial extensions

If this is right

  • If the results hold, mask-free shadow removal no longer needs a separate shadow-detection stage or manual masks, removing a major barrier to deployment on arbitrary real-world images.
  • The efficiency numbers (17.5M parameters, 66.4 GFLOPs) imply shadow removal can run on a single commodity GPU or edge device while retaining near-top quality, instead of requiring the multi-hundred-GFLOP budgets of large ConvNeXt-based competitors.
  • On WSRD+, where precise masks are unavailable and only estimated masks exist, ReHiT's 26.15 dB PSNR exceeds the mask-based ShadowFormer's 25.44 dB, suggesting mask-free methods can beat mask-dependent ones precisely where masks are hardest to obtain.
  • The WSRD+ ablation shows the dual-branch Retinex pipeline contributes roughly 0.29 dB PSNR and the IG-HTB roughly 0.41 dB; if these gains replicate, each architectural choice is load-bearing rather than cosmetic.
  • Training only on the NTIRE 2025 challenge set shows competitive shadow removal can be obtained without extra training data, large-scale pre-training, or multi-stage training pipelines.

Reading between the lines

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

  • A testable extension is to sweep the number of histogram bins in IG-HSA: if flexible attention span is the real cause of the gain, there should be an optimal bin count that tracks the spatial irregularity of shadows, with performance degrading on both sides.
  • The same reflectance-illumination split could transfer to low-light enhancement, dehazing, and exposure correction, since those tasks also fit the Retinex decomposition; the paper's citation of ECMamba already points in that direction.
  • The unspecified Retinex estimator is the main hidden variable: re-running the pipeline with the estimator frozen versus trained jointly, or replaced by a simple off-the-shelf decomposition, would reveal how much of the reported performance belongs to the estimator and how much to the IG-HCT modules.
  • Because the same IG-HCT design serves as both $M_R$ and $M_L$, the illumination branch's output could be tested as a zero-shot shadow locator: regions where $L'$ deviates most from their surroundings might localize shadows without any mask supervision.
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

5 major / 5 minor

Summary. The paper proposes ReHiT, a mask-free shadow removal network that combines a dual-branch Retinex decomposition with an illumination-guided hybrid CNN-Transformer architecture. The method is evaluated on ISTD, ISTD+, WSRD+, and the NTIRE 2025 Shadow Removal Challenge, where the authors report competitive quality at 17.5M parameters and 66.4 GFLOPs, achieving 7th place in the fidelity track.

Significance. If substantiated, the reported efficiency-quality trade-off would be practically useful, and the authors do ship code. The design, however, reuses substantial components from the authors' previous works (ECMamba [13] and ShadowRefiner [11]) and from Sun et al. [42], so the novelty is incremental. More importantly, the experimental evidence as presented is internally contradictory and missing key technical details, so the central claim cannot currently be assessed.

major comments (5)
  1. [Section 4 (after Table 1)] The experimental section is internally inconsistent: it contains a large verbatim block from the authors' earlier ShadowRefiner paper, including text claiming 'our ShadowRefiner demonstrates superior performances,' a table captioned 'NTIRE 2024 Perceptual Track,' and an ablation table headed 'ShadowRefiner (Ours),' interleaved with the ReHiT narrative. As a result, Table 2 appears twice (once as model complexity, once as NTIRE 2024 ranking) and Table 3 appears twice (once as a ShadowRefiner ablation, once as the NTIRE 2025 ranking). No statement identifies which rows correspond to ReHiT, so the 'Ours (ReHiT)' numbers in Table 1 cannot be unambiguously attributed to the described model.
  2. [Section 3.1, Eq. (3)] The entire dual-branch construction depends on a Retinex estimator E that produces (bar-R, bar-L, F_i) satisfying bar-L ⊙ L_GT ≈ 1 and bar-R ⊙ R_GT ≈ 1. This estimator is never described in the manuscript; the only reference is [13], the authors' own ECMamba paper. The reader cannot determine the estimator's architecture, training data, or whether it is shared between the two branches, yet it is the basis for the reflectance/illumination separation and for the illumination guidance in IG-HSA. Without this component, the method is not reproducible and the ablation 'w/o dual-branch pipeline' in Table 4 is uninterpretable.
  3. [Section 4.2, Table 1 and Section 4.4, Table 4] All reported numbers are from a single training run with no error bars, multiple seeds, or significance tests. The claimed advantages over ShadowRefiner are 0.06-0.13 dB PSNR, while ReHiT is slightly worse on SSIM and LPIPS in two of the three datasets, and the ablations in Table 4 show performance drops of only 0.18-0.41 dB PSNR. These deltas are within typical run-to-run variation for image restoration networks; as presented, the results do not support the claims that ReHiT is competitive or that each component contributes meaningfully.
  4. [Section 4.3, Table 3] The NTIRE 2025 entry is listed as 'Oath (ours)' in Table 3, while the paper's method is named ReHiT; the relationship between these names is never explained. Furthermore, the paper claims 'fastest inference speeds among top-ranked entries,' but no runtime or latency measurements appear anywhere in the manuscript; Table 3 reports only parameter counts. The efficiency claim is therefore unsupported by the presented data.
  5. [Sections 4.1 and 4.3] It is never stated which training data and protocol produced the Table 1 results versus the NTIRE 2025 entry. Section 4.1 describes training on a single RTX 3090Ti GPU with specific augmentations and losses but does not mention the NTIRE dataset, while Section 4.3 states the model was trained solely on the NTIRE 2025 challenge set. The connection between the model evaluated in Table 1 and the model in Table 3 is missing, so the central efficiency-quality claim cannot be verified from the manuscript.
minor comments (5)
  1. [Abstract] The abstract contains a duplicated phrase: 'multi-scale semantic fusion, multi-scale semantic fusion.'
  2. [Figure 3 and Figure 4 captions] The captions for these figures refer to 'our ShadowRefiner' instead of 'our ReHiT,' which is inconsistent with the paper's method name.
  3. [Table 2 (NTIRE 2024) and Table 3 (ShadowRefiner ablation)] These table captions are clearly leftovers from the authors' previous ShadowRefiner paper and should be removed or corrected.
  4. [Section 4.1, loss function] The paper mentions 'additional constraints [13]' as part of the loss but never specifies what these constraints are; they should be defined or precisely referenced.
  5. [Code link] The code repository is linked as github.com/dongw22/oath while the model is named ReHiT; the relationship between these names should be clarified.

Circularity Check

0 steps flagged · score 0.0 of 10

No circular derivation; external benchmarks carry the central claims.

full rationale

The claimed derivation chain in Sec. 3.1 takes the dual-branch Retinex formulation from the authors' prior ECMamba [13] with explicit citations ('Therefore as in [13] perturbations ( ˆR and ˆL) are introduced to model these shadowed images', 'additional constraints [13] are used for optimization supervision'). This is architectural borrowing, not a circular reduction: Eq. 3 is not derived from the target metric, and [13] is a published prior that does not assume the present shadow-removal result. The central performance and efficiency claims are supported by external benchmarks (ISTD/ISTD+/WSRD+ comparisons and the NTIRE 2025 challenge ranking table), not by the paper's own fitted values or by the cited prior. The Retinex estimator E is not described in the manuscript, which is a reproducibility gap rather than a circular step; the duplicated ShadowRefiner text and duplicate table numbers are manuscript-integrity problems that affect verifiability but do not make any prediction equivalent to its input by construction. No fitted parameter is renamed as a prediction, no uniqueness theorem is imported, and no ansatz is disguised as a consequence.

Assumptions & free parameters 3 free parameters · 3 assumptions · 0 invented entities

The paper's central architecture depends on the Retinex decomposition borrowed from the authors' ECMamba [13] and on hand-chosen hyperparameters that are not reported. No new physical entities are introduced.

free parameters (3)
  • Histogram bin count and bin assignment in IG-HSA
    Categorizing spatial elements into bins is central to IG-HSA (Sec. 3.3), but the number of bins and the assignment criterion are never specified, so they are hand-chosen ad hoc at implementation time.
  • Loss weighting coefficients
    The training loss combines L1, multi-scale SSIM, structure loss [67], and 'additional constraints [13]' (Sec. 4.1), but the relative weights are not reported.
  • Illumination guidance modulation strength in IG-HSA
    How illumination information modulates attention (multiplicative, additive, or learned scalar) is not formalized in the paper.
assumptions (3)
  • domain assumption Image formation obeys the Retinex decomposition I = R * L, with independent reflectance and illumination.
    Classic Retinex theory (Land 1977) is assumed throughout Sec. 3.1; the shadowed image model of Eqs. 1-2 rests on it and on the perturbation model of [13].
  • ad hoc to paper An inverse Retinex estimator can recover maps Lbar and Rbar such that Lbar * L_GT = 1 and Rbar * R_GT = 1.
    Sec. 3.1 explicitly says 'under the assumption that we can approximate Lbar and Rbar via Retinex estimator', but provides no estimator details or validation.
  • domain assumption Histogram binning of features preserves the information needed for restoration.
    IG-HSA relies on sorting features into bins and attending within and across bins (Sec. 3.3, following Sun et al. [42]); the paper assumes this grouping does not lose critical spatial information.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Retinex-guided Histogram Transformer for Mask-free Shadow Removal." pith.science (2026). https://pith.science/paper/GWNAB7ND

@misc{pith2026250414092,
  author       = {Pith},
  title        = {Pith review of: Retinex-guided Histogram Transformer for Mask-free Shadow Removal},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/GWNAB7ND}},
  note         = {Machine review of arXiv:2504.14092}
}
read the original abstract

While deep learning methods have achieved notable progress in shadow removal, many existing approaches rely on shadow masks that are difficult to obtain, limiting their generalization to real-world scenes. In this work, we propose ReHiT, an efficient mask-free shadow removal framework based on a hybrid CNN-Transformer architecture guided by Retinex theory. We first introduce a dual-branch pipeline to separately model reflectance and illumination components, and each is restored by our developed Illumination-Guided Hybrid CNN-Transformer (IG-HCT) module. Second, besides the CNN-based blocks that are capable of learning residual dense features and performing multi-scale semantic fusion, multi-scale semantic fusion, we develop the Illumination-Guided Histogram Transformer Block (IGHB) to effectively handle non-uniform illumination and spatially complex shadows. Extensive experiments on several benchmark datasets validate the effectiveness of our approach over existing mask-free methods. Trained solely on the NTIRE 2025 Shadow Removal Challenge dataset, our solution delivers competitive results with one of the smallest parameter sizes and fastest inference speeds among top-ranked entries, highlighting its applicability for real-world applications with limited computational resources. The code is available at https://github.com/dongw22/oath.

Figures

Figures reproduced from arXiv: 2504.14092 by the authors.

Figure 1
Figure 1. Our method demonstrates effective shadow removal from low-quality images and achieves the 7th place in the fidelity track. [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. The overall pipeline of our ReHiT. Our solution employs dual-branch Retinex-based pipeline, each branch is dedicated to the restoration of reflectance and illumination map, respectively. The Illumination-Guided Hybrid CNN-Transformers (IG-HCT) module is developed as the primary restoration network. Besides, the Illumination-Guided Histogram Transformer Block (IG-HTB) with the illumination-guided histogram self-atten… view at source ↗
Figure 3
Figure 3. Visual comparisons on the ISTD dataset [ Figure 3. Visual comparisons on the ISTD dataset [ [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: Visual comparisons on the ISTD+ dataset[ Figure 4. Visual comparisons on the ISTD+ dataset [2 [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: We can see that our ShadowRefiner achieves no blifihdl ffiif diff performance utilize extra data for training, or includes more [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

69 extracted references · 53 canonical work pages

  1. [13]

    Ecmamba: Consolidating selective state space model with retinex guidance for efficient multiple exposure correc- tion

    Wei Dong, Han Zhou, Yulun Zhang, Xiaohong Liu, and Jun Chen. Ecmamba: Consolidating selective state space model with retinex guidance for efficient multiple exposure correc- tion. Advances in Neural Information Processing Systems , 37:53438–53457, 2024. 2, 3, 4, 5

  2. [11]

    Shadowrefiner: Towards mask-free shadow removal via fast fourier transformer

    Wei Dong, Han Zhou, Yuqiong Tian, Jingke Sun, Xiaohong Liu, Guangtao Zhai, and Jun Chen. Shadowrefiner: Towards mask-free shadow removal via fast fourier transformer. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 6208–6217, 2024. 2, 3, 4, 5, 6

  3. [42]

    Restoring images in adverse weather condi- tions via histogram transformer

    Shangquan Sun, Wenqi Ren, Xinwei Gao, Rui Wang, and Xiaochun Cao. Restoring images in adverse weather condi- tions via histogram transformer. In European Conference on Computer Vision. Cham: Springer Nature Switzerland, 2024. 4

  4. [1]

    Ntire 2023 hr non- homogeneous dehazing challenge report

    Codruta O Ancuti, Cosmin Ancuti, Florin-Alexandru Vasluianu, Radu Timofte, Han Zhou, Wei Dong, Yangyi Liu, Jun Chen, Huan Liu, Liangyan Li, et al. Ntire 2023 hr non- homogeneous dehazing challenge report. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 1808–1825, 2023. 3

  5. [2]

    Ntire 2024 dense and non-homogeneous dehazing challenge report

    Codruta O Ancuti, Cosmin Ancuti, Florin-Alexandru Vasluianu, Radu Timofte, Yidi Liu, Xingbo Wang, Yurui Zhu, Gege Shi, Xin Lu, Xueyang Fu, et al. Ntire 2024 dense and non-homogeneous dehazing challenge report. In Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 6453–6468, 2024. 3

  6. [3]

    Shadow removal using inten- sity surfaces and texture anchor points

    Eli Arbel and Hagit Hel-Or. Shadow removal using inten- sity surfaces and texture anchor points. IEEE Transactions on Pattern Analysis and Machine Intelligence , 33(6):1202– 1216, 2010. 2

  7. [4]

    S2net: Shadow mask-based semantic-aware network for single-image shadow remova

    Qiqi Bao, Yunmeng Liu, Bowen Gang, Wenming Yang, and Qingmin Liao. S2net: Shadow mask-based semantic-aware network for single-image shadow remova. IEEE Transac- tions on Consumer Electronics, 68(3):209–220, 2022. 3

  8. [5]

    Retinexformer: One-stage retinexbased transformer for low-light image enhancement

    Yuanhao Cai, Hao Bian, Jing Lin, HaoqianWang, Radu Timofte, and Yulun Zhang. Retinexformer: One-stage retinexbased transformer for low-light image enhancement. In Proceedings of the IEEE/CVF international conference on computer vision, pages 12504–12513, 2023. 4

Show all 69 references
  1. [6]

    Learn- ing a sparse transformer network for effective image de- raining

    Xiang Chen, Hao Li, Mingqiang Li, and Jinshan Pan. Learn- ing a sparse transformer network for effective image de- raining. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5896–5905,

  2. [7]

    Canet: A context-aware network for shadow removal

    Zipei Chen, Chengjiang Long, Ling Zhang, and Chunxia Xiao. Canet: A context-aware network for shadow removal. In Proceedings of the IEEE/CVF international conference on computer vision, pages 4743–4752, 2021. 3

  3. [8]

    Towards ghost-free shadow removal via dual hierarchical aggregation network and shadow matting gan

    Xiaodong Cun, Chi-Man Pun, and Cheng Shi. Towards ghost-free shadow removal via dual hierarchical aggregation network and shadow matting gan. In AAAI, 2020. 5, 6

  4. [9]

    Argan: Attentive recurrent generative adversarial net- work for shadow detection and removal

    Bin Ding, Chengjiang Long, Ling Zhang, and Chunxia Xiao. Argan: Attentive recurrent generative adversarial net- work for shadow detection and removal. In Proceedings of the IEEE/CVF international conference on computer vision, pages 10212–10221, 2019. 2

  5. [10]

    A new sclera segmen- tation and vessels extraction method for sclera recognition

    Wei Dong, Han Zhou, and Dong Xu. A new sclera segmen- tation and vessels extraction method for sclera recognition. In 2018 10th International Conference on Communication Software and Networks (ICCSN), 2018. 2

  6. [12]

    Dehazedct: Towards effective non-homogeneous dehazing via deformable convolutional transformer

    Wei Dong, Han Zhou, Ruiyi Wang, Xiaohong Liu, Guang- tao Zhai, and Jun Chen. Dehazedct: Towards effective non-homogeneous dehazing via deformable convolutional transformer. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 6405– 6414, 2024. 3

  7. [14]

    To- wards scale-aware low-light enhancement via structure- guided transformer design

    Wei Dong, Yan Min, Han Zhou, and Jun Chen. To- wards scale-aware low-light enhancement via structure- guided transformer design. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Workshops, 2025. 3

  8. [15]

    Finlayson, Steven D

    Graham D. Finlayson, Steven D. Hordley, Cheng Lu, and Mark S. Drew. On the removal of shadows from images. IEEE Transactions on Pattern Analysis and Machine Intelli- gence, 28(59–68), 2006. 2

  9. [16]

    Finlayson, Mark S

    Graham D. Finlayson, Mark S. Drew, and Cheng Lu. En- tropy minimization for shadow removal. International Jour- nal of Computer Vision, 85:35–57, 2009. 2

  10. [17]

    Auto- exposure fusion for single-image shadow removal

    Lan Fu, Changqing Zhou, Qing Guo, Felix Juefei-Xu, Hongkai Yu, Wei Feng, Yang Liu, and Song Wang. Auto- exposure fusion for single-image shadow removal. InCVPR,

  11. [18]

    Han Gong and Darren P. Cosker. Interactive removal and ground truth for difficult shadow scenes.Journal of the Opti- cal Society of America. A, Optics, image science, and vision, 33(9):1798–1811, 2016. 2

  12. [19]

    Learn- ing to remove soft shadows

    Maciej Gryka, Michael Terry, and Gabriel J Brostow. Learn- ing to remove soft shadows. ACM Transactions on Graphics (TOG), 34(5):1–15, 2015. 3

  13. [20]

    Shadowformer: Global context helps image shadow removal

    Lanqing Guo, Siyu Huang, Ding Liu, Hao Cheng, and Bihan Wen. Shadowformer: Global context helps image shadow removal. In AAAI, 2023. 2, 4, 5, 6

  14. [21]

    Paired regions for shadow detection and removal.IEEE transactions on pattern analysis and machine intelligence, 35(12):2956–2967, 2012

    Ruiqi Guo, Qieyun Dai, and Derek Hoiem. Paired regions for shadow detection and removal.IEEE transactions on pattern analysis and machine intelligence, 35(12):2956–2967, 2012. 2

  15. [22]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceed- ings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016. 4

  16. [23]

    Maskshadownet: Toward shadow removal via masked adap- tive instance normalization

    Shengfeng He, Bing Peng, Junyu Dong, and Yong Du. Maskshadownet: Toward shadow removal via masked adap- tive instance normalization. IEEE Signal Processing Letters, 28(957-961), 2021. 3

  17. [24]

    Direction-aware spatial context features for shadow detection

    Xiaowei Hu, Lei Zhu, Chi-Wing Fu, Jing Qin, and Pheng- Ann Heng. Direction-aware spatial context features for shadow detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 7454–7462,

  18. [25]

    Real-time lane-vehicle detection and track- ing system

    Guan Huang, Xingang Wang, Wenqi Wu, Han Zhou, and Yuanyuan Wu. Real-time lane-vehicle detection and track- ing system. In Chinese Control and Decision Conference (CCDC), 2016. 2

  19. [26]

    Weinberger

    Gao Huang, Zhuang Liu, Laurens Van Der Maaten, and Kil- ian Q. Weinberger. Densely connected convolutional net- works. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 4700–4708, 2017. 4

  20. [27]

    Yeying Jin, Aashish Sharma, and Robby T. Tan. Dc- shadownet: Single-image hard and soft shadow removal using unsupervised domain-classifier guided network. In ICCV, 2021. 2, 5, 6

  21. [28]

    The retinex theory of color vision

    Edwin H Land. The retinex theory of color vision. Scientific american, 237(6):108–129, 1977. 2

  22. [29]

    Shadow removal via shadow image decomposition

    Hieu Le and Dimitris Samaras. Shadow removal via shadow image decomposition. In ICCV, 2019. 3, 5, 6, 7

  23. [30]

    Zero-shot day-night domain adaptation with a physics prior

    Attila Lengyel, Sourav Garg, Michael Milford, and Jan C van Gemert. Zero-shot day-night domain adaptation with a physics prior. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 4399–4409, 2021. 2

  24. [31]

    NTIRE 2025 challenge on day and night raindrop removal for dual-focused images: Methods and results

    Xin Li, Yeying Jin, Xin Jin, Zongwei Wu, Bingchen Li, Yufei Wang, Wenhan Yang, Yu Li, Zhibo Chen, Bihan Wen, Robby Tan, Radu Timofte, et al. NTIRE 2025 challenge on day and night raindrop removal for dual-focused images: Methods and results. In Proceedings of the IEEE/CVF Conf...

  25. [32]

    Swinir: Image restoration using swin transformer

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

  26. [33]

    Bedsr-net: A deep shadow removal network from a single document image

    Yun-Hsuan Lin, Wen-Chin Chen, and Yung-Yu Chuang. Bedsr-net: A deep shadow removal network from a single document image. In 2020 IEEE/CVF Conference on Com- puter Vision and Pattern Recognition (CVPR), pages 12902– 12911, 2020. 2

  27. [34]

    NTIRE 2025 challenge on low light image enhancement: Methods and results

    Xiaoning Liu, Zongwei Wu, Florin-Alexandru Vasluianu, Hailong Yan, Bin Ren, Yulun Zhang, Shuhang Gu, Le Zhang, Ce Zhu, Radu Timofte, et al. NTIRE 2025 challenge on low light image enhancement: Methods and results. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion ...

  28. [35]

    Yuhao Liu, Zhanghan Ke, Ke Xu, Fang Liu, Zhenwei Wang, and Rynson W. H. Lau. Recasting regional lighting for shadow removal. In Proceedings of the AAAI Conference on Artificial Intelligence, pages 3810–3818, 2024. 3

  29. [36]

    Swin transformer: Hierarchical vision transformer using shifted windows

    Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. In Proceedings of the IEEE/CVF international conference on computer vision, pages 10012–10022, 2021. 4

  30. [37]

    Shadow removal by a lightness-guided network with training on unpaired data

    Zhihao Liu, Hui Yin, Yang Mi, Mengyang Pu, and Song Wang. Shadow removal by a lightness-guided network with training on unpaired data. IEEE Transactions on Image Pro- cessing, 30:1853–1865, 2021. 2

  31. [38]

    A convnet for the 2020s

    Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feicht- enhofer, Trevor Darrell, and Saining Xie. A convnet for the 2020s. In Proceedings of the IEEE/CVF conference on com- puter vision and pattern recognition , pages 11976–11986,

  32. [39]

    Gustafsson, Zheng Zhao, et al

    Ziwei Luo, Fredrik K. Gustafsson, Zheng Zhao, et al. Re- fusion: Enabling large-size realistic image restoration with latent-space diffusion models. In CVPRW, 2023. 2, 5, 6

  33. [40]

    Liangqiong Qu, Jiandong Tian, Shengfeng He, Yandong Tang, and Rynson W. H. Lau. Deshadownet: A multicon- text embedding deep network for shadow removal. In 2017 IEEE Conference on Computer Vision and Pattern Recogni- tion (CVPR), pages 2308–2316, 2017. 2

  34. [41]

    Vision transformers for single image dehazing

    Yuda Song, Zhuqing He, Hui Qian, and Xin Du. Vision transformers for single image dehazing. In IEEE Transac- tions on Image Processing, pages 1927–1941, 2023. 4

  35. [43]

    Wsrd: A novel benchmark for high resolution image shadow removal

    Florin-Alexandru Vasluianu, Tim Seizinger, and Radu Tim- ofte. Wsrd: A novel benchmark for high resolution image shadow removal. In CVPRW, 2023. 5, 6, 7, 8

  36. [44]

    Towards image ambient lighting normalization

    Florin-Alexandru Vasluianu, Tim Seizinger, Zongwei Wu, Rakesh Ranjan, and Radu Timofte. Towards image ambient lighting normalization. In European Conference on Com- puter Vision, pages 385–404. Springer, 2024. 2, 3, 5, 6

  37. [45]

    Ntire 2024 im- age shadow removal challenge report

    Florin-Alexandru Vasluianu, Tim Seizinger, Zhuyun Zhou, Zongwei Wu, Cailian Chen, Radu Timofte, Wei Dong, Han Zhou, Yuqiong Tian, Jun Chen, et al. Ntire 2024 im- age shadow removal challenge report. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recog...

  38. [46]

    NTIRE 2025 image shadow removal challenge report

    Florin-Alexandru Vasluianu, Tim Seizinger, Zhuyun Zhou, Zongwei Wu, Cailian Chen, Radu Timofte, et al. NTIRE 2025 image shadow removal challenge report. In Proceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) Workshops, 2025. 6, 7

  39. [47]

    Attention is all you need

    Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkor- eit, Llion Jones, Aidan N Gomez, and Łukasz Kaiserand Illia Polosukhin. Attention is all you need. In Advances in Neural Information Processing Systems (NeurIPS), 2017. 4

  40. [48]

    Wan, Hui Yin, Zhenyao Wu, Xinyi Wu, Y

    J. Wan, Hui Yin, Zhenyao Wu, Xinyi Wu, Y . Liu, and Song Wang. Style-guided shadow removal. In European Confer- ence on Computer Vision , pages 361–378. Cham: Springer Nature Switzerland, 2022. 3

  41. [49]

    Stacked conditional generative adversarial networks for jointly learning shadow detection and shadow removal

    Jifeng Wang, Xiang Li, and Jian Yang. Stacked conditional generative adversarial networks for jointly learning shadow detection and shadow removal. In CVPR, 2018. 2, 3, 5, 6

  42. [50]

    Bovik, Hamid R

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

  43. [51]

    Uformer: A general u-shaped transformer for image restoration

    Zhendong Wang, Xiaodong Cun, Jianmin Bao, Wengang Zhou, Jianzhuang Liu, and Houqiang Li. Uformer: A general u-shaped transformer for image restoration. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 17683–17693, 2022. 5

  44. [52]

    Shadow elimination algorithm using color and texture features

    Minghu Wu, Rui Chen, and Ying Tong. Shadow elimination algorithm using color and texture features. Computational intelligence and neuroscience 2020, 2020. 2

  45. [53]

    Image de-raining transformer

    Jie Xiao, Xueyang Fu, Aiping Liu, Feng Wu, and Zheng- Jun Zha. Image de-raining transformer. IEEE transactions on pattern analysis and machine intelligence, 45(11):12978– 12995, 2022. 5

  46. [54]

    Sclera recognition based on efficient sclera segmentation and significant vessel matching

    Dong Xu, Wei Dong, and Han Zhou. Sclera recognition based on efficient sclera segmentation and significant vessel matching. In The Computer Journal, 2022. 2

  47. [55]

    Shadow-aware dynamic convolution for shadow removal

    Yimin Xu, Mingbao Lin, Hong Yang, Fei Chao, and Ron- grong Ji. Shadow-aware dynamic convolution for shadow removal. In Pattern Recognition, 2024. 5, 6

  48. [56]

    NTIRE 2025 challenge on single image reflection removal in the wild: Datasets, methods and results

    Kangning Yang, Jie Cai, Ling Ouyang, Florin-Alexandru Vasluianu, Radu Timofte, Jiaming Ding, Huiming Sun, Lan Fu, Jinlong Li, Chiu Man Ho, Zibo Meng, et al. NTIRE 2025 challenge on single image reflection removal in the wild: Datasets, methods and results. In Proceedings of th...

  49. [57]

    Qingxiong Yang, K. H. Tan, and Narendra Ahuja. Shadow removal using bilateral filtering. IEEE Transactions on Im- age Processing, 21(10):4361–4368, 2012. 2

  50. [58]

    Multi-scale context aggregation by dilated convolutions

    Fisher Yu and Vladlen Koltun. Multi-scale context aggregation by dilated convolutions. arXiv preprint arXiv:1511.07122, 2015. 4

  51. [59]

    Towards efficient and scale-robust ultra- high-definition image demoir´eing

    Xin Yu, Peng Dai, Wenbo Li, Lan Ma, Jiajun Shen, Jia Li, and Xiaojuan Qi. Towards efficient and scale-robust ultra- high-definition image demoir´eing. In European Conference on Computer Vision, pages 646–662. Cham: Springer Nature Switzerland, 2022. 2, 3, 4

  52. [60]

    Restormer: Efficient transformer for high-resolution image restoration

    Syed Waqas Zamir, Aditya Arora, Salman Khan, Mu- nawar Hayat, Fahad Shahbaz Khan, and Ming-Hsuan Yang. Restormer: Efficient transformer for high-resolution image restoration. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 5728–5739,

  53. [61]

    The unreasonable effectiveness of deep features as a perceptual metric

    Richard Zhang, Phillip Isola, Alexei A Efros, Eli Shecht- man, and Oliver Wang. The unreasonable effectiveness of deep features as a perceptual metric. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recogni- tion (CVPR), 2018. 5

  54. [62]

    Residual dense network for image super-resolution

    Yulun Zhang, Yapeng Tian, Yu Kong, Bineng Zhong, and Yun Fu. Residual dense network for image super-resolution. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 2472–2481, 2018. 4

  55. [63]

    Comprehensive and delicate: An efficient transformer for image restoration

    Haiyu Zhao, Yuanbiao Gou, Boyun Li, Dezhong Peng, Jiancheng Lv, and Xi Peng. Comprehensive and delicate: An efficient transformer for image restoration. In Proceed- ings of the IEEE/CVF conference on computer vision and pattern recognition, pages 14122–14132, 2023. 5

  56. [64]

    Pixel-wise illumination correction algorithms for rel- ative color constancy under the spectral domain

    Yunfeng Zhao, Chris Elliott, Huiyu Zhou, and Karen Raf- ferty. Pixel-wise illumination correction algorithms for rel- ative color constancy under the spectral domain. In IEEE International Symposium on Signal Processing and Informa- tion Technology (ISSPIT), 2018. 2

  57. [65]

    Breaking through the haze: An advanced non-homogeneous dehazing method based on fast fourier convolution and convnext

    Han Zhou, Wei Dong, Yangyi Liu, and Jun Chen. Breaking through the haze: An advanced non-homogeneous dehazing method based on fast fourier convolution and convnext. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition, pages 1895–1904, 2023. 3

  58. [66]

    Glare: Low light image enhancement via generative latent feature based codebook retrieval

    Han Zhou, Wei Dong, Xiaohong Liu, Shuaicheng Liu, Xiongkuo Min, Guangtao Zhai, and Jun Chen. Glare: Low light image enhancement via generative latent feature based codebook retrieval. In European Conference on Computer Vision, pages 36–54. Springer, 2024. 5

  59. [67]

    Lita-gs: Illumination- agnostic novel view synthesis via reference-free 3d gaus- sian splatting and physical priors

    Han Zhou, Wei Dong, and Jun Chen. Lita-gs: Illumination- agnostic novel view synthesis via reference-free 3d gaus- sian splatting and physical priors. arXiv preprint arXiv:2504.00219, 2025. 2, 5

  60. [68]

    Low-light image enhancement via generative perceptual priors

    Han Zhou, Wei Dong, Xiaohong Liu, Yulun Zhang, Guang- tao Zhai, and Jun Chen. Low-light image enhancement via generative perceptual priors. In Proceedings of the AAAI Conference on Artificial Intelligence , pages 10752–10760,

  61. [69]

    Efficient model-driven network for shadow removal

    Yurui Zhu, Zeyu Xiao, Yanchi Fang, Xueyang Fu, Zhiwei Xiong, and Zheng-Jun Zha. Efficient model-driven network for shadow removal. In AAAI, 2022. 6

Pith tools

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