Adaptive Approximate Wavelet Transform
- AdaWAT is a learnable, adaptive wavelet-inspired frequency decomposition module that separates low- and high-frequency sub-bands for fine-grained image fusion.
- It employs grouped convolutions and dilated filters to enhance modality-specific features across tasks like infrared-visible and medical image fusion.
- Empirical results demonstrate that AdaWAT improves fusion quality metrics by increasing structural similarity, texture preservation, and mutual information.
Adaptive Approximate Wavelet Transform (AdaWAT) is a learnable, adaptive, wavelet-inspired frequency decomposition module introduced within the AdaSFFuse framework for task-generalized multimodal image fusion. In that setting, it is the main mechanism for frequency decoupling: early feature embeddings from each modality are separated into low-frequency and multiple high-frequency sub-bands, refined by frequency-specific convolutions, passed to Spatial-Frequency Mamba Blocks for fusion, and then recoupled by the Adaptive Inverse Wavelet Approximation Transform (AdaIWAT) for deep fusion and final image reconstruction (Wang et al., 21 Aug 2025). It is adaptive because its effective filters are learned from data across Infrared-Visible Image Fusion, Multi-Focus Image Fusion, Multi-Exposure Image Fusion, and Medical Image Fusion; it is approximate because both analysis and synthesis are implemented as learnable convolutional approximations rather than as a strict analytic discrete wavelet transform (Wang et al., 21 Aug 2025).
1. Architectural role and problem setting
Within AdaSFFuse, AdaWAT is introduced to address three limitations that recur in multimodal image fusion: hand-crafted, non-learnable frequency decompositions such as classical DWT, Laplacian pyramids, and fixed Fourier filters; task-agnostic transforms that do not adapt to IVF, MFF, MEF, or MIF; and pure spatial-domain feature extractors, including CNNs, Transformers, and Mamba, that often lose high-frequency details and handle modality differences poorly (Wang et al., 21 Aug 2025). Its central function is therefore not merely transform-domain preprocessing, but scene- and task-conditioned frequency decoupling inside an end-to-end fusion network.
The forward role of AdaWAT is explicitly frequency-segmented. It takes early modality features, such as visible and infrared embeddings, and separates them into one low-frequency component and three high-frequency sub-bands. This produces a wavelet-like multi-band representation suitable for fine-grained extraction of modality-specific information and for frequency-aligned fusion, so that low-frequency structure and high-frequency detail can be handled differently (Wang et al., 21 Aug 2025). The shallow fused outputs are then processed by Spatial-Frequency Mamba Blocks, while AdaIWAT serves as the inverse recoupling stage for deep fusion and final reconstruction.
This placement makes AdaWAT the backbone of frequency-domain processing in AdaSFFuse. The module is therefore not an isolated transform block but part of an analysis–fusion–synthesis pipeline in which low- and high-frequency content are explicitly decoupled, fused, and reconstructed in a task-generalized setting. A common misconception is to treat it as a drop-in replacement for a fixed DWT layer. In the AdaSFFuse design, however, AdaWAT is coupled to learnable shallow embedding, frequency-specific enhancement, Mamba-based cross-domain fusion, and an adaptive inverse transform (Wang et al., 21 Aug 2025).
2. Mathematical formulation
AdaWAT begins from the classical wavelet decomposition recalled in the paper. For a discrete one-dimensional signal , the wavelet and scale functions are
and the decomposition at scale is
with detail and approximation coefficients
The corresponding adaptive one-dimensional analysis vectors are introduced as
where is the low-frequency filter and is the high-frequency filter. The recursive filter-bank form is
For a two-dimensional feature map, for example
AdaWAT constructs separable two-dimensional filters by outer products,
0
These correspond respectively to low–low, low–high, high–low, and high–high filtering, and are implemented through grouped convolutions (Wang et al., 21 Aug 2025). Convolution plus downsampling produces sub-bands
1
The paper assigns two meanings to the word approximate. First, AdaWAT is a convolutional approximation of wavelet filter banks: instead of fixed analytical filters such as Haar or Daubechies, the vectors 2 and 3 are implemented and adapted within the network through grouped convolutions. Second, after wavelet-like filtering, AdaWAT applies different dilated convolutions to low- and high-frequency sub-bands to perform learnable, task-adaptive low-pass and high-pass enhancement (Wang et al., 21 Aug 2025). The low-frequency 4 band uses a 5 dilated convolution with 6, while the high-frequency 7, 8, and 9 bands use 0 dilated convolution with 1.
The forward decoupling stage yields frequency-segmented fusion variables
2
3
After shallow fusion by Spatial-Frequency Mamba, AdaIWAT performs recoupling. The inverse stage uses similar wavelet kernels and transpose convolution with adaptive weights, combines the low- and high-frequency fused features into
4
and reconstructs the fused image
5
with minimal information loss while preserving task-relevant features (Wang et al., 21 Aug 2025).
3. Adaptive mechanisms and optimization
AdaWAT is adaptive in several distinct senses. The first is filter adaptivity. The analysis vectors 6 and 7, together with the corresponding two-dimensional kernels, are learned from data rather than fixed by analytic construction. During joint training across IVF, MFF, MEF, and MIF, these filters are tuned to modality-specific and task-specific frequency patterns, including thermal contours in IVF, exposure-related high-frequency detail in MEF, in-focus textures in MFF, and anatomical or functional structures in MIF (Wang et al., 21 Aug 2025).
The second is supervisory adaptivity. AdaSFFuse uses a total loss
8
with
9
The constituent losses are
0
1
2
These objectives drive AdaWAT toward frequency decompositions that facilitate high structural similarity, maximal retention of gradient and texture information, and correct intensity combination (Wang et al., 21 Aug 2025).
The third is interaction with adaptive spatial-frequency fusion. After AdaWAT, the frequency-segmented features are processed by AdaD-SSD within the Spatial-Frequency Mamba Block. The spatial-aware branch is
3
and the frequency-filtering branch is
4
Backpropagation through these branches further shapes AdaWAT’s effective behavior, so the learned decomposition is conditioned not only by the wavelet-like filters themselves but also by the subsequent spatial-frequency selection and fusion process (Wang et al., 21 Aug 2025).
From an implementation standpoint, the module uses grouped convolutions, single-level four-subband decomposition, downsampling to 5, and distinct dilation rates for low and high bands. As part of AdaSFFuse, the overall model has 6M parameters, 7 G FLOPs for 8 input, and 9 ms latency. The paper reports that this is lower than several comparison systems, including HitFusion, EMMA, SwinFusion, and MambaDFuse, and attributes the efficiency in part to grouped convolutions and the limited decomposition depth (Wang et al., 21 Aug 2025).
4. Empirical behavior in multimodal image fusion
The empirical case for AdaWAT in AdaSFFuse is made through both ablation and task-level evaluation. In the ablation study labeled A.I–A.II, a baseline without AdaWAT obtains 0, 1, 2, and 3. Adding AdaWAT raises these values to 4, 5, 6, and 7 (Wang et al., 21 Aug 2025). Within the terms of that study, the addition of AdaWAT is therefore associated with higher structural similarity, information content, spatial frequency, and mutual information.
A second ablation compares four frequency-decoupling choices for the IVF task: FFT-based decoupling, Laplacian pyramid, fixed Wavelet Transform, and AdaWAT. The reported metrics are 8, 9, 0, 1 for FFT; 2 for LapF; 3, 4, 5, 6 for fixed WAT; and 7, 8, 9, 0 for AdaWAT, which is best across all listed metrics (Wang et al., 21 Aug 2025). This directly supports the claim that static frequency transforms are less effective than the adaptive, convolution-based approximation used by AdaWAT.
At the full-system level, AdaSFFuse is reported to achieve state-of-the-art results across four tasks. For IVF and MEF, the paper states that AdaSFFuse is best in nearly all metrics, including IVF 1 versus CDDFuse 2, and MEF 3 versus CDDFuse 4. For MFF and MIF, it reports MFF 5 and 6, and MIF 7, 8, and 9, all listed as best (Wang et al., 21 Aug 2025). The paper explicitly links these gains to better high-frequency preservation and low-frequency consistency enabled by AdaWAT.
The associated visualization claim is similarly frequency-specific: 0 and 1 capture low-frequency structures, 2 and 3 highlight high-frequency details, the fused low- and high-frequency maps 4 and 5 combine more complete information after shallow fusion, and the final fused image preserves clear textures and shapes from both modalities (Wang et al., 21 Aug 2025). This makes AdaWAT’s empirical contribution primarily one of structured decoupling prior to fusion, rather than a generic increase in network capacity.
5. Relation to classical transforms and the broader adaptive-wavelet literature
AdaWAT in AdaSFFuse is closest to classical DWT in its filter-bank-plus-downsampling structure and in its explicit 6, 7, 8, and 9 sub-band decomposition. The differences identified in the paper are learnability, task adaptation, dilated enhancement of low and high bands, and an adaptive inverse based on transpose convolutions rather than exact orthogonal inversion (Wang et al., 21 Aug 2025). The paper also states that it does not provide formal proofs of perfect reconstruction, stability bounds, or orthogonality; conceptually, AdaWAT plus AdaIWAT form a learned analysis–synthesis pair akin to a biorthogonal wavelet system, but optimized for fusion quality rather than strict mathematical properties (Wang et al., 21 Aug 2025).
The adjective approximate has a distinct meaning in another wavelet literature. For the standard Morlet wavelet, the classical admissibility integral diverges, yet exact inversion can still be obtained through formulas involving 0, integration over scales, and, in the practical real-valued case, an expression of the form
1
so that non-admissible kernels can still support exact inverse transforms (Postnikov et al., 2015). This makes clear that approximate in AdaWAT does not denote the same concept as approximate wavelet in non-admissible CWT theory. A plausible implication is that the term is polysemous across subfields.
The supplied literature also shows that AdaWAT belongs to a broader methodological family of adaptive or approximate wavelet constructions. In texture classification, adaptive wavelet modules are built with Haar DWT-Split and lifting-scheme predictor/updater CNNs, and are explicitly described as task-oriented rather than strictly reconstructive (Yu et al., 2024). In time-series analysis, AdaWaveNet uses a lifting scheme-based adaptive transform and inverse transform with learnable convolutional filters for forecasting, imputation, and super-resolution (Yu et al., 2024). In graph learning, ASWT-SGNN approximates graph wavelet operators by spectrum-adapted polynomials, avoiding eigen-decomposition while retaining multiscale spatial-spectral localization (Liu et al., 2023). In two-dimensional empirical wavelet analysis, arbitrary partitions of the Fourier domain are detected from scale-space maxima and a watershed transform, and corresponding frame-based filters are then constructed (Hurat et al., 2024). Other supplied examples include region-based path-adaptive sparse image transforms (Budinich, 2017) and adaptive online refinement of wavelet bases for value-function approximation in reinforcement learning (Beukman et al., 2022). This suggests a broader family resemblance, even though AdaWAT as a proper name is explicitly attached to AdaSFFuse.
6. Constraints, misconceptions, and future directions
The principal misconception around AdaWAT is to read it as a standard wavelet transform with trainable coefficients. The paper instead presents it as a learnable grouped-convolutional approximation to wavelet analysis, followed by task-conditioned enhancement and fused within a larger spatial-frequency architecture (Wang et al., 21 Aug 2025). Its inverse is likewise adaptive and approximate, not a strict analytic inverse in the orthogonal-DWT sense.
A second misconception is that improved visual or low-level fusion metrics necessarily imply improved downstream semantics. The supplied discussion notes that improved visual and frequency representations do not always guarantee better downstream performance, including some semantic segmentation cases where fused images attenuate certain classes (Wang et al., 21 Aug 2025). This suggests that AdaWAT’s current optimization target is low-level fusion quality rather than explicit downstream task alignment.
The explicit limitations are theoretical as well as application-level. Invertibility and stability are handled empirically through AdaIWAT and loss minimization, but formal guarantees are not provided. Future work is described in two directions: end-to-end, task-aware multimodal frameworks in which the fusion process, including AdaWAT, is jointly optimized with downstream losses such as detection or segmentation losses; and more principled designs of learned wavelet-like bases with constraints on reconstruction error and frequency coverage (Wang et al., 21 Aug 2025).
In this sense, AdaWAT occupies an intermediate position between classical wavelet theory and task-specific deep architectures. It preserves the organizing logic of multi-band wavelet analysis—low/high separation, sub-band-specific processing, and analysis–synthesis recoupling—while replacing fixed bases, task-agnostic decomposition, and exact analytic inversion with learned operators optimized for multimodal fusion performance (Wang et al., 21 Aug 2025).