Fully Rotation-Equivariant Spectral-Spatial Learning for Multispectral Object Detection


Abstract

Existing multispectral detectors are limited by discrete spectral processing, a scale-dependent shift in the relative reliability of spectral and spatial cues across pyramid levels, and the lack of explicit rotation-equivariant geometric priors for arbitrarily oriented objects. To tackle these limitations, we propose FressDet, a fully rotation-equivariant spectral–spatial learning framework for multispectral object detection, capable of capturing the continuous, ordered nature of spectral structure and enabling reliable spectral–spatial fusion across pyramid levels under arbitrary in-plane rotations. FressDet integrates three complementary components. Spectral Implicit Warp (SpeIW) enables query-based spectral resampling via a coordinate-conditioned implicit field, yielding a monotone, order-preserving warp. Rotation-Equivariant Consistency Weighting (ReCoW) adaptively fuses spectral and spatial branches based on branch reliability, reinforcing informative cues while suppressing noise across pyramid levels. The oriented-aware head exploits group-indexed features to stably predict oriented objects without parameter replication. Taken together, FressDet learns more discriminative and robust spectral–spatial representations even under rotational perturbations. By achieving state-of-the-art performance with 93% fewer parameters on three public benchmarks, FressDet demonstrates its effectiveness and generalizability.

Code is available at https://github.com/Riiluo/FressDet.

Figure 1: (a) Transformation consistency in vanilla (V-CNN) and equivariant (Eq-CNN) networks. T_e and T_r denote the identity and a rotation, f is a feature extractor, and Z_0, Z_1 are features of I_0\!=\!T_e(I_0) and I_1\!=\!T_r(I_0). Ideally T_r^{-1}(Z_1)\!\approx\!Z_0; the error map confirms Eq-CNN yields lower transformation error. However, existing methods have not yet unified continuous spectral modeling with rotation-equivariant geometric priors. (b) Detection robustness under rotational perturbations at 1° intervals on MODA. FressDet exhibits the best robustness. (c) mAP50 vs.parameter count on MODA, where circle size is proportional to FLOPs. FressDet achieves the best performance with the fewest parameters and lowest FLOPs.

1 Introduction↩︎

Multispectral object detection (MOD) improves localization and recognition by jointly exploiting spatial structure and spectral cues. Compared with RGB imagery, multispectral images (MSIs) measure spectral responses at sampled wavelengths, yielding per-pixel spectral signatures with strong inter-band correlation. Prior methods either decouple spectral and spatial information through dimensionality reduction (e.g., PCA [1] and band selection [2], [3]) or rely on attention-based modeling to capture spectral–spatial interactions [4]. Although these methods achieve promising performance, two challenges remain in MOD: (i) discrete spectral processing that neglects the continuous and ordered structure of the spectral dimension; (ii) a scale-dependent shift in the relative reliability between spectral and spatial cues across pyramid levels, which can degrade fusion performance in complex scenes.

Rotation equivariance is a desirable geometric inductive bias that exploits the intrinsic rotational symmetry and arbitrary orientations of objects, improving representation stability and generalization across diverse visual tasks [5], [6], including ground-level [7], [8] and aerial [9], [10] object detection as well as semantic segmentation [11], yet many multispectral detectors still rely on heavy rotation-based data augmentation in practice. However, extending this inductive bias to MOD requires rethinking the modeling paradigm. In particular, the continuous, ordered spectral structure of MSIs is mismatched with most equivariant designs built on discrete sampling (Fig. 1 (a)). Moreover, reliability-aware pyramid fusion under equivariant architectures is non-trivial in complex scenes. Furthermore, group-indexed interactions increase the computational burden. Therefore, a key challenge in MOD is to explicitly model spectral continuity and enable reliable spectral–spatial fusion across scales, while enforcing rotation-equivariant geometric priors with manageable overhead.

To address the challenges of spectral discreteness, scale-dependent fusion reliability, and the lack of rotation-equivariant geometric priors, we propose FressDet, the first fully rotation-equivariant spectral–spatial learning framework for multispectral object detection. FressDet captures continuous spectral structure, enables reliability-aware pyramid fusion across levels, and stably predicts oriented objects without parameter replication.

To overcome the discreteness of spectral processing, we draw on the universal approximation theorem [12], [13]: implicit neural representations (INRs) parameterize signals as coordinate-conditioned neural functions, enabling approximation of continuous functions with arbitrarily small error. Accordingly, we introduce Spectral Implicit Warp (SpeIW), an efficient spectral operator that models multispectral representations as a coordinate-conditioned function queried along the spectral dimension with Fourier-encoded spectral coordinates [14], [15]. This encoding mitigates the spectral bias of coordinate-based networks, enabling the representation of higher-frequency spectral variations. Specifically, we parameterize spectral warping over rotation-equivariant features via a factorization into coordinate-dependent bases and feature-conditioned coefficients. The bases encode regularities along the spectral dimension, while the coefficients provide pixel-wise modulation of the warping offsets. By predicting strictly positive spectral steps and integrating them cumulatively, we obtain an order-preserving mapping by construction.

Addressing scale-dependent reliability shifts across pyramid levels, we propose Rotation-Equivariant Consistency Weighting (ReCoW), a lightweight refinement module with a dual prototype-driven routing mechanism that adaptively selects the more reliable branch. On the spectral branch, ReCoW performs aggregation with soft assignment to capture discriminative spectral patterns. On the spatial branch, it improves geometric coherence, reducing background clutter while preserving fine-grained texture details. A learned branch-selection gate finally produces a convex combination of the two branches. Overall, ReCoW improves spectral–spatial fusion across pyramid levels in complex scenes.

For arbitrarily oriented objects, we propose an oriented-aware head that exploits feature maps with explicit orientation indices, enabling stable prediction across orientations without parameter replication. This design enhances feature utilization and substantially reduces the parameter count.

Taken together, these components enable FressDet to learn more discriminative and robust spectral–spatial representations. Extensive experiments on three public benchmarks demonstrate that FressDet achieves state-of-the-art accuracy with 93% fewer parameters than the previous best method (Fig. 1 (c)) and the best robustness even under input rotational perturbations (Fig. 1 (b)). Our contributions are summarized as follows:

  • Present FressDet, the first fully rotation-equivariant spectral–spatial learning framework unifying continuous spectral modeling, reliability-aware pyramid fusion, and stable orientation-aware prediction.

  • Introduce Spectral Implicit Warp for continuous, order-preserving spectral resampling via a coordinate-conditioned implicit field.

  • Propose Rotation-Equivariant Consistency Weighting, which performs adaptive, reliability-aware spectral–spatial fusion across pyramid levels.

  • Design an oriented-aware head for stably predicting arbitrarily oriented objects without parameter replication.

2 Related Work↩︎

Multispectral imagery provides spectral cues beyond RGB data, facilitating more discriminative object representations. Existing methods either separate spectral and spatial streams with cross-branch fusion [16], [17] or integrate them in a unified design [4]. However, most treat spectral features independently, leaving the continuous and ordered nature of spectral structure insufficiently modeled, while scale-dependent shifts in spectral–spatial reliability across pyramid levels remain unaddressed. In contrast, our method explicitly models spectral continuity and enables reliability-aware spectral–spatial fusion across pyramid levels.

Since Cohen  [5] introduced G-CNNs, rotation-equivariant networks have shown strong performance across diverse vision tasks. In object detection, ReDet [10] pioneered rotation-equivariant aerial detectors, and subsequent works [8], [9] advanced equivariant architectures. However, these methods are only approximately equivariant. Lee  [18] present FRED, the first fully rotation-equivariant detector with deformable convolutions, though its group-indexed interactions incur considerable computational overhead. We develop the first fully rotation-equivariant spectral–spatial learning framework for multispectral object detection, integrating spatial geometry with discriminative spectral cues while maintaining manageable overhead.

Implicit neural representations (INRs) parameterize signals as coordinate-to-value neural fields, achieving success in 3D scene modeling [19] and continuous image representation [20], [21]. In spectral imaging, INRs have been applied to spectral rendering [22] and multispectral–hyperspectral fusion [23]. However, prior INR methods primarily address reconstruction or fusion tasks, whereas multispectral detection requires modeling spectral continuity under a strict order-preserving constraint. Our method addresses this by introducing an order-preserving spectral warping mechanism that maintains rotation equivariance.

3 Method↩︎

In this section, we introduce the preliminaries on rotation equivariance and describe how the components of FressDet are assembled into a fully rotation-equivariant pipeline (Fig. 2).

Figure 2: The overall framework of FressDet. (a) SpeIW resamples spectral features via a continuous, order-preserving warp. (b) ReCoW adaptively fuses spectral and spatial branches based on branch reliability. (c) The oriented-aware head stably predicts oriented objects without parameter replication.

3.1 Preliminaries↩︎

We consider equivariance to discrete in-plane rotations within the Euclidean group \(\mathrm{E}(2)=\mathbb{R}^{2}\rtimes \mathrm{O}(2)\), the semi-direct product of translations and orthogonal transformations. By restricting to the cyclic subgroup \(\mathrm{C}_N=\{r_k \mid k=0,\dots,N{-}1\}\) of \(N\) equally spaced rotations, we sample features at \(N\) discrete orientations. We denote this group by \(G\) (\(|G|=N\)) in the sequel. A function \(\Phi\colon X\!\to\!Y\) is equivariant with respect to \(G\) if: \[\Phi\!\bigl(\rho_{g}^{X}(x)\bigr) = \rho_{g}^{Y}\!\bigl(\Phi(x)\bigr), \quad \forall\, g\in G,\; x\in X, \label{eq:equiv}\tag{1}\] where \(\rho_{g}^{X}\) and \(\rho_{g}^{Y}\) denote group actions on \(X\) and \(Y\), respectively. Intuitively, equivariance ensures that transforming the input produces a correspondingly transformed output, enabling the network to generalize across orientations without relying on explicit data augmentation. When \(\rho_{g}^{Y}\) is the identity for all \(g\), equivariance reduces to invariance.

Under an input rotation \(r_k\), a group feature map \(F\colon\mathbb{R}^{2}\!\times\!G\to\mathbb{R}^{C}\) transforms as follows: \[\bigl[\rho_{r_k}(F)\bigr](x,\,g) = F\bigl(r_k^{-1}x,\; r_k^{-1}g\bigr), \label{eq:regular}\tag{2}\] concretely, a cyclic permutation by \(k\) along the group axis composed with a rotation by \(r_k^{-1}\). Following this representation, the planar input \(\mathbf{x}_{0}\!\in\!\mathbb{R}^{c\times h\times w}\) is lifted to a group feature map as follows: \[\mathbf{y}(g) = \sum_{i=1}^{c} \mathbf{x}_{0,i} \ast \mathcal{R}_{g}(\mathbf{W}_{i}), \quad g \in \{0,1,\dots,N{-}1\}, \label{eq:lift}\tag{3}\] where \(\mathbf{W}\!\in\!\mathbb{R}^{c' \times c \times s \times s}\) is a learnable weight matrix with kernel size \(s\) and \(\mathcal{R}_{g}\) denotes spatial rotation by \(2\pi g/N\). For subsequent layers, group-to-group convolutions take the form: \[\mathbf{y}'(g) = \sum_{i=1}^{c} \sum_{g'=0}^{N-1} \mathbf{y}_{i}(g') \ast \mathcal{R}_{g}\!\bigl(\mathbf{W}_{i,\,g^{-1}g'}\bigr), \quad g \in \{0,1,\dots,N{-}1\}, \label{eq:gconv}\tag{4}\] where the relative index \(g^{-1}g'\) induces a cyclic shift along the group axis. Group convolutions preserve this transformation law, so equivariance propagates through successive layers. The \(\mathcal{O}(c^{2}Ns^{2})\) cost of Eq. 4 is prohibitive for real-time detection. We decompose it into two stages that jointly preserve Eq. 2 .

Stage: Depthwise rotated spatial filtering. Each channel \(i\) is convolved with a single spatial kernel \(\mathbf{W}^{\mathrm{dw}}_{i}\!\in\!\mathbb{R}^{s\times s}\), rotated per group element: \[\tilde{F}_{i}(x,g) = F_{i}(x,g) \ast \mathcal{R}_{g}\!\bigl(\mathbf{W}^{\mathrm{dw}}_{i}\bigr), \label{eq:dw}\tag{5}\] preserving the cyclic-shift law of Eq. 2 channel-wise at \(\mathcal{O}(cNs^{2})\) cost.

Stage: Pointwise group mixing. A \(1\!\times\!1\) convolution mixes channels and group indices via a weight \(\mathbf{W}^{\mathrm{pw}}\!\in\!\mathbb{R}^{c'\times c\times N}\) whose group axis is cyclically shifted: \[F'_{j}(x,g) = \sum_{i=1}^{c}\sum_{g'=0}^{N-1} W^{\mathrm{pw}}_{j,i,\,g^{-1}g'}\;\tilde{F}_{i}(x,g'), \label{eq:pw}\tag{6}\] at \(\mathcal{O}(c^{2}N)\) per spatial location. The cyclic indexing \(g^{-1}g'\) guarantees that the composition of Eqs. 56 satisfies Eq. 2 end-to-end with cost \(\mathcal{O}(cNs^{2}+c^{2}N)\).

3.2 Spectral Implicit Warp↩︎

While the lifting layer endows features with rotational structure, the spectral dimension remains discretized into independent channels. SpeIW addresses this by predicting a monotone warp index \(\phi\) for each spectral channel and resampling via differentiable interpolation (Fig. 2 (a)), enabling adaptive spectral modeling while preserving equivariance.

Let \(F\in\mathbb{R}^{C\times|G|\times H\times W}\) denote a group feature map with \(C\) spectral channels and \(|G|\) orientation slots. Each spectral channel is assigned a normalized spectral coordinate \(\lambda_c\in[-1,1]\), lifted via Fourier positional encoding \(\psi(\lambda)=\bigl[\sin(2^{i}\pi\lambda),\,\cos(2^{i}\pi\lambda)\bigr]_{i=0}^{L-1}\!\in\mathbb{R}^{2L}\) to mitigate the frequency bias of coordinate-based networks [14], [15]. We decompose the raw warp field into a spatial latent code \(\mathbf{z}(x,g)\!\in\!\mathbb{R}^{R}\), derived from \(F\) via a learned equivariant projection, and a spectral basis decoded by a coordinate-conditioned implicit function \(f_{\theta}\colon\mathbb{R}^{2L}\!\to\!\mathbb{R}^{R}\): \[\delta_{c}(x,g) = \bigl\langle\, \mathbf{z}(x,g),\;\; f_{\theta}\!\bigl(\psi(\lambda_{c})\bigr) \,\bigr\rangle, \quad c=1,\dots,C. \label{eq:lowrank}\tag{7}\] Because \(f_{\theta}\) is shared across all \(C\) spectral channels and takes continuous spectral coordinates as input, it parameterizes a spectral basis that can be queried at arbitrary coordinates, with parameter cost that does not scale with \(C\).

Directly using \(\delta_c(x,g)\) as resampling indices may cause index crossing (i.e., \(\phi_c(x,g)\ge \phi_{c+1}(x,g)\)), resulting in non-monotonic spectral mappings and invalid resampling. We therefore enforce monotonically ordered indices \(\{\phi_1(x,g)<\phi_2(x,g)<\cdots<\phi_C(x,g)\}\) to preserve the channel order. We obtain nonnegative increments via softplus, and enforce strict ordering by cumulative summation followed by normalization: \[\tag{8} \begin{gather} \Delta_{c}(x,g) \triangleq \sigma_{+}\!\bigl(\delta_{c}(x,g)\bigr), \tag{9}\\ \phi_{c}(x,g) = (C{-}1)\cdot\frac{\sum_{j=2}^{c}\Delta_{j}(x,g)}{\sum_{j=2}^{C}\Delta_{j}(x,g)}, \tag{10} \end{gather}\] where \(\sigma_{+}\) denotes the softplus function. Each \(\Delta_{c}(x,g)\) serves as a positive increment along the spectral dimension, so \(\phi_{c}(x,g)\) is strictly increasing w.r.t.\(c\) by construction. This yields a valid, non-crossing resampling function and prevents degenerate channel permutations.

Given the monotonically ordered indices \(\{\phi_c(x,g)\}_{c=1}^C\), \(\phi_c(x,g)\in[0,C{-}1]\), we obtain the warped feature via differentiable linear interpolation along the spectral dimension: \[\hat{F}_{c}(x,g) = \mathcal{I}\!\bigl[\,F(x,g,\cdot)\,;\;\phi_{c}(x,g)\,\bigr], \label{eq:spectral95field}\tag{11}\] where \(\mathcal{I}[\,\cdot\,;\,t\,]\) denotes a differentiable linear interpolation operator evaluated at continuous index \(t\). Since \(\mathbf{z}(x,g)\) is rotation-equivariant and \(f_{\theta}\) is shared across orientations, the predicted indices \(\phi_{c}(x,g)\) are equivariant as well. Since the interpolation operates only along the spectral dimension and is applied independently for each \((x,g)\), it commutes with the group action.

3.3 Rotation-Equivariant Consistency Weighting↩︎

Multi-scale fusion in feature pyramids aggregates representations across pyramid levels, which is essential for scale robustness. However, repeated cross-level aggregation can wash out discriminative spectral evidence and reduce class separability for spectrally similar categories. ReCoW addresses this issue (Fig. 2 (b)) by combining a spectral branch that preserves discriminative spectral patterns with a spatial branch that enforces geometric coherence, and fusing them with a learned branch-selection gate. This design maintains this balance during pyramid fusion with provable equivariance guarantees.

Both branches operate on local windows of size \(W\!\times\!W\). A rotation-invariant descriptor \(\bar{F}(x)=\frac{1}{|G|}\sum_g F(x,g)\) is first obtained by group averaging. Within each window, we form \(K\!=\!q^{2}\) prototype centers \(\{\mathbf{c}_k\}_{k=1}^{K}\) by adaptive average pooling of \(\bar{F}\) to a \(q\!\times\!q\) spatial grid. The grid preserves local spatial layout and provides region-specific centers, where \(x\) indexes locations within the window.

The two branches adopt complementary routing rules. Spectral signatures often exhibit continuous mixing; thus, we employ cosine-based soft assignment to preserve spectral diversity: \[\tag{12} \begin{gather} s^{\mathrm{spec}}_{k}(x) = \tau\cdot\cos\!\bigl(\mathbf{c}_k,\,\bar{F}(x)\bigr), \tag{13}\\ p_k(x) = \frac{\exp\!\bigl(s^{\mathrm{spec}}_{k}(x)\bigr)}{\sum_{k'}\exp\!\bigl(s^{\mathrm{spec}}_{k'}(x)\bigr)}, \tag{14} \end{gather}\] where \(\tau\) is a learnable temperature. The routed spectral representation is obtained by weighted aggregation of prototype centers: \[\hat{F}_{\mathrm{spec}}(x) = \sum_{k=1}^{K} p_k(x)\,\mathbf{c}_k . \label{eq:spec95agg}\tag{15}\] We share \(\hat{F}_{\mathrm{spec}}(x)\) across \(g\) to obtain the refinement \(F_{\mathrm{spec}}(x,g)\) for all orientations, preserving equivariance.

Spatial grouping benefits from crisp region assignments; accordingly, we perform hard routing on a rotation-invariant spatial score map. We compute a scalar score \(s(x)=\frac{1}{C|G|}\sum_{c,g}F_c(x,g)\) and obtain scalar prototype centers \(\{\mu_k\}_{k=1}^{K}\) by adaptive average pooling of \(s\) onto the same \(q\!\times\!q\) grid. Hard assignment is obtained via a Gaussian affinity: \[\tag{16} \begin{gather} a_k(x) = \exp\!\bigl(-\gamma\,\|\mu_k-s(x)\|_2^2\bigr), \tag{17}\\ k^{*}(x) = \argmax_{k} a_k(x), \tag{18} \end{gather}\] where \(\gamma\) is a learnable inverse bandwidth that controls the sharpness of the spatial affinity. Given \(k^{*}(x)\), the spatial branch aggregates the original group features by cluster mean within each window: \[\hat{F}_{\mathrm{spat}}(x,g) = \frac{1}{\lvert \Omega_{k^*(x)} \rvert}\sum_{x'\in \Omega_{k^*(x)}} F(x',g), \label{eq:spat95agg}\tag{19}\] where \(\Omega_{k}\) denotes the set of locations assigned to prototype \(k\) in the window. The assignment is shared across group indices \(g\!\in\!G\), while aggregation is performed separately per group element to obtain the refinement \(F_{\mathrm{spat}}(x,g)\).

Let \(F_{\mathrm{spec}}\) and \(F_{\mathrm{spat}}\) denote the routed outputs of the spectral and spatial branches. Rather than fixed-weight fusion, we learn a position-wise gate that adaptively balances their contributions. We obtain \(\bar{F}_{\mathrm{spec}}\) and \(\bar{F}_{\mathrm{spat}}\) by group averaging and project them into a shared \(d\)-dimensional space using lightweight projections \(\pi_s\) and \(\pi_t\). The branch-selection gate is: \[\beta(x) = \sigma\!\Bigl(\bigl\langle \pi_s\bigl(\bar{F}_{\mathrm{spec}}(x)\bigr),\; \pi_t\bigl(\bar{F}_{\mathrm{spat}}(x)\bigr) \bigr\rangle\Bigr) \in [0,1], \label{eq:gate}\tag{20}\] where \(\sigma\) is the sigmoid function and \(\langle\cdot,\cdot\rangle\) denotes the channel-wise dot product. Intuitively, \(\beta(x)\) quantifies the relative reliability of the spectral branch at each spatial location. The fused output is a convex combination: \[F'(x,g) = \beta(x)\cdot F_{\mathrm{spec}}(x,g) + \bigl(1-\beta(x)\bigr)\cdot F_{\mathrm{spat}}(x,g). \label{eq:convex}\tag{21}\] This dot product measures agreement between the two branches in a learned subspace. Since \(\beta\) is computed from descriptors averaged over the group and applied consistently across \(g\!\in\!G\), the fusion operation is equivariance preserving.

3.4 Oriented-Aware Head Network↩︎

Detection requires category-score fields that are invariant along the orientation axis while remaining spatially equivariant, whereas box and angle predictions must transform consistently with the input. Let \(F_{\!\mathrm{n}}\!\in\!\mathbb{R}^{C\times|G|\times H\times W}\) denote the group feature from the neck and \(\rho_g\) the group action defined in Eq. 2 . We design the three branches of the head to satisfy (Fig. 2 (c)): \[\tag{22} \begin{gather} f_{\mathrm{cls}}(\rho_g\,F_{\!\mathrm{n}})(x) \;=\; f_{\mathrm{cls}}(F_{\!\mathrm{n}})(g^{-1}x), \tag{23}\\[2pt] f_{\mathrm{box}}(\rho_g\,F_{\!\mathrm{n}}) \;=\; \rho_g\,f_{\mathrm{box}}(F_{\!\mathrm{n}}), \tag{24}\\[2pt] f_{\mathrm{ang}}(\rho_g\,F_{\!\mathrm{n}})(x) \;=\; \operatorname{wrap}_{\pi}\!\left( f_{\mathrm{ang}}(F_{\!\mathrm{n}})(g^{-1}x) + \tfrac{2\pi}{|G|}\,\operatorname{idx}(g)\right), \tag{25} \end{gather}\] where \(\operatorname{idx}(g)\) returns the integer index of \(g\) in \(G\), and \(\operatorname{wrap}_{\pi}\) denotes the \(\pi\)-periodic OBB angle normalization.

All three branches are built from the depthwise-pointwise equivariant convolutions of Eqs. 56 with shared parameters across orientations, keeping the head compact. The classification branch achieves invariance via group mean pooling at the readout stage: \[\label{eq:group95pool} \mathbf{z}_{\mathrm{inv}} \;=\; \frac{1}{|G|}\sum_{g\in G}\mathbf{z}_g\,,\tag{26}\] where \(\mathbf{z}_g\) is the feature response at orientation \(g\); since group pooling removes only the orientation index while preserving the transformed spatial coordinate, Eq. 23 follows directly. The box branch keeps group-indexed features and uses a cyclic-tied DFL readout whose weights depend on relative group offsets, while the angle branch predicts group-indexed residual candidates and decodes them by soft circular aggregation. These readouts preserve the equivariant box-side transformation and the \(\pi\)-periodic angle shift law in Eqs. 2425 .

4 Experiments↩︎

We evaluate FressDet on three multispectral object detection benchmarks: MODA [4], HOD3K [17], and DroneVehicle [24]. These datasets span diverse spectral configurations, object scales, and imaging conditions, forming a challenging evaluation suite. All results are reported with the standard COCO AP metric [25].

4.1 Implementation Details↩︎

The backbone employs four stages, each equipped with Fourier positional encoding of \(L\!=\!8\) frequencies and an implicit MLP of depth 5 with ReLU activations. The neck applies ReCoW at each fusion level with local window size \(W\!=\!4\) and \(K\!=\!16\) prototypes arranged on a \(4\!\times\!4\) spatial grid. The rotation group is constructed on \(C_4\) in all experiments unless otherwise specified.

FressDet is trained from scratch without data augmentation, as the built-in rotation equivariance provides sufficient geometric robustness. The framework is built on Ultralytics YOLO [26] with default settings, expanding the first convolution to match the number of MSI bands. All experiments are conducted in PyTorch on two NVIDIA RTX 3090 GPUs.

Table 1: Comparison with other methods on MODA. R-50: ResNet-50, ReR-50: ReResNet-50, ReR-N-50: ReResNet-N-50, CSP-D: CSPDarknet, CSP-N: CSPNeXt, RE-CSP-N: RE-CSPNeXt. #P (M): trainable parameters. #F (G): inference FLOPs.
Methods Backbone Car Bus Van Awi. Tru. Tri. Bike Ped. mAP\(_{50}\) mAP\(_{75}\) mAP #F #P
one-stage methods
R Retina.[27] R-50 90.2 81.9 72.4 59.0 45.5 30.8 21.7 25.4 53.4 37.3 34.1 233.5 36.5
GWD [28] R-50 90.4 79.9 70.7 59.7 49.3 30.8 26.7 29.7 54.7 37.8 34.6 233.5 36.5
RepPts-R [29] R-50 89.9 70.2 67.0 66.1 50.2 41.5 33.3 40.5 57.3 34.9 33.0 213.6 36.9
R3Det [30] R-50 90.4 88.7 74.0 63.8 57.8 45.1 29.4 32.2 60.2 36.7 34.8 362.2 42.0
R3Det-KLD [31] R-50 90.4 88.7 74.8 66.6 60.9 42.6 29.8 35.5 61.2 39.4 36.8 306.7 39.6
YOLOv8n [26] CSP-D 95.8 85.2 63.7 67.4 33.6 35.9 49.6 65.1 62.0 48.0 43.3 12.6 3.2
S\(^2\)ANet [32] R-50 90.4 88.7 74.4 69.1 62.7 48.9 30.1 40.7 63.1 38.7 36.7 216.5 38.8
S2ADet [17] R-50 90.3 86.6 72.1 71.3 57.2 54.1 35.0 40.8 63.5 41.1 38.9 406.0 65.2
FCOS-R [33] R-50 90.3 86.3 75.2 71.2 59.0 53.8 34.7 37.4 63.5 41.8 39.1 226.9 32.2
YOLO26m [34] CSP-D 95.5 85.0 67.3 74.4 35.7 33.8 56.9 66.6 64.4 51.2 46.5 167.2 31.8
RTMDet [35] CSP-N 90.0 88.4 75.3 71.1 62.8 52.5 42.9 41.0 65.5 41.5 40.1 258.5 52.3
YOLOv8m [26] CSP-D 96.2 87.1 64.7 73.3 40.4 36.3 57.0 69.4 65.6 53.5 47.9 112.0 26.4
YOLOv12m [36] CSP-D 96.3 85.3 68.8 74.3 40.3 36.3 57.4 69.5 66.0 52.4 46.8 115.0 24.7
CFA [37] R-50 90.4 89.0 76.7 69.7 64.4 55.1 43.1 41.5 66.2 43.2 40.6 213.6 36.9
O-RepPts [38] R-50 90.5 89.2 77.7 71.2 66.2 53.1 43.0 41.1 66.5 44.1 40.9 213.6 36.9
YOLO11m [39] CSP-D 96.4 88.0 68.2 75.7 44.4 38.0 58.1 68.7 67.2 54.6 48.9 126.2 25.1
DCFL [40] ReR-50 90.6 89.7 77.5 71.3 67.2 55.5 44.2 44.0 67.5 44.8 41.5 241.0 37.0
MessDet [9] RE-CSP-N 90.0 89.1 75.4 71.4 70.2 54.9 48.4 45.5 68.1 42.4 40.1 616.0 15.1
OSSDet [4] R-50 90.5 89.9 79.2 72.7 69.7 58.8 45.3 45.7 69.0 45.9 42.7 263.1 36.5
two-stage methods
GV [41] R-50 90.3 89.1 73.8 69.5 66.0 46.7 41.4 22.6 62.4 35.7 34.7 230.8 41.4
RoI-T [42] R-50 90.5 89.3 75.2 73.3 68.7 51.8 44.5 30.0 65.4 43.4 40.7 244.7 55.3
O-RCNN [43] R-50 90.5 89.7 74.6 72.5 66.6 54.7 45.1 30.4 65.5 44.0 40.9 244.7 55.3
LSKNet [44] LSKNet-S 90.4 88.5 74.5 72.5 66.0 52.5 41.0 28.2 64.2 42.8 39.4 221.9 32.6
StripRCNN [45] R-50 90.5 89.0 76.1 73.6 67.1 56.5 45.2 30.7 66.1 44.0 41.0 231.8 45.2
ReDet [10] ReR-N-50 90.6 89.6 76.8 72.9 69.6 52.4 41.5 41.0 66.8 44.1 41.3 245.2 31.6
AO\(^2\)-DETR [46] R-50 89.4 88.1 76.0 69.5 65.7 54.8 41.9 41.0 65.8 43.0 40.0 240.0 42.0
ARS-DETR [47] Swin-T 90.5 89.2 77.2 70.6 64.8 53.6 43.2 39.7 66.1 43.4 40.5 254.0 44.2
RHINO [48] Swin-T 90.7 89.1 77.3 70.8 65.6 54.0 42.9 41.0 66.4 44.0 40.8 319.5 50.8
O-DETR [49] Swin-T 90.8 89.3 78.8 72.8 68.0 56.0 46.6 40.1 67.8 45.1 41.9 492.0 57.6
FressDet (Ours) SpeIWNet 97.7 90.3 75.4 77.8 59.5 49.4 62.0 72.5 73.1 60.2 54.3 31.7 2.3

0.7pt

4.2 Comparison with State-of-the-Art Methods↩︎

Tab. 1 reports results on MODA. FressDet outperforms OSSDet by 4.1% mAP\(_{50}\), 14.3% mAP\(_{75}\), and 11.6% mAP, with only 6.3% of OSSDet’s parameters and 12.0% of its FLOPs, and achieves large gains on small classes (bike +16.7%, pedestrian +26.8%). Consistently, Fig. 3 demonstrates fewer misses and false positives under clutter and low visibility. Fig. 5 (a) further verifies component effectiveness: SpeIW yields more localized activations on target regions through continuous spectral resampling, ReCoW adaptively enhances the reliable branch and suppresses the weaker one, reinforcing target responses while attenuating background noise. Fig. 5 (b) shows that continuous spectral modeling enlarges inter-class margins (e.g., car vs. van) and forms tighter clusters for small classes (bike, pedestrian), improving discriminability.

Tab. [tab:hod3k] shows FressDet surpasses the previous best OSSDet by 0.2% in mAP while achieving the best mAP\(_{50}\) with only 6.3% of OSSDet’s parameters and 26.8% of its FLOPs. Fig. 4 shows qualitative results on HOD3K. Competing methods often miss occluded or background-blended objects, whereas FressDet enhances target–background separation, yielding predictions closer to the ground truth.

Figure 3: image.

As shown in Tab. 2, our method surpasses the best [50] by 1.1% mAP and 0.5% mAP\(_{50}\) under identical settings. FressDet achieves the best Car and Bus mAP\(_{50}\), leading by 1.4% and 1.3% over the best competing methods in each category. FressDet benefits from the representational continuity that naturally emerges along the spectral dimension.

Figure 4: Detection results on HOD3K. Red boxes indicate the ground truth, while green boxes denote the predictions.
Table 2: Performance comparisons on DroneVehicle.
Methods Car Bus Truck Freight-car Van mAP\(_{50}\) mAP
\(C^2\)Former-\(S^2\)ANet [51] 90.2 89.8 68.3 64.4 58.5 74.2 47.3
YOLOv8l-RGB [26] 92.5 91.7 68.8 47.8 50.2 70.2 48.6
YOLOv8l-IR [26] 93.4 91.9 69.3 53.7 51.1 71.9 49.1
SLBAF-Net [52] 90.2 89.9 76.0 68.2 59.9 76.8 49.5
CSOM-ODAF [53] 90.1 89.8 75.6 68.2 61.8 77.1 50.1
Multimodal DINO [54] 89.5 88.8 75.4 54.3 54.3 72.5 50.3
CMA [55] 95.8 93.1 75.9 59.8 59.4 76.8 50.4
CRSIOD [56] 95.6 92.2 71.7 50.5 55.8 73.2 50.8
YOLOFIV [57] 95.9 91.6 64.2 34.6 37.3 64.7 53.1
GLFNet [58] 90.3 88.0 72.7 53.6 52.6 71.4 54.8
Dual-YOLO [59] 95.9 91.6 69.7 55.9 46.6 71.9 55.2
DMM [60] 90.4 88.7 77.8 63.0 77.2 55.8
CAFN-IA [61] 89.1 90.8 62.0 57.3 47.1 69.3 56.1
IV-YOLO [62] 97.2 94.3 65.4 63.1 53.0 74.6 56.8
WaveMamba [50] 95.0 90.6 64.5 79.8 60.5
FressDet (Ours) 79.0 65.9 62.4

7.2pt

4.3 Ablation Studies and Analysis↩︎

All ablations are conducted on MODA under identical settings unless noted.

As shown in Tab. ¿tbl:tab:ablation95key?, introducing rotation-equivariant group convolutions alone yields a +4.4% mAP gain over the baseline, confirming that geometric priors are as critical as spectral modeling for multispectral detection. Each subsequent module provides improvements, and the full model achieves the best result across all metrics. Among the three proposed modules, SpeIW contributes the most, underscoring the value of continuous spectral modeling in multispectral object detection.

We ablate the spectral operator by replacing SpeIW with rotation-equivariant DCN variants [63][66] (implementation details in the supplementary material). Tab. [tbl:tab:speiw95compare] shows that the plain C\(_4\)-CNN performs worst, underscoring the value of adaptive spectral resampling. SpeIW surpasses all DCN-based alternatives, outperforming the closest DCN variant by 1.1 mAP, indicating that order-preserving continuous resampling provides a stronger inductive bias than discrete deformable offsets.

To evaluate SpeIWNet’s generalization capability, we replace the backbones of five detectors while keeping other components and training unchanged. Fig. 6 shows consistent performance gains across single- and two-stage architectures, along with reduced model size, demonstrating SpeIWNet’s effectiveness as a strong plug-and-play feature extractor across heterogeneous detectors.

Figure 5: (a) Effectiveness visualization of key components. (b) 2D t-SNE [67] visualization of feature distributions on MODA.

Figure 6: image.

We compare \(C_2\), \(C_4\), and \(C_8\) groups in Tab. [tab:group95order]. Higher group order improves accuracy at the cost of increased parameters and FLOPs. \(C_4\) achieves the best balance between accuracy and efficiency: \(C_8\) incurs more than \(2\times\) FLOPs for only marginal improvement, suggesting that \(90^\circ\) discretization already captures the dominant orientation variations.

We ablate the Fourier positional encoding frequency \(L\) in SpeIW (Tab. [tab:fourier95freq]). Higher \(L\) enables better high-frequency modeling along the spectral dimension, but excessive frequencies may lead to overfitting. \(L\!=\!8\) achieves the best performance.

Tab. ¿tbl:tab:spectral95sensitivity? compares RGB/MSI inputs across MODA detectors. MSI improves every method, with FressDet showing the largest gain (+2.7 mAP\(_{50}\) and +3.7 mAP); this supports continuous spectral modeling as a better way to exploit the available bands more fully.

Tab. [tbl:tab:routing95mechanism] shows that routing should match the branch property. Soft spectral routing preserves diversity, while hard spatial routing keeps sharper boundaries; the mismatched alternatives lose one of these cues.

We ablate the spatial grid size used to generate prototypes in ReCoW (Tab. [tbl:tab:recog95prototypes]), which shows that smaller grids lack sufficient spatial resolution to capture diverse local patterns, while larger grids introduce redundancy and overfitting, and the \(4\!\times\!4\) grid (\(K\!=\!16\)) achieves the best balance.

We ablate the fusion strategy for combining the spectral and spatial branches in ReCoW (Tab. [tbl:tab:recog95fusion]). Our learned gate outperforms all alternatives, confirming the benefit of adaptive branch selection over fixed or implicit fusion. Against addition, concatenation, and softmax fusion, the gate raises mAP by 1.5, 0.9, and 0.5 points, respectively.

We ablate each ReCoW branch (Tab. [tbl:tab:recog95branch]). The spectral and spatial branches achieve 72.3% and 71.8% mAP\(_{50}\), respectively. Their combination reaches 73.1%, confirming that the two branches capture complementary information and yield consistent improvements when combined.

To quantify how well rotation equivariance is preserved, we measure the equivariance error at each backbone stage, defined as the RMS difference between rotating the input before and the output after the network [9]: Fig. [fig:equiv95error] shows FressDet maintains low equivariance error across all stages, while OSSDet exhibits consistently higher errors.

5 Conclusion↩︎

We present FressDet, the first fully rotation-equivariant spectral–spatial learning framework for multispectral object detection. FressDet addresses discrete spectral processing, spectral–spatial reliability shifts, and arbitrary orientations through three components: SpeIW for continuous, monotonic spectral resampling, ReCoW for reliable spectral–spatial fusion across pyramid levels, and an oriented-aware head for stable orientation prediction without parameter replication. Extensive experiments on three public benchmarks demonstrate that FressDet achieves state-of-the-art accuracy with the fewest parameters among compared multispectral detectors and exhibits the best robustness even under input rotational perturbations.

Acknowledgements↩︎

This work was financially supported by the National Natural Science Foundation of China (No. 62101032), the Chongqing Excellent Young Scientists Fund (No. CSTB2025NSCQ-JQX0017), and the High-Quality Development Special Project of the Ministry of Industry and Information Technology (TC240HAJ9-35).

References↩︎

[1]
K. Pearson, “LIII. On lines and planes of closest fit to systems of points in space,” The London, Edinburgh, and Dublin philosophical magazine and journal of science, vol. 2, no. 11, pp. 559–572, 1901.
[2]
W. Sun and Q. Du, “Hyperspectral band selection: A review,” IEEE Geoscience and Remote Sensing Magazine, vol. 7, no. 2, pp. 118–139, 2019.
[3]
Y. Zhang, J. Qi, X. Wang, Z. Cai, J. Peng, and Y. Zhou, “Tensorial global-local graph self-representation for hyperspectral band selection,” IEEE Transactions on Circuits and Systems for Video Technology, 2024.
[4]
S. Han, T. Xu, P. Liu, and J. Li, “MODA : The first challenging benchmark for multispectral object detection in aerial images,” arXiv preprint arXiv:2512.09489, 2025.
[5]
T. S. Cohen and booktitle=ICML. Welling Max, “Group equivariant convolutional networks,” 2016.
[6]
M. Weiler and booktitle=NeurIPS. Cesa Gabriele, “General E(2)-equivariant steerable CNNs,” 2019.
[7]
Z. Wu et al., “Relaxed rotational equivariance via G-biases in vision,” 2025, pp. 8541–8549, doi: 10.1609/AAAI.V39I8.32922 , note={arXiv:2408.12454}.
[8]
Z. Wu et al., “R2Det : Exploring relaxed rotation equivariance in 2D object detection,” 2025.
[9]
X. Wu, X. Wang, X. Zhu, L. Yang, J. Liu, and booktitle=Proceedings. of the I. I. C. on C. V. (ICCV). Hu Xingchen, “Measuring the impact of rotation equivariance on aerial object detection,” 2025.
[10]
J. Han, J. Ding, N. Xue, and booktitle=CVPR. Xia Gui-Song, “ReDet : A rotation-equivariant detector for aerial object detection,” 2021, pp. 2786–2795.
[11]
X. Xu, H. Liu, T. Zhang, H. Xiong, and W. Yu, “PreCM : The padding-based rotation equivariant convolution mode for semantic segmentation,” IEEE Transactions on Image Processing, vol. 34, pp. 2781–2795, 2025, doi: 10.1109/TIP.2025.3558425 , note={arXiv:2411.01624}.
[12]
G. Cybenko, “Approximation by superpositions of a sigmoidal function,” Mathematics of Control, Signals, and Systems, vol. 2, no. 4, pp. 303–314, 1989, doi: 10.1007/BF02551274.
[13]
K. Hornik, “Approximation capabilities of multilayer feedforward networks,” Neural Networks, vol. 4, no. 2, pp. 251–257, 1991, doi: 10.1016/0893-6080(91)90009-T.
[14]
M. Tancik et al., “Fourier features let networks learn high frequency functions in low dimensional domains.” 2020 , eprint={2006.10739}, archivePrefix={arXiv}, primaryClass={cs.CV}.
[15]
N. Rahaman et al., “On the spectral bias of neural networks.” 2019 , eprint={1806.08734}, archivePrefix={arXiv}, primaryClass={stat.ML}.
[16]
L. Yan, M. Zhao, X. Wang, Y. Zhang, and J. Chen, “Object detection in hyperspectral images,” IEEE Signal Processing Letters, vol. 28, pp. 508–512, 2021.
[17]
X. He, C. Tang, X. Liu, W. Zhang, K. Sun, and J. Xu, “Object detection in hyperspectral image via unified spectral–spatial feature aggregation,” IEEE Transactions on Geoscience and Remote Sensing, vol. 61, pp. 1–13, 2023, doi: 10.1109/TGRS.2023.3307288.
[18]
C. Lee, J. Son, H. Shon, Y. Jeon, and booktitle=AAAI. Kim Junmo, “FRED : Towards a full rotation-equivariance in aerial image object detection,” 2024, pp. 2883–2891, doi: 10.1609/aaai.v38i4.28069.
[19]
B. Mildenhall, P. P. Srinivasan, M. Tancik, J. T. Barron, R. Ramamoorthi, and editor =. A. V. and H. B. and T. B. and J.-M. F. Ren Ng, “NeRF : Representing scenes as neural radiance fields for view synthesis , booktitle = Computer Vision - ECCV 2020 - 16th European Conference, Glasgow, UK, August 23-28, 2020, Proceedings, Part I, series = Lecture Notes in Computer Science,” 2020, vol. 12346, pp. 405–421, doi: 10.1007/978-3-030-58452-8_24.
[20]
Y. Chen, S. Liu, and X. Wang, “Learning continuous image representation with local implicit image function , booktitle = Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR),” 2021, pp. 8628–8638.
[21]
X. Xu, Z. Wang, and H. Shi, “UltraSR : Spatial encoding is a missing.” 2022 , eprint = {2103.12716}, archivePrefix= {arXiv}, primaryClass = {cs.CV}.
[22]
R. Li, J. Liu, G. Liu, S. Zhang, B. Zeng, and editor =. M. J. W. and J. G. D. and S. N. Shuaicheng Liu, “SpectralNeRF : Physically based spectral rendering with neural radiance field , booktitle = Thirty-Eighth AAAI Conference on Artificial Intelligence, AAAI 2024, Vancouver, Canada, February 20-27, 2024,” 2024, pp. 3154–3162, doi: 10.1609/AAAI.V38I4.28099.
[23]
Y.-J. Liang, Z. Cao, S. Deng, H.-X. Dou, and editor =. A. G. and L. M. Liang-Jian Deng, “Fourier-enhanced implicit neural fusion network for multispectral and hyperspectral image fusion , booktitle = Advances in Neural Information Processing Systems 38: Annual Conference on Neural Information Processing Systems 2024, NeurIPS 2024, Vancouver, BC, Canada, December 10 - 15, 2024,” 2024.
[24]
Y. Sun, B. Cao, P. Zhu, and Q. Hu, “Drone-based RGB-infrared cross-modality vehicle detection via uncertainty-aware learning,” TCSVT, vol. 32, no. 10, pp. 6700–6713, 2022, doi: 10.1109/TCSVT.2022.3168279.
[25]
T.-Y. Lin et al., “Microsoft COCO: Common objects in context,” 2014, pp. 740–755, doi: 10.1007/978-3-319-10602-1_48.
[26]
G. Jocher, A. Chaurasia, and howpublished=Ultralytics. Qiu Jing, 2023 , note={Available at \url{https://github.com/ultralytics/ultralytics}. Accessed 5 March 2026}.
[27]
T.-Y. Lin, P. Goyal, R. Girshick, K. He, and booktitle=ICCV. Dollar Piotr, “Focal loss for dense object detection,” 2017.
[28]
X. Yang, J. Yan, Q. Ming, W. Wang, X. Zhang, and booktitle=International. conference on machine learning Tian Qi, “Rethinking rotated object detection with gaussian wasserstein distance loss,” 2021 , organization={PMLR}, pp. 11830–11841.
[29]
Z. Yang, S. Liu, H. Hu, L. Wang, and booktitle=ICCV. Lin Stephen, “Reppoints : Point set representation for object detection,” 2019, pp. 9657–9666.
[30]
X. Yang, J. Yan, Z. Feng, and booktitle=AAAI. He Tao, “R3Det : Refined single-stage detector with feature refinement for rotating object,” 2021, vol. 35, pp. 3163–3171.
[31]
X. Yang et al., “Learning high-precision bounding box for rotated object detection via kullback-leibler divergence,” Advances in Neural Information Processing Systems, vol. 34, pp. 18381–18394, 2021.
[32]
J. Han, J. Ding, J. Li, and G.-S. Xia, “Align deep features for oriented object detection,” IEEE transactions on geoscience and remote sensing, vol. 60, pp. 1–11, 2021.
[33]
Z. Tian, C. Shen, H. Chen, and booktitle=ICCV. He Tong, “FCOS : Fully convolutional one-stage object detection,” 2019, pp. 9626–9635.
[34]
R. Sapkota, R. H. Cheppally, A. Sharda, and M. Karkee, “YOLO26 :” arXiv preprint arXiv:2509.25164, 2025 , eprint={2509.25164}, archivePrefix={arXiv}, primaryClass={cs.CV}.
[35]
C. Lyu et al., “RTMDet : An empirical study of designing real-time object detectors,” arXiv preprint arXiv:2212.07784, 2022.
[36]
Y. Tian, Q. Ye, and D. Doermann, “YOLOv12 : Attention-centric real-time object detectors,” arXiv preprint arXiv:2502.12524, 2025.
[37]
Z. Guo, C. Liu, X. Zhang, J. Jiao, X. Ji, and booktitle=CVPR. Ye Qixiang, “Beyond bounding-box: Convex-hull feature adaptation for oriented and densely packed object detection,” 2021, pp. 8792–8801.
[38]
W. Li, Y. Chen, K. Hu, and booktitle=CVPR. Zhu Jianke, “Oriented RepPoints for aerial object detection,” 2022, pp. 1829–1838.
[39]
G. Jocher and J. Qiu, “Ultralytics YOLO11 , version = 11.0.0.” 2024 , orcid = {0000-0001-5950-6979, 0000-0003-3783-7069}, license = {AGPL-3.0}, note = {Available at \url{https://github.com/ultralytics/ultralytics}. Accessed 5 March 2026}.
[40]
C. Xu et al., “Dynamic coarse-to-fine learning for oriented tiny object detection , booktitle = Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR),” 2023, pp. 7318–7328.
[41]
Y. Xu et al., “Gliding vertex on the horizontal bounding box for multi-oriented object detection,” IEEE transactions on pattern analysis and machine intelligence, vol. 43, no. 4, pp. 1452–1459, 2020.
[42]
J. Ding, N. Xue, Y. Long, G.-S. Xia, and booktitle=CVPR. Lu Qikai, “Learning RoI transformer for oriented object detection in aerial images,” 2019, pp. 2849–2858.
[43]
X. Xie, G. Cheng, J. Wang, X. Yao, and booktitle=ICCV. Han Junwei, “Oriented R-CNN for object detection,” 2021, pp. 3520–3529.
[44]
Y. Li et al., “LSKNet : A foundation lightweight backbone for remote sensing,” International Journal of Computer Vision, 2024, doi: 10.1007/s11263-024-02247-9.
[45]
X. Yuan et al., “Strip R-CNN: Large strip convolution for remote sensing object detection,” arXiv preprint arXiv:2501.03775, 2025.
[46]
L. Dai, H. Liu, H. Tang, Z. Wu, and P. Song, “AO2-DETR : Arbitrary-oriented object detection transformer,” IEEE transactions on circuits and systems for video technology, vol. 33, no. 5, pp. 2342–2356, 2022.
[47]
Y. Zeng, Y. Chen, X. Yang, Q. Li, and J. Yan, “ARS-DETR : Aspect ratio-sensitive detection transformer for aerial oriented object detection,” IEEE transactions on geoscience and remote sensing, vol. 62, pp. 1–15, 2024.
[48]
H. Lee, M. Song, J. Koo, and J. Seo, “Hausdorff distance matching with adaptive query denoising for rotated detection transformer , booktitle = Proceedings of the Winter Conference on Applications of Computer Vision (WACV),” 2025, pp. 1872–1882.
[49]
Z. Zhao, Q. Xue, Y. He, Y. Bai, X. Wei, and booktitle=ECCV. Gong Yihong, “Projecting points to axes: Oriented object detection via point-axis representation,” 2024, pp. 161–179, doi: 10.1007/978-3-031-73390-1_10.
[50]
H. Zhu et al., “WaveMamba : Wavelet-driven mamba fusion for RGB-infrared object detection,” 2025, pp. 11219–11229.
[51]
M. Yuan and X. Wei, “C\(^2\)Former: Calibrated and complementary transformer for RGB-infrared object detection,” IEEE Transactions on Geoscience and Remote Sensing, vol. 62, pp. 1–12, 2024.
[52]
X. Cheng, K. Geng, Z. Wang, J. Wang, Y. Sun, and P. Ding, “SLBAF-net : Super-lightweight bimodal adaptive fusion network for UAV detection in low recognition environment,” Multimedia Tools and Applications, vol. 82, no. 30, pp. 47773–47792, 2023.
[53]
C. Chen et al., “Weakly misalignment-free adaptive feature alignment for UAVs-based multimodal object detection,” 2024, pp. 26836–26845.
[54]
X. Sun, Y. Yu, and Q. Cheng, “Adaptive multimodal feature fusion with frequency domain gate for remote sensing object detection,” Remote Sensing Letters, vol. 15, no. 2, pp. 133–144, 2024, doi: 10.1080/2150704X.2024.2305177.
[55]
C. Jiang et al., “M2FNet : Multi-modal fusion network for object detection from visible and thermal infrared images,” International Journal of Applied Earth Observation and Geoinformation, vol. 130, p. 103918, 2024, doi: 10.1016/j.jag.2024.103918.
[56]
H. Wang et al., “Cross-modal oriented object detection of UAV aerial images based on image feature,” IEEE Transactions on Geoscience and Remote Sensing, vol. 62, pp. 1–21, 2024.
[57]
H. Wang et al., “YOLOFIV : Object detection algorithm for around-the-clock aerial remote sensing images by fusing infrared and visible features,” IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing, vol. 17, pp. 15269–15287, 2024.
[58]
X. Kang, H. Yin, and P. Duan, “Global-local feature fusion network for visible-infrared vehicle detection,” IEEE Geoscience and Remote Sensing Letters, vol. 21, pp. 1–5, 2024, doi: 10.1109/LGRS.2024.3375634.
[59]
C. Bao, J. Cao, Q. Hao, Y. Cheng, Y. Ning, and T. Zhao, “Dual-YOLO architecture from infrared and visible images for object detection,” Sensors, vol. 23, no. 6, p. 2934, 2023.
[60]
M. Zhou et al., “DMM : Disparity-guided multispectral mamba for oriented object detection in remote sensing.” 2024 , eprint={2407.08132}, archivePrefix={arXiv}, primaryClass={cs.CV}.
[61]
J. Xu, B. Mo, J. Zhao, C. Zhao, Y. Tao, and booktitle=2024. 39th. Y. A. A. C. of C. A. of A. (YAC). Han Shuo, “Cross-modal adaptive fusion object detection based on illumination-awareness,” 2024 , organization={IEEE}, pp. 931–938.
[62]
D. Tian, X. Yan, D. Zhou, C. Wang, and W. Zhang, “IV-YOLO : A lightweight dual-branch object detection network,” Sensors, vol. 24, no. 19, p. 6181, 2024, doi: 10.3390/s24196181.
[63]
J. Dai et al., “Deformable convolutional networks,” 2017, pp. 764–773, doi: 10.1109/ICCV.2017.89.
[64]
X. Zhu, H. Hu, S. Lin, and J. Dai, “Deformable ConvNets V2: More deformable, better results , booktitle = Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR),” 2019.
[65]
W. Wang et al., “InternImage : Exploring large-scale vision foundation models with deformable convolutions,” 2023, pp. 14408–14419, doi: 10.1109/CVPR52729.2023.01385.
[66]
Y. Xiong et al., “Efficient deformable ConvNets: Rethinking dynamic and sparse operator for vision applications,” 2024, pp. 5765–5775, doi: 10.1109/CVPR52733.2024.00551.
[67]
L. Van der Maaten and G. Hinton, “Visualizing data using t-SNE.” Journal of machine learning research, vol. 9, no. 11, 2008.