Papers
Topics
Authors
Recent
Search
2000 character limit reached

GD²Fusion: Guided Dual-Domain Image Fusion

Updated 10 July 2026
  • GD²Fusion is a degradation-aware infrared-visible fusion framework that integrates vision-language guidance with dual-domain (frequency and spatial) optimization.
  • It employs frequency-based modules for degradation suppression and spatial fusion techniques to enhance structural consistency and fine detail preservation.
  • The approach avoids error accumulation in decoupled pipelines, delivering superior performance across multiple metrics and downstream detection tasks.

Guided Dual-Domain Fusion (GD2^2Fusion) is a degradation-aware infrared-visible image fusion framework that synergistically integrates vision-LLMs (VLMs) for degradation perception with dual-domain (frequency/spatial) joint optimization. It is formulated for dual-source degraded scenarios in which visible images may suffer from low-light or overexposure and infrared images may suffer from low contrast or noise, and it is explicitly proposed as an end-to-end alternative to decoupled pre-enhancement-to-fusion pipelines that lead to cross-stage representation mismatch, residual artifact propagation, and error accumulation (Zhang et al., 5 Sep 2025).

1. Problem formulation and scope

The framework addresses infrared-visible image fusion (IVIF) with two registered inputs, an infrared image and a visible-light image, with the goal of producing a fused image that preserves salient infrared targets, visible details, and overall structural consistency. In the paper’s notation, the image inputs are

Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},

and the prompt inputs are

Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.

The task departs from the standard high-quality-input assumption by explicitly modeling compound degradation across both modalities rather than a single degraded source (Zhang et al., 5 Sep 2025).

The motivating critique is directed at pipelines that first pre-enhance each degraded source image with dedicated models and then feed the enhanced outputs into a fusion network. In the described setting, such cascades require manual selection of enhancement models, degradation-specific tuning, and repeated execution for multiple degradation types. The framework instead treats degradation perception, degradation suppression, and cross-modal fusion as a single optimization problem. This suggests a shift from restoration-then-fusion modularity to degradation-aware fusion-native design, but the paper grounds that shift in the concrete claim that the decoupled pipeline causes error accumulation rather than in a separate theoretical formalization (Zhang et al., 5 Sep 2025).

The degradation taxonomy stated for the main benchmark consists of four representative combinations: visible low-light plus infrared low-contrast, visible low-light plus infrared noise, visible overexposure plus infrared low-contrast, and visible overexposure plus infrared noise. The method is therefore organized around heterogeneous degradations across modalities rather than a shared corruption model. That distinction is central to the meaning of “guided” in GD2^2Fusion: the system is intended to distinguish fusion-relevant content from modality-specific degradation patterns before and during fusion, not merely afterward (Zhang et al., 5 Sep 2025).

2. Network structure and dual-domain decomposition

The architecture comprises a shallow feature extraction stage, two frequency-domain branches for infrared and visible modalities, one spatial-domain fusion branch, and a final image reconstruction head. Shallow features are produced as

Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),

with

Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.

Prompt embeddings are extracted with frozen CLIP: Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}), where

Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.

These embeddings guide both major branches of the model (Zhang et al., 5 Sep 2025).

The frequency-domain path is implemented by the Guided Frequency Modality-Specific Extraction (GFMSE) module. For each modality, shallow features are transformed by discrete wavelet transform (DWT) into one low-frequency sub-band and three high-frequency sub-bands: LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}. For infrared, the initialization is

Lir0=LLir,Hir0=Concat(LHir,HLir,HHir),L^0_{ir}=LL_{ir}, \quad H^0_{ir}=Concat(LH_{ir},HL_{ir},HH_{ir}),

followed by stacked GFMSE layers,

Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},0

with an analogous path for the visible branch. The low-frequency band is described as carrying luminance distribution and structural contours, whereas Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},1 carry texture and edge information (Zhang et al., 5 Sep 2025).

The spatial-domain path is implemented by the Guided Spatial Modality-Aggregated Fusion (GSMAF) module. Its initial fused feature is

Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},2

and the first stage computes

Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},3

At deeper stages,

Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},4

Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},5

Final reconstruction is

Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},6

where Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},7 is a three-layer Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},8 convolutional reconstruction head with ReLU (Zhang et al., 5 Sep 2025).

Component Domain Stated role
GFMSE Frequency Frequency-domain degradation perception and suppression; discriminative extraction of fusion-relevant sub-band features
GSMAF Spatial Cross-modal degradation filtering and adaptive multi-source feature aggregation
Re Reconstruction Three-layer Iir,IviRB×3×H×W,I_{ir}, I_{vi} \in \mathbb{R}^{B \times 3 \times H \times W},9 convolutional head with ReLU

The text also notes a typographical inconsistency in the GSMAF equations: the local branch is defined by parallel Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.0, Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.1, and Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.2 convolutions, while the Transformer path corresponds to the global branch. This suggests that the intended decomposition is local multi-scale convolution plus global Transformer aggregation, even though one printed equation repeats Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.3 where Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.4 is contextually indicated (Zhang et al., 5 Sep 2025).

3. Guidance mechanisms and degradation-aware conditioning

The guidance signal is provided by CLIP-derived prompt embeddings, which are used as channel-wise affine conditioning vectors rather than as labels or dense maps. In GFMSE, a modality-specific prompt embedding Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.5 is converted into low-frequency and high-frequency affine parameters: Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.6

Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.7

These condition the low- and high-frequency features through residual affine modulation: Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.8

Pir,PviRB×w.P_{ir}, P_{vi} \in \mathbb{R}^{B \times w}.9

The parameter shapes are

2^20

The module is intended to support infrared contrast correction, visible luminance compensation, structural feature enhancement, suppression of high-frequency degradations such as infrared noise, and preservation of fine detail (Zhang et al., 5 Sep 2025).

After guidance, both low- and high-frequency streams are processed with

2^21

2^22

where the implementation uses 2^23 stacked 2^24 convolution plus LeakyReLU blocks and 2^25 Transformer layers. The paper’s dual-domain rationale is explicit: low-frequency sub-bands are suitable for luminance, contrast, and coarse structure, while high-frequency sub-bands are suitable for edges, fine textures, and degradations such as noise (Zhang et al., 5 Sep 2025).

In GSMAF, degradation-aware conditioning is aggregated across modalities. The prompt embeddings are first fused: 2^26 then mapped to affine parameters

2^27

The spatial input

2^28

is first passed through channel modulation,

2^29

with Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),0 described as channel attention plus Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),1 convolution, and then conditioned as

Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),2

Local aggregation uses multi-scale convolutions with

Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),3

followed by

Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),4

Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),5

while the global branch is associated in the text and figure with

Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),6

Prompt aggregation therefore serves as cross-modal degradation filtering in the spatial branch, whereas prompt-conditioned affine modulation in GFMSE serves as modality-specific degradation perception and suppression in the frequency branch (Zhang et al., 5 Sep 2025).

The prompt construction strategy itself is under-described. The framework specifies textual guidance inputs Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),7 and Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),8, and the figures reportedly display the infrared and visible textual prompts, but the method section does not reproduce the exact prompt strings, does not state whether prompt selection is automatic, and does not specify the CLIP variant. This suggests that the guidance mechanism is architecturally central but textually underspecified at the level of prompt engineering (Zhang et al., 5 Sep 2025).

4. Objective function, supervision, and implementation profile

Training combines three losses: intensity, texture, and color. The intensity loss is

Fir=SFE(Iir),Fvi=SFE(Ivi),F_{ir} = SFE(I_{ir}), \quad F_{vi} = SFE(I_{vi}),9

where the fused image is matched to the per-pixel maximum of the degradation-free infrared and visible references. The texture loss is

Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.0

with Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.1 the Sobel gradient operator. The color loss constrains chrominance in YCbCr space: Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.2 The total objective is

Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.3

with

Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.4

The losses therefore prioritize salient intensity inheritance, texture preservation, and visible-compatible color fidelity (Zhang et al., 5 Sep 2025).

The use of Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.5 and Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.6 implies supervised training with degradation-free source references for the degradation-aware setting. The paper does not mention SSIM loss, perceptual loss, adversarial loss, frequency-domain reconstruction loss, or explicit degradation regularization. The optimizer is not explicitly stated in the provided text, which is a nontrivial omission because the framework otherwise reports a detailed training schedule (Zhang et al., 5 Sep 2025).

Implementation settings are specified as follows. The degradation-aware model is trained for 200 epochs, and the high-quality-input-assumption model for 100 epochs, using random Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.7 patches, batch size 16, and learning rate Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.8. Architectural hyperparameters are Fir,FviRB×C×H×W.F_{ir}, F_{vi} \in \mathbb{R}^{B \times C \times H \times W}.9 stacked layers, Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),0 convolution blocks, Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),1 Transformer blocks, and GSMAF local kernels

Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),2

Training is performed on a single NVIDIA GeForce RTX 4090D GPU, and CLIP remains frozen during training and inference (Zhang et al., 5 Sep 2025).

5. Evaluation, ablations, and downstream effects

The degradation-aware setting is evaluated on the EMS dataset, which provides 2,278 registered source image pairs for training, with four evaluation subsets: 69 low-light plus low-contrast pairs, 69 low-light plus noise pairs, 35 overexposure plus low-contrast pairs, and 35 overexposure plus noise pairs. High-quality-input evaluation uses LLVIP, with 11,025 randomly sampled training images and 50 testing images, and MSRS, with 45 images for fusion evaluation and 80 annotated image pairs for object detection. For degraded comparison, methods that assume clean inputs are preceded by pre-enhancement, including IAT for visible brightness adjustment, MIRNet for infrared contrast enhancement, and SwinIR for infrared denoising (Zhang et al., 5 Sep 2025).

On high-quality-input evaluation, the framework remains strong despite its degradation-oriented formulation. On MSRS it achieves

Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),3

with the best scores on Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),4, Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),5, Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),6, Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),7, and Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),8, and second on Firp,Fvip=CLIP(Pir,Pvi),F^{p}_{ir}, F^{p}_{vi} = CLIP(P_{ir},P_{vi}),9. On LLVIP it is best on all six reported metrics: Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.0 The qualitative summary attributes these results to better preservation of salient infrared targets, infrared structural contours when visible structure is weak, visible details and edges, balanced modality integration, and color fidelity (Zhang et al., 5 Sep 2025).

The main target regime is degraded fusion. On low-light plus low-contrast, the framework reports

Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.1

with best values on Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.2, Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.3, and Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.4, and second on Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.5. On overexposure plus low-contrast it reports

Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.6

which are best across all four metrics. On low-light plus noise the reported values are

Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.7

again best on Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.8, Firp,FvipRB×d.F^{p}_{ir}, F^{p}_{vi} \in \mathbb{R}^{B \times d}.9, and LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.0, and second on LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.1. On overexposure plus noise it achieves

LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.2

best on all four reported metrics. The paper characterizes these outcomes as superior fusion performance compared with existing algorithms and strategies in dual-source degraded scenarios (Zhang et al., 5 Sep 2025).

Ablation results support the necessity of both domains. Removing GFMSE yields

LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.3

while removing GSMAF yields

LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.4

The spatial-domain drop is larger, but both modules are required for the reported optimum. The paper also states that without texture loss, sharpness and detail drop significantly, and without color loss, color fidelity worsens and metrics decrease. The selected hyperparameters LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.5, LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.6, LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.7, and LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.8 are presented as a practical balance between performance and complexity (Zhang et al., 5 Sep 2025).

The fused images also improve downstream detection on MSRS with YOLOv5, producing

LLRB×C×H2×W2,LH,HL,HHRB×C×H2×W2.LL \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}, \qquad LH, HL, HH \in \mathbb{R}^{B \times C \times \frac{H}{2} \times \frac{W}{2}}.9

These values exceed those obtained from raw infrared and visible images and from all compared fusion methods. This suggests that GDLir0=LLir,Hir0=Concat(LHir,HLir,HHir),L^0_{ir}=LL_{ir}, \quad H^0_{ir}=Concat(LH_{ir},HL_{ir},HH_{ir}),0Fusion is not only a perceptual fusion model but also a representation-improving front end for later semantic tasks, although the paper does not provide runtime, FLOPs, or parameter-count comparisons in the provided text (Zhang et al., 5 Sep 2025).

6. Position within the broader dual-domain fusion literature

GDLir0=LLir,Hir0=Concat(LHir,HLir,HHir),L^0_{ir}=LL_{ir}, \quad H^0_{ir}=Concat(LH_{ir},HL_{ir},HH_{ir}),1Fusion belongs to a broader methodological lineage in which fusion is improved by explicitly separating representational domains and then coupling them with guidance. A closely related formulation is SFIGF, “Simultaneous Feature and Image Guided Fusion,” which performs guided fusion simultaneously in the feature domain and the image domain for guided image restoration. SFIGF uses a GF-inspired cross-attention module for feature-level fusion and a GF-like image-domain branch of the form

Lir0=LLir,Hir0=Concat(LHir,HLir,HHir),L^0_{ir}=LL_{ir}, \quad H^0_{ir}=Concat(LH_{ir},HL_{ir},HH_{ir}),2

thereby pairing contextual recovery with direct detail-preserving image-level guidance (Liu et al., 2023).

A second cluster uses spatial-frequency decomposition. MEF-SFI treats multi-exposure image fusion as a spatial-frequency integration problem, arguing that local spatial operators recover textures and edges but struggle with image-wide illumination consistency, while the frequency domain offers a natural global view for balancing exposure and illumination distributions. The network therefore couples a spatial path and a frequency path through repeated Spatial-Frequency Fusion Modules, with a dual-domain loss to preserve complementary information in both domains (Yang et al., 2023). FUSION in underwater image enhancement makes an analogous claim, describing a dual-domain framework in which the spatial branch restores local textures and the FFT-based frequency branch captures global structural information, with a Frequency Guided Fusion module injecting frequency-derived features into spatial reconstruction (Walia et al., 1 Apr 2025).

The same design principle extends beyond image fusion. DUN-DD for portable MRI reconstruction uses parallel Fourier-domain and image-domain branches inside a five-stage physics-guided unrolled network, then combines them through an attention-based residual U-Net. There the dual domains are k-space and image space, and the “guidance” comes jointly from the MRI forward model and learned attention-based fusion (Ilıcak et al., 23 Feb 2026). In multimodal autonomous-driving perception, DDHFusion combines voxel and BEV domains, with sparse image-voxel construction, cross-modal Mamba alignment in both domains, voxel-to-BEV compensation, and BEV-guided voxel decoding; this suggests that dual-domain fusion can also be organized around geometric representations rather than transform domains (Hu et al., 12 Mar 2025).

These comparisons indicate that GDLir0=LLir,Hir0=Concat(LHir,HLir,HHir),L^0_{ir}=LL_{ir}, \quad H^0_{ir}=Concat(LH_{ir},HL_{ir},HH_{ir}),3Fusion is specific in name and task—degradation-aware infrared-visible image fusion with CLIP-conditioned frequency/spatial processing—but general in methodological orientation. A plausible implication is that the term now denotes not only the particular IVIF framework of (Zhang et al., 5 Sep 2025) but also a recognizable design pattern: one domain is used to model information that is globally structured, physically grounded, or degradation-selective, while a second domain captures local detail, structural aggregation, or task-level consistency. In that broader sense, GDLir0=LLir,Hir0=Concat(LHir,HLir,HHir),L^0_{ir}=LL_{ir}, \quad H^0_{ir}=Concat(LH_{ir},HL_{ir},HH_{ir}),4Fusion is part of a wider shift from single-space fusion toward explicitly guided cross-domain optimization.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

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

Follow Topic

Get notified by email when new papers are published related to Guided Dual-Domain Fusion (GD^2Fusion).