3.2.1. Comparison with State-of-the-Art Methods
To comprehensively evaluate the detection performance of AFC-Det in complex SAR scenarios, this study compares it with several multi-modal detection methods, including YOLOv11-RGBT, DAMSDet, DEYOLO, QFDet, and COXNet, on the VTSaR dataset. As shown in
Table 3 and
Figure 7, AFC-Det achieves superior performance in detection accuracy, small-object perception capability, and lightweight architectural efficiency. To ensure a fair evaluation, the detection models were retrained on the VTSaR dataset using their official implementations. Instead of relying on pre-published weights, we initialized all models with COCO pre-trained weights and standardized the training environment. Every model shared a 640 × 640 input resolution, a 300–epoch schedule, and an effective batch size of 32, utilizing gradient accumulation to satisfy GPU memory constraints.
We applied an identical data augmentation pipeline across all configurations. This included a 1.0 probability for Mosaic, 0.1 for MixUp, 0.5 for random horizontal flip, and HSV color jittering with hue, saturation, and value thresholds of 0.015, 0.7, and 0.4, respectively. To ensure optimal convergence, we retained each model’s default optimization recipe alongside all other unspecified hyperparameters strictly according to their original official configurations. All experiments were conducted on a single NVIDIA GeForce RTX 3090 GPU.
To address concerns regarding the relatively incremental performance margins over recent baselines and to rigorously evaluate the statistical consistency of our framework, we conducted multiple independent training and evaluation trials across five distinct random seeds, namely seeds 42, 43, 44, 45, and 46. The quantitative results are reported in a unified deviation format. In this notation, the primary value represents the benchmark performance under seed 42, with upper and lower offsets indicating the maximum and minimum deviations across all five trials. This multi-run evaluation transparently illustrates the operational bounds of each network and confirms that the advantages of AFC-Det remain highly consistent and reproducible against stochastic optimization noise.
In terms of overall detection performance, AFC-Det attains an AP of 45.4%, achieving comparable accuracy to the highly competitive YOLOv11-RGBT baseline at 45.1%, as this marginal difference lies within the observed seed-to-seed variation. However, AFC-Det demonstrates a clear and statistically significant advantage under stricter evaluation criteria. Specifically, under the high IoU threshold, AFC-Det achieves an AP75 of 33.7%, outperforming YOLOv11-RGBT by a substantial margin of 2.3 percentage points, demonstrating superior bounding-box localization capability. This improvement is primarily attributed to the cross-modal feature interaction and multi-scale feature enhancement mechanisms, which enable the model to more effectively suppress redundant noise and enhance target region representation quality under complex backgrounds.
Furthermore, while the overall mean AP remains comparable as previously discussed, the deviation bounds in
Table 3 validate the statistical consistency and superior stability of AFC-Det across multiple independent trials. While YOLOv11-RGBT achieves a competitive baseline AP of 45.1%, it suffers a maximum AP drop of 0.9% across different random seeds. In contrast, AFC-Det demonstrates robust lower-bound stability, restricting its maximum AP drop to merely 0.2% alongside an upward potential of 0.8%. Moreover, its performance degradations under stricter metrics such as AP75 and APs are tightly constrained to 0.2% and 0.1% respectively. This exceptional robustness indicates that AFC-Det is highly insensitive to random initialization and optimization noise, ensuring consistently reliable perception for practical UAV deployment.
Regarding model complexity, AFC-Det demonstrates an unmatched accuracy-efficiency trade-off. It contains only 1.7M parameters and 8.0 GFLOPs, while achieving a real-time inference speed of 107.2 FPS. In contrast, DAMSDet has 79.1M parameters and 134.7 GFLOPs, with an inference speed of only 21.4 FPS, and YOLOv11-RGBT requires nearly three times the parameters, specifically 5.0M, while running at half the speed at 56.7 FPS. Therefore, AFC-Det significantly reduces model size and computational overhead while delivering clear advantages in strict localization and processing speed, demonstrating a computationally lightweight architecture that paves the way for future edge deployment on resource-constrained UAV platforms.
3.2.2. Ablation Studies and Component Analysis
To clarify the progression of our ablation studies and ensure reproducibility, we define a reference architecture. In
Table 4, the Baseline represents a standard asymmetric dual-stream network. Structurally, it employs standard BasicBlock for feature extraction in both branches—where each block is a residual unit comprising two
convolutions and an average-pooling shortcut for downsampling. Furthermore, it fuses the multi-modal features via a simple concatenation, aggregates them utilizing a standard Feature Pyramid Network (FPN) rather than our proposed HRAG-FPN, and entirely excludes the CMP module. This baseline serves to validate the incremental contributions of our proposed components.
To verify the independent contributions and synergistic effects of each core module, module ablation experiments were conducted under a unified experimental setting, and the results are shown in
Table 4 and
Figure 8. The Baseline achieved AP, AP75, and APs values of 42.2, 26.5, and 41.1, respectively, with 2.89 M parameters and 9.4 GFLOPs.
First, introducing CMP alone marginally increased parameters to 2.95M and GFLOPs to 9.9, while boosting AP, APs, and APm to 42.8, 41.7, and 51.6, respectively. These results demonstrate that CMP can enhance cross-modal feature interaction at a small computational cost, particularly improving the semantic representation of medium-scale objects. Alternatively, solely applying HRAG-FPN raised AP to 44.5, alongside significant improvements in AP75 and APs, showing that the high-resolution anchored multi-scale aggregation structure can effectively improve small-object feature representation and boundary localization capability. In contrast, replacing only the feature encoding block with our lightweight design substantially reduced parameters to 1.35M and GFLOPs to 7.1, though AP slightly dropped to 41.5. This suggests that the lightweight encoding block can substantially reduce model complexity, yet still requires the assistance of cross-modal calibration and multi-scale aggregation modules when used alone.
The dual-module combination experiments further demonstrate clear complementarity among the modules. By combining CMP with the lightweight encoding block, the model achieved an AP of 42.7 with 1.41M parameters and 7.6 GFLOPs, showing a clear recovery over using the lightweight block alone. This indicates that cross-modal calibration can provide more stable inputs for lightweight feature extraction. Coupling CMP and HRAG-FPN yielded 44.9 AP, but at a relatively high computational overhead of 3.55M parameters and 11.4 GFLOPs. Conversely, pairing the lightweight encoding block with HRAG-FPN matched the 44.9 AP while maintaining an efficient 1.59M parameters and 7.5 GFLOPs, alongside superior AP75 and APs scores. This indicates good compatibility between lightweight feature extraction and high-resolution multi-scale aggregation.
Finally, the complete AFC-Det integrates CMP, HRAG-FPN, and the lightweight modality-specific encoding block, achieving the best overall performance. Compared with the Baseline, AFC-Det improves AP, AP75, and APs to 45.4, 33.7, and 44.7, corresponding to relative gains of 7.6 percent, 27.2 percent, and 8.8 percent, respectively. Meanwhile, it requires only 1.65M parameters and 8.0 GFLOPs, successfully surpassing the baseline efficiency. These results confirm that AFC-Det effectively reduces model complexity while improving detection accuracy and small-object localization capability, validating the effectiveness of the synergistic design of cross-modal calibration, multi-scale aggregation, and lightweight feature encoding.
In
Table 5, the goal is specifically to isolate and evaluate the effectiveness of our modality-specific lightweight feature extractors (StarBlock and LSBlockS). Therefore, the BasicBlock Variant in
Table 5 is actually the complete architecture including both the CMP and HRAG-FPN modules, but utilizing the aforementioned standard BasicBlocks instead of our proposed lightweight blocks. This setting corresponds exactly to the + C + H variant in
Table 4.
As shown in Group A of
Table 5, when both branches adopt BasicBlock, the model achieves an AP of 44.9 and an AP75 of 30.9. However, this conventional convolutional stacking exhibits relatively evident computational redundancy, requiring 3.551M parameters and 11.4 GFLOPs.
Introducing StarBlock solely into the RGB branch marginally reduces parameters to 2.579M and GFLOPs to 9.1 while improving AP75 to 31.3 and APm to 52.0. This indicates enhanced structural and texture representation for the visible-light branch at a lower computational overhead. Conversely, applying LSBlockS exclusively to the Thermal branch further reduces parameters to 2.263M but degrades AP, AP75, and APs to 44.2, 28.9, and 43.3 respectively. This performance drop occurs because infrared images lack clear boundaries, meaning the thermal-response selection of LSBlockS strictly requires complementary structural priors from the RGB branch to achieve stable gains.
Applying StarBlock and LSBlockS simultaneously yields the best overall performance. Compared with the BasicBlock Variant, this standard configuration slashes parameters by 53.5 percent and GFLOPs by 29.8 percent, while boosting AP, AP75, and APs to 45.4, 33.7, and 44.7 respectively. These results confirm their strong cross-modal complementarity. StarBlock enhances spatial-structure representation in the RGB branch, whereas LSBlockS suppresses background thermal noise in the Thermal branch, collectively improving high-IoU localization and small-object detection with significantly reduced computational cost.
Furthermore, Group B compares different structural variants of LSBlockS. The expanded version increases parameters to 2.036M and GFLOPs to 9.4 but drops AP75 to 30.1, indicating that simply increasing channel capacity introduces redundant features and weakens localization stability. The residual version maintains the baseline computational cost but decreases AP and AP75, suggesting that modifying only the information propagation path is insufficient. Moreover, the combined residual and expanded version incurs higher computational overhead without surpassing the overall AP and APs of the standard LSBlockS. Therefore, the standard LSBlockS design achieves the optimal balance among accuracy, efficiency, and small-object representation.
To analyze the effect of CMP at different network stages, this study configured three intervention strategies—late, mid, and early—on the same lightweight benchmark network. The CMP module structure remained consistent across all variants, with only the embedding position altered. Specifically, late intervention denotes embedding CMP at the high-level semantic stage, mid intervention denotes embedding CMP at the intermediate feature stage, and early intervention denotes embedding CMP at the shallow high-resolution feature stage. The experimental results are shown in
Table 6.
The quantitative results indicate that the timing of CMP intervention has a clear impact on detection performance. CMP-EARLY achieves the best overall results, with AP, AP50, AP75, APs, APm, and F1 reaching 42.8, 95.1, 26.0, 41.7, 51.6, and 94.5, respectively. Compared with CMP-LATE, CMP-EARLY improves AP by 1.8 percentage points, APs by 1.6 percentage points, APm by 1.8 percentage points, and F1 by 2.0 percentage points. Meanwhile, the parameter count increases only slightly from 2.92M to 2.95M, and the computational cost increases from 9.7 to 9.9 GFLOPs, indicating that early CMP intervention brings consistent performance gains with only minimal additional overhead. CMP-MID performs between CMP-LATE and CMP-EARLY, suggesting that earlier cross-modal calibration is more effective for enhancing feature representation.
Figure 9 illustrates the feature responses arranged by different scenarios and model configurations. The figure is divided into a water surface scene on the left and a night scene on the right. For both scenes, the upper row displays the feature responses without the CMP module at the P3 level, which corresponds to mid-stage or late-stage fusion, while the lower row shows the responses after introducing the CMP module at the P3 level. Within each scene, the columns sequentially show the original RGB image (a) and (d), the isolated attention heatmap (b) and (e), and the heatmap superimposed onto the RGB image (c) and (f). A color bar is provided on the far right to indicate the normalized activation intensity from low to high. When CMP is not introduced at the P3 level, the feature responses are relatively scattered and noticeable background activations remain in cluttered regions. This indicates that delayed cross-modal fusion is insufficient to fully suppress modality-specific noise and spatial response inconsistency accumulated during downsampling. In contrast, after introducing CMP at the P3 level, the target regions exhibit more compact and prominent activations, while redundant background responses are clearly reduced. This demonstrates that early cross-modal prompting at the high-resolution feature stage can better exploit infrared thermal saliency and visible structural details before fine spatial information is lost. Consequently, CMP-EARLY provides cleaner and more discriminative multi-modal features for subsequent pyramid aggregation and detection.
In summary, because early intervention achieves superior performance with minimal additional overhead, it is adopted as the default configuration in the final AFC-Det model. This confirms that introducing cross-modal prompting at the shallow high-resolution stage effectively suppresses early noise and preserves complementary RGB-IR cues for small-target detection.
To further validate the role of HRAG-FPN in multi-scale feature aggregation, this study performs a heatmap visualization comparison between the model without HRAG-FPN and the complete AFC-Det. Following the same visual arrangement as
Figure 9,
Figure 10 evaluates the impact of the HRAG-FPN module, displaying the feature responses before and after its integration. The left side depicts a water surface scene, while the right side shows a wild shrubland scene. Without HRAG-FPN, the model’s target responses are relatively dispersed, and small-scale, low-SNR target regions exhibit weak activation. This demonstrates that relying solely on local feature calibration is insufficient for fully capturing tiny targets in complex scenarios.
In contrast, after introducing HRAG-FPN, the heatmap responses in target regions become more concentrated, redundant activations in background regions are reduced, and both small and medium-scale targets exhibit clearer response distributions. This demonstrates that HRAG-FPN can strengthen the interaction between shallow spatial details and deep semantic information through high-resolution anchored aggregation and bottom-up detail feedback, thereby improving small-object feature representation and boundary localization capability.
The visualization results align with the quantitative experiments. After introducing HRAG-FPN, the model achieves clear improvements in AP, AP75, and APs, confirming that this module not only enhances multi-scale target responses but also helps reduce missed detections under complex backgrounds. Therefore, HRAG-FPN contributes positively to improving the completeness of small-object detection by AFC-Det in UAV-SAR scenarios.
3.2.3. Generalization Capability on the M3FD Dataset
To ensure a rigorous and fair evaluation of cross-dataset generalization, all compared networks alongside the proposed AFC-Det were initialized with COCO pre-trained weights and independently trained on the M3FD dataset. The training setup on M3FD strictly adopted identical hyperparameter configurations, optimization strategies, learning rate schedules, and data augmentation recipes as those used in the main VTSaR experiments. This standardized protocol guarantees that the cross-dataset evaluation metrics objectively reflect the architectural generalization and multi-scenario adaptability of each framework across distinct multi-modal data distributions under uniform optimization conditions.
The generalization experiment results on the M3FD dataset are shown in
Table 7. AFC-Det achieves the best overall performance in cross-dataset testing, with AP, AP50, and AP75 reaching 54.6%, 86.1%, and 56.8%, respectively, all outperforming the competing methods. Compared with YOLOv11-RGBT, AFC-Det improves AP by 3.0%, AP50 by 3.0%, and AP75 by 2.1%, indicating that the proposed method is not only effective on the original SAR dataset but also demonstrates strong generalization capability on more complex multi-scenario RGB–IR datasets.
In terms of model complexity, AFC-Det contains only 1.7M parameters and 8.0 GFLOPs, significantly lower than YOLOv11-RGBT, DEYOLO, DAMSDet, QFDet, and COXNet. Although DAMSDet, QFDet, and COXNet have larger model sizes and computational costs, their detection performance is noticeably lower than that of AFC-Det, demonstrating that simply increasing network capacity does not effectively enhance cross-scenario multi-modal detection performance. This validates the superior efficiency of our cross-modal feature modeling and lightweight structural design.
Overall, these M3FD results highlight the strong multi-scenario adaptability of AFC-Det, confirming its potential for robust deployment on resource-constrained UAV perception platforms without relying on a single dataset distribution.