Papers
Topics
Authors
Recent
Search
2000 character limit reached

OmniLight: One Model to Rule All Lighting Conditions

Published 16 Apr 2026 in cs.CV | (2604.15170v1)

Abstract: Adverse lighting conditions, such as cast shadows and irregular illumination, pose significant challenges to computer vision systems by degrading visibility and color fidelity. Consequently, effective shadow removal and ALN are critical for restoring underlying image content, improving perceptual quality, and facilitating robust performance in downstream tasks. However, while achieving state-of-the-art results on specific benchmarks is a primary goal in image restoration challenges, real-world applications often demand robust models capable of handling diverse domains. To address this, we present a comprehensive study on lighting-related image restoration by exploring two contrasting strategies. We leverage a robust framework for ALN, DINOLight, as a specialized baseline to exploit the characteristics of each individual dataset, and extend it to OmniLight, a generalized alternative incorporating our proposed Wavelet Domain Mixture-of-Experts (WD-MoE) that is trained across all provided datasets. Through a comparative analysis of these two methods, we discuss the impact of data distribution on the performance of specialized and unified architectures in lighting-related image restoration. Notably, both approaches secured top-tier rankings across all three lighting-related tracks in the NTIRE 2026 Challenge, demonstrating their outstanding perceptual quality and generalization capabilities. Our codes are available at https://github.com/OBAKSA/Lighting-Restoration.

Summary

  • The paper introduces OmniLight, a unified deep restoration model that concurrently handles shadow removal and ambient lighting normalization using a novel dual-branch MoE design.
  • It innovatively integrates DINOv2 visual priors with discrete wavelet transforms to achieve robust multi-scale feature extraction and degradation-aware routing.
  • Experimental results on NTIRE 2026 challenge datasets demonstrate competitive performance and enhanced generalization across varying lighting conditions.

OmniLight: Unified Deep Restoration Under All Lighting Conditions

Introduction and Problem Scope

Lighting-induced image degradations, such as complex cast shadows and multi-source chromatic illumination, fundamentally challenge low-level computer vision. Traditional restoration tracks (e.g., denoising, deblurring, super-resolution) are relatively well-defined, but ambient lighting normalization (ALN)โ€”which entails restoring images with non-uniform, multi-source chromatic illuminationโ€”remains uniquely ill-posed. Shadow removal, traditionally addressed as a binary segmentation problem, is insufficient for real scenes with spatially continuous shading transitions and diverse lighting objects. Recent specialized datasets, such as Ambient6K and CL3AN, have further underscored the need for more general, semantically aware, and physically motivated restoration models.

The paper introduces the OmniLight architecture (2604.15170), representing the first unified framework that simultaneously addresses single-image shadow removal, ALN under white lighting, and ALN under color lightingโ€”in effect, merging these into a โ€œlighting-related image restorationโ€ problem domain. This unified approach is positioned against the alternative strategy of โ€œspecialized task learning,โ€ typified by the DINOLight baseline, which leverages strong visual priors but is optimized for narrow distributional targets.

Methodology: OmniLight Architecture

The OmniLight architecture is U-Net-based, but with crucial innovations in both multi-scale feature extraction and task generalization. Specifically, the backbone builds on SFDINO blocks, leveraging frozen DINOv2 visual priors while fusing them through dual-branch processing in novel OmniLight blocks. Figure 1

Figure 1: The high-level OmniLight architecture, employing a U-Net backbone with DINOv2-augmented encoders and WD-MoE-informed decoder/bottleneck for multi-task lighting-related restoration.

Each OmniLight block comprises a DINOLight branch and a Wavelet Domain Mixture-of-Experts (WD-MoE) branch:

  • The DINOLight branch is responsible for semantic and geometric fidelity, integrating DINOv2-extracted self-supervised image features.
  • The WD-MoE branch decomposes features via discrete wavelet transforms, isolating low-frequency illumination trends and high-frequency textural cues for expert-specific processing. Figure 2

    Figure 2: Schematic of the OmniLight block showing the dual-branch interaction between DINOLight and frequency-adapted WD-MoE components.

WD-MoE deploys expert sub-networks for both low and high wavelet bands. Restormer blocks address low-frequency (global tone, penumbra, chromatic shift), while NAFNet blocks (lightweight CNNs) target high-frequency content (sharp shadow boundaries, textures). These sub-band experts are conditionally routed via a vector constructed from global statistics (global average/max pools of both feature and DINOv2 representations), enabling robust degradation-aware adaptation. An inverse DWT reconstructs the spatial map, which is fused via spatial feature transform to modulate the DINOLight backbone.

The network is trained with a composite loss: pixel L1, multi-scale SSIM, and an auxiliary load-balancing term to stabilize the MoE routing.

Experimental Results

Comprehensive evaluations demonstrate the efficacy and trade-offs between DINOLight (specialized) and OmniLight (unified) approaches.

OmniLight achieves top performance across multiple public lighting-related datasets and the NTIRE 2026 Challenge, securing:

  • 1st (Perceptual) in ALN (White Lighting)
  • 2nd (Fidelity), 4th (Perceptual) in ALN (Color Lighting)
  • Consistently competitive or near-leading positions in single-image shadow removal

Numerical results reveal a typical trade-off pattern: DINOLight marginally outperforms on the dataset it is specialized for, while OmniLight, trained multi-domain, achieves superior generalization and robust competitive performance on all frontsโ€”often surpassing all previous methods in average perceptual and structural metrics. Figure 3

Figure 3: Qualitative samples on NTIRE 2026 Challenge test sets, illustrating realistic restoration of shadows and chromatic degradation by OmniLight.

Cluster analysis of the WD-MoEโ€™s routing vector via t-SNE reveals that the model internally distinguishes degradation modes, with clear separation between shadow, white, and colored lighting cases. Figure 4

Figure 4: t-SNE embedding of WD-MoE routing guidance vectors, demonstrating effective domain-aware routing in OmniLight across diverse lighting tasks.

Failure cases are mostly localized color shifts in shadow removal tasks, indicating that joint training can sometimes imperfectly disentangle chromatic adaptation, especially when exposed to datasets emphasizing extreme color distributions. Figure 5

Figure 5: Examples from NTIRE 2026 shadow removal set showing both successful restoration and failure cases with artifact introduction.

Implications and Theoretical Perspective

This work formalizes and advances the โ€œunificationโ€ paradigm for image restoration under adverse, heterogeneous illumination. By demonstrating that structured MoE design in the wavelet domain with domain-aware routing mitigates negative transfer, it pushes the field beyond specialized mask-based or semantic prior-heavy approaches. The networkโ€™s ability to generalize domain knowledgeโ€”both geometric and chromaticโ€”across lighting distributions establishes a strong basis for further research into unified low-level vision architectures.

Practical implications include more robust vision systems deployed in unconstrained environments, where hand-designed or dataset-specific models would otherwise fail. Theoretically, the results encourage broader exploration of frequency-domain decoupling, context-conditional expert selection, and stronger integration of foundational model priors (e.g., DINOv2) even in low-level vision.

Future Directions

While the dual-branch MoE routing successfully reduces negative transfer, the current model shows some residual interference across domains. Future work should develop more sophisticated dynamic routing mechanisms, optimize batch/sample allocation for expert balance, and investigate strategies for finer disentanglement of chromatic and structural priors. Extending this approach to even broader multi-corruption or scene understanding tasks represents a natural evolution.

Conclusion

The OmniLight model substantiates that it is feasible to unify lighting-related restorationโ€”spanning shadow removal and complex chromatic ALNโ€”within a single deep architecture. The combination of semantic priors, frequency-domain MoE design, and expert routing yields a model robust to the intricacies of real-world illumination. The results set a high bar for future developments in all-in-one restoration, with the potential to simplify deployment and increase reliability for advanced computer vision systems operating under diverse lighting conditions.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 1 tweet with 0 likes about this paper.