Papers
Topics
Authors
Recent
Search
2000 character limit reached

Query-Gated Deformable Fusion (QGDF)

Updated 4 February 2026
  • The paper introduces QGDF, which integrates learned spatial deformation with query-conditioned gating to adaptively blend feature representations.
  • It employs deformable convolutional sampling and masked attention to dynamically fuse multi-view camera and LiDAR BEV features.
  • Empirical evaluations demonstrate improved tracking accuracy and robust autonomous driving performance with minimal additional computational overhead.

Query-Gated Deformable Fusion (QGDF) is a unified architectural mechanism for adaptively integrating feature representations—across spatial locations and modalities—by combining learned spatial deformation with query- or location-conditioned soft gating. It was originally introduced for deformable object tracking in convolutional networks (Liu et al., 2018) and later extended to query-based multimodal fusion for end-to-end sensorimotor perception and prediction (Halinkovic et al., 28 Jan 2026). QGDF systematically addresses the limitations of rigid, fixed-grid feature aggregation and heuristic modality fusion by permitting fully differentiable, content-adaptive blending of features. The mechanism achieves strong empirical improvements in both deformable target tracking and autonomous driving benchmarks.

1. Mathematical Foundations of QGDF

Given a standard CNN feature map X∈RH×W×CX \in \mathbb{R}^{H \times W \times C}, QGDF learns a dense 2D offset field ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2} via a shallow CNN fθ(X)f_\theta(X): ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2. Each feature at p0=(i,j)p_0 = (i,j) is resampled from XX at position p0+Δp(p0)p_0 + \Delta p(p_0) using bilinear interpolation: X′(p0)=Fsample(X,p0+Δp(p0)),X'(p_0) = F_\mathrm{sample}(X, p_0 + \Delta p(p_0)), with

Fsample(X,d)=∑x=1W∑y=1HG([x,y],d)⋅X(x,y),F_\mathrm{sample}(X, d) = \sum_{x=1}^W \sum_{y=1}^H G([x, y], d) \cdot X(x, y),

where GG denotes standard separable bilinear interpolation.

In transformer-based multimodal architectures, QGDF operates on a set of queries ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}0, fusing multi-view camera features ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}1 and LiDAR BEV features ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}2 at each decoder layer. The mechanism includes three key submodules:

  1. Masked Attention Aggregation: Feature-point-wise bilinear sampling on the camera feature pyramid, followed by masked softmax-weighted aggregation (per-view, per-query).
  2. Deformable BEV Sampling: Per-query local offsets ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}3 are predicted to adapt the sampling location for LiDAR BEV features.
  3. Query-Conditioned Gating: Learned per-query, per-branch softmax weights ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}4 gate the aggregated image and LiDAR representations before final projection.

2. Gating Mechanisms and Fusion Equation

a. Gating in CNN-Based Tracking

A soft gate ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}5 is predicted per spatial location: ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}6 where ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}7 is a two-layer MLP applied on ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}8. The fused representation at each location is: ΔP∈RH×W×2\Delta P \in \mathbb{R}^{H \times W \times 2}9 with fθ(X)f_\theta(X)0 denoting element-wise multiplication.

b. Query-Conditioned Gating for Multi-Modal Transformers

For queries in transformer decoder layers, gating is performed as: fθ(X)f_\theta(X)1

fθ(X)f_\theta(X)2

Gated modality-specific features are then: fθ(X)f_\theta(X)3

fθ(X)f_\theta(X)4

3. Architectural Integration and Training Protocols

  • Backbone: VGG-M conv1–3 (output fθ(X)f_\theta(X)5).
  • QGDF Block: Three-way split—Path A passes fθ(X)f_\theta(X)6, Path B applies deformable sampling, Path C predicts fθ(X)f_\theta(X)7.
  • Fusion: As above, followed by classifier head (three FC layers for foreground/background discrimination) and bounding-box regression.
  • Training:
    • Three phases: baseline, add deformable branch, add gating branch and end-to-end fusion.
    • Offline pretraining: 200k SGD iterations on OTB/VOT with stratified IoU sampling.
    • Online: Backbone frozen, gate+FC fine-tuned per video, online updates via hard negative mining.
  • QGDF Location: At each decoder layer before cross-attention.
  • Parameters: Embedding fθ(X)f_\theta(X)8, camera views fθ(X)f_\theta(X)9, FPN levels ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.0, BEV channels ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.1.
  • Differentiability: All components (sampling, masking, gating) are differentiable; integrated into joint classification, detection, and forecasting loss via gradient backpropagation.

4. Detailed Algorithmic Procedure

p0=(i,j)p_0 = (i,j)5

5. Empirical Results and Component Ablations

  • OTB-2013 AUC: Baseline ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.2, +deformable ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.3, +gate ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.4.
  • Deformation subset: ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.5 after deformable conv, maintained with gating.
  • Deform-SOT: GDT with QGDF outperforms part-based approaches on all evaluated challenges.
  • VOT-2016/2017: Maintains high accuracy, strong robustness, and top EAO across configurations.
  • nuScenes:
    • EPA: ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.6 (Li-ViP3D++ w/ QGDF) vs. ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.7 (prior baseline).
    • mAP: ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.8 vs. ΔP=fθ(X),Δp(i,j)=fθ(X)ij∈R2.\Delta P = f_\theta(X), \quad \quad \Delta p(i,j) = f_\theta(X)_{ij} \in \mathbb{R}^2.9.
    • FP ratio: p0=(i,j)p_0 = (i,j)0 vs. p0=(i,j)p_0 = (i,j)1.
  • Component Analysis:
    • Removing masked attention increases FP ratio and drops EPA by 8 points.
    • Disabling offsets in BEV sampling loses p0=(i,j)p_0 = (i,j)25 mAP points.
    • Removing gating yields intermediate values but no configuration matches full QGDF.

Interpretation: Each submodule—content-aware camera aggregation, adaptive BEV deformation, and per-query gating—contributes additively to reducing false positives and improving prediction performance.

6. Implementation and Computational Considerations

  • GDT (Liu et al., 2018): Efficient runtime via single bilinear sampler for deformations, small MLP for gate prediction, overall tracking speed p0=(i,j)p_0 = (i,j)3 FPS (GTX1080Ti).
  • Li-ViP3D++ (Halinkovic et al., 28 Jan 2026): End-to-end, all operations implemented with differentiable primitives (bilinear sampling, FFNs) in standard deep learning frameworks; runtime per frame p0=(i,j)p_0 = (i,j)4, less than prior non-QGDF variant.
  • Overhead: QGDF module introduces minimal computational burden compared to benefits in accuracy and robustness.

7. Significance and Distinctiveness

QGDF represents a principled departure from static or ad-hoc fusion mechanisms. It enables dynamic, instance- and context-adaptive feature blending, leveraging both spatial deformation (to handle local appearance/misalignment) and gating (to control modal contributions). The approach ensures full differentiability for end-to-end learning in both object tracking and multimodal sensorimotor prediction, leading to measurable gains in robustness, false positive reduction, and alignment with ground-truth semantics across challenging, deformable, and multi-sensor domains (Liu et al., 2018, Halinkovic et al., 28 Jan 2026).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (2)

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 Query-Gated Deformable Fusion (QGDF).