Next Article in Journal
A Novel Technique for the Extraction of Whiteness and Yellowness Indices of Sugar Based on Digital Color Imaging
Previous Article in Journal
Morphology Predicts Grade, Transcriptomics Predicts Nodal Status: Task-Dependent Modality Contributions in Multimodal Prostate Cancer Classification
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

An Object Detection Method Based on Frequency-Band Enhancement and Multi-Scale Fusion

1
School of Electrical and Control Engineering, North China University of Technology, Beijing 100144, China
2
School of Computer Science and Technology, Kashi University, Kashi 844000, China
3
School of Artificial Intelligence and Computer Science, North China University of Technology, Beijing 100144, China
*
Author to whom correspondence should be addressed.
J. Imaging 2026, 12(9), 447; https://doi.org/10.3390/jimaging12090447
Submission received: 26 June 2026 / Revised: 4 August 2026 / Accepted: 20 August 2026 / Published: 16 September 2026

Abstract

Although Transformer-based real-time object detectors have achieved promising performance in autonomous driving scenarios, their ability to detect small objects remains limited. This limitation primarily arises because small objects occupy only a few pixels in an image and contain weak edge and texture information, which can be further degraded during feature extraction and multiscale feature propagation. To address these issues, this study proposes a wavelet-based frequency-aware feature enhancement method using RT-DETR as the baseline network. First, a Wavelet Frequency Unit is introduced into the feature fusion stage of the RT-DETR neck. The unit employs the Haar wavelet transform to decompose the input features into low- and high-frequency subbands, thereby decoupling information across different frequency components. Second, residual enhancement and a frequency attention mechanism are applied to strengthen edge and texture details in the high-frequency branch. Finally, the low-frequency subband is fused with low-resolution features across scales, followed by feature reconstruction using the inverse wavelet transform. This design improves the representation of small objects in the feature space. Tests on KITTI and BDD100K verify the method. On KITTI, it obtains 95.5% mAP@0.5 and 69.7% mAP@0.5:0.95, exceeding the RT-DETR baseline by 1.8 and 1.1 percentage points. APs and ARs rise by 2.7 and 2.3 percentage points. On the selected BDD100K subset, the corresponding mAP@0.5 and mAP@0.5:0.95 values are 51.7% and 29.7%.

1. Introduction

With the continuous advancement of intelligent transportation systems and autonomous driving technologies, object detection has become a fundamental task in autonomous perception systems [1,2,3]. These systems must accurately and efficiently identify various road elements, including vehicles, pedestrians, cyclists, traffic signs, and other objects, to support environmental understanding, motion planning, and safety-related decision-making. In recent years, Transformer-based object detection approaches have attracted considerable attention in computer vision due to their strong feature representation capability [4,5,6,7]. By exploiting self-attention mechanisms, Transformer detectors can capture long-range dependencies among image features and achieve end-to-end object classification and bounding-box regression. Among these approaches, DETR [8] introduced a pioneering Transformer-based framework for object detection. By modeling global interactions between different image regions, DETR removes the dependence on manually designed components and reduces the complex post-processing procedures required by traditional detectors. To improve detection efficiency for real-time applications, RT-DETR [9] further enhances the DETR architecture by integrating an efficient hybrid encoder. This improvement accelerates inference while maintaining competitive detection accuracy, making RT-DETR more suitable for practical autonomous driving scenarios.
Although RT-DETR achieves competitive performance in general object detection tasks, its capability for identifying small objects in autonomous driving scenarios remains insufficient [10,11]. As shown in Figure 1, small targets usually occupy only a limited number of pixels and contain weak edge, texture, and local structural information. These fine-grained features are highly vulnerable to information loss during feature extraction, downsampling, and cross-scale feature propagation. Moreover, object occlusion, illumination changes, and complex background interference can further reduce the discriminability between target features and surrounding environmental information, thereby increasing the probability of missed detections and false positives.
Existing multi-scale feature fusion strategies mainly focus on directly combining or aggregating spatial-domain features without considering the intrinsic characteristics of different frequency components [12]. Consequently, these approaches may struggle to effectively preserve detailed structural information of small objects. Unlike conventional spatial-domain fusion methods, wavelet transformation decomposes input features into low-frequency structural components and high-frequency detail components [13]. The low-frequency branch mainly preserves global semantic and structural information, while the high-frequency branch captures fine-grained details, such as object boundaries, textures, and local contours. Therefore, introducing frequency-domain feature modeling into the fusion process provides a potential solution for alleviating the degradation of small-object representations during feature transmission.
Motivated by the above observations, this study develops a frequency-aware feature enhancement framework based on RT-DETR. Specifically, a Wavelet Frequency Unit (WFU) is incorporated into the multi-scale feature fusion stage of the RT-DETR neck. Through wavelet decomposition, the WFU separates structural information from high-frequency details and performs targeted enhancement on high-frequency components and low-frequency cross-scale features. This strategy improves the representation capability of object boundaries, textures, local contours, global structures, and contextual semantics, thereby enhancing the detection performance of small-scale objects.
The main contributions of this study are summarized as follows:
1.
A frequency-band enhancement and multi-scale fusion framework based on RT-DETR is introduced for object detection. To overcome the insufficient representation capability of small objects caused by limited pixel information, weak edges, and texture loss in autonomous driving scenarios, a frequency-aware feature enhancement strategy is integrated into the RT-DETR neck to improve small-object feature representation.
2.
A Wavelet Frequency Unit (WFU) is developed to decompose high-resolution feature maps into low-frequency structural components and high-frequency detail components through Haar wavelet transformation. This decomposition enables the separation of semantic structures and fine-grained details, reducing the loss of small-object information during conventional spatial-domain feature fusion.
3.
A dual-path enhancement strategy combining high-frequency detail refinement and low-frequency cross-scale fusion is proposed. In the high-frequency branch, residual enhancement and frequency attention mechanisms are employed to strengthen edge and texture representations of small objects. In the low-frequency branch, deeper semantic features are fused to improve the joint representation of object structures and contextual information.
4.
Extensive experiments are conducted on the KITTI and BDD100K datasets. Comparative experiments, ablation studies, and repeated evaluations are performed on the KITTI dataset, while small-object detection assessments and visualization analyses are conducted on both datasets to comprehensively validate the effectiveness and robustness of the proposed approach.

2. Related Work

This study adopts RT-DETR as the baseline detector and enhances its feature fusion capability by introducing wavelet-based feature decomposition. This section provides an overview of Transformer-based object detection approaches and discusses the application of wavelet transforms in visual recognition, establishing the theoretical motivation for the proposed framework.

2.1. Transformer-Based Object Detection Methods

Transformer-based object detection methods have emerged as an important research direction in the field of object detection. DETR formulates object detection as a set prediction problem and directly predicts object categories and bounding boxes through learnable object queries. This end-to-end paradigm eliminates several manually designed components used in traditional detectors, such as anchor generation, proposal extraction, and non-maximum suppression, thereby simplifying the overall detection pipeline. However, the original DETR relies heavily on global attention for feature interaction, resulting in slow convergence during training. Moreover, the extracted high-level semantic features often lack sufficient fine-grained details, which limits its performance in detecting small and multi-scale objects.
To improve the training efficiency and scale adaptability of DETR, Deformable DETR [14] introduces deformable attention, which performs feature interaction at a small set of key sampling locations on multiscale feature maps, thereby reducing the computational cost associated with global attention. DAB-DETR [15] represents object queries as dynamic anchor boxes, providing explicit positional priors for bounding-box prediction. DINO [16] improves the matching process through denoising training and query initialization, thereby alleviating training instability. Co-DETR [17] introduces a collaborative supervision mechanism to strengthen encoder feature learning and further improve detection performance.
In practical deployment scenarios, Transformer-based detectors often incur considerable computational overhead. RT-DETR simplifies the encoder and multiscale feature interaction process to reduce redundant computation, enabling end-to-end detection to meet real-time requirements. RT-DETRv2 [18] and LW-DETR [19] further reduce model complexity through improved training strategies and lightweight architectural designs. Although these methods enhance detection efficiency, their ability to exploit fine-grained information, such as edges and textures, remains limited.
The detection of small objects and objects embedded in complex backgrounds often depends heavily on local cues, including edges and textures. Although multiscale feature fusion enhances the complementary representation of features at different levels, fine-grained information is still susceptible to degradation during feature downsampling and cross-layer propagation. To address this limitation, the present study introduces a frequency-band enhancement mechanism into a Transformer-based detection framework and combines it with multiscale feature fusion to improve the representation of object details and scale variations.

2.2. Applications of Wavelet Transforms in Object Detection

Frequency-domain information can complement spatial-domain feature representations and enhance edges, textures, and weak-response regions. Consequently, frequency-domain modeling has received increasing attention in small-object detection. To address the challenges posed by densely distributed small objects and complex backgrounds, Zhang et al. proposed FFC-YOLO [20], which incorporates a frequency-aware module into the feature fusion process to strengthen small-object representations and reduce missed detections and false positives. Subsequent studies have also integrated frequency-domain enhancement into existing YOLO-series detectors. For example, Zhao [21] proposed an adaptive weighting and frequency-domain enhancement fusion method to improve the discriminability of small-object regions in complex backgrounds.
In addition to YOLO-based detectors, frequency-domain information has also been incorporated into Transformer-based detection frameworks. Freq-DETR [22] employs dual spatial- and frequency-domain branches to extract local spatial features and global frequency information. It further performs intra-scale interactions between high- and low-frequency components and uses an attention-guided feature pyramid for multiscale feature fusion. Its primary emphasis is on spatial–frequency collaboration and intra-scale frequency interaction. Ge et al. proposed VMC-DETR [23], which employs a frequency-domain heat conduction mechanism in the backbone to enhance local high-frequency textures. Multiscale feature aggregation and contextual attention are further used to improve information exchange among features at different scales. To address noise interference and rotated-object detection in remote sensing imagery, Yang et al. proposed WDARFNet [24]. This method uses the discrete wavelet transform to decompose features into different frequency components and combines channel selection, spatial selection, and multi-branch convolution to dynamically adjust the receptive field while selectively suppressing noisy high-frequency components.
Overall, existing frequency-domain detection methods improve small-object feature representations through spatial–frequency collaboration, high-frequency texture enhancement, frequency selection, and multiscale feature aggregation. However, most of these methods primarily emphasize the enhancement of local high-frequency information and pay insufficient attention to the complementary relationship between high-frequency details and low-frequency structural information. To address this issue, the proposed method introduces a discrete-wavelet-based frequency-band decoupling mechanism into the multiscale feature fusion stage of RT-DETR. The input features are decomposed into low-frequency structural components and directional high-frequency detail components. High-frequency detail enhancement and low-frequency cross-scale fusion are then performed separately, followed by feature reconstruction using the inverse wavelet transform. This design strengthens the joint representation of local details and global structures.

3. Method

This section presents the proposed detection network and its implementation, with particular emphasis on the overall network architecture and the design of the Wavelet Frequency Unit. To address the degradation of local structural and texture information associated with small objects during feature propagation, RT-DETR is adopted as the baseline network, and a frequency-aware feature enhancement module is introduced into its neck. By integrating high- and low-frequency feature decomposition, high-frequency detail enhancement, and low-frequency cross-scale fusion, the proposed method strengthens the joint representation of edge and texture details and global structural information.

3.1. Overall Network Architecture

To address the degradation of detailed information during cross-scale feature propagation in RT-DETR, this study develops an object detection network based on frequency-band enhancement and multiscale fusion, as illustrated in Figure 2. The proposed network is built upon RT-DETR and consists of a ResNet backbone [25], an improved neck, and the RT-DETR decoder. The backbone extracts hierarchical features at different spatial resolutions, whereas the decoder retains the original query decoding and prediction mechanisms to perform object classification and bounding-box regression. The primary modifications are introduced into the multiscale feature fusion stage of the neck.
Within the neck, the highest-level feature is first processed by the Attention-based Intra-scale Feature Interaction (AIFI) module for global semantic modeling and is subsequently propagated to the intermediate- and low-level features through a top-down pathway. To mitigate the loss of edge and texture information during this semantic propagation process, two Wavelet Frequency Units (WFUs) are introduced at the cross-scale fusion stages. These units are used to fuse the high-level and intermediate-level features and the intermediate-level and low-level features, respectively. At each fusion stage, the lateral feature with a relatively high spatial resolution at the current scale is denoted by X B , whereas the low-resolution semantic feature propagated from the deeper network layers is denoted by X s R B × C S × H S × W S .
Unlike conventional fusion strategies that directly align feature resolutions and concatenate feature channels, the WFU first applies Haar wavelet decomposition to X B , producing one low-frequency subband and three directional high-frequency subbands. The high-frequency branch enhances detailed information such as object edges and textures, whereas the low-frequency branch incorporates high-level semantic information from X S The processed frequency components are then reconstructed into a spatial-domain feature through the inverse wavelet transform. In this manner, the WFU preserves local structural information at the current scale while integrating high-level semantic information from deeper layers.
The reconstructed features generated by the two WFUs are subsequently fed into the bottom-up path aggregation network (PAN) to strengthen information exchange among features at different scales. Finally, the resulting multiscale features are passed to the RT-DETR decoder for object classification and localization.

3.2. High-Frequency Detail Enhancement

The edges, textures, and local contours of small objects are susceptible to degradation during feature downsampling and cross-scale propagation. To preserve such fine-grained information, a high-frequency enhancement branch is incorporated into the WFU to jointly model directional high-frequency wavelet responses.
Given a high-resolution input feature X b R B × C × H × W , a two-dimensional Haar wavelet transform [26] is applied to decompose it into a low-frequency subband a and three high-frequency subbands, h, v, and d, corresponding to the horizontal, vertical, and diagonal directions, respectively:
a , h , v , d = DWT X b ,
The discrete wavelet transform is implemented using four fixed 2 × 2 Haar filters through channel-wise grouped convolution. The convolution stride is set to 2, no padding is applied, and the filter coefficients remain fixed throughout training. Because the spatial dimensions of the input features are even, the dimensions of the decomposed subbands are
a , h , v , d R B × C × H × W , H = H 2 , W = W 2
The low-frequency subband a primarily preserves global structural information, whereas the three high-frequency subbands encode directional edge and texture responses.
To prevent premature mixing of directional information caused by direct summation, the three high-frequency subbands are concatenated along the channel dimension:
F H = Cat ( h , v , d )
Subsequently, a 1 × 1 convolution is used to compress the number of channels from 3 C to C, after which the feature is processed sequentially by the residual enhancement block and the high-frequency subband spatial attention module. The enhanced feature is then projected back to 3 C channels and fused with the original joint high-frequency feature through a residual connection:
F ˜ H = F H + ϕ e F A R B ϕ r F H
where ϕ r : 3 C C and ϕ e : C 3 C denote the channel-compression and channel-expansion operations, respectively. Both operations are implemented using 1 × 1 convolutions with a stride of 1 and no padding. Channel compression controls the computational cost of high-frequency feature modeling, whereas the outer residual connection preserves the original directional responses. Finally, the enhanced joint high-frequency feature is evenly split into three subbands along the channel dimension:
h ^ , v ^ , d ^ = Split F ^ H
where h ^ , v ^ , and d ^ have the same dimensions, B × C × H × W . The three enhanced high-frequency subbands are subsequently used for feature reconstruction through the inverse Haar wavelet transform.

3.2.1. Residual Enhancement Block

Let the channel-compressed high-frequency feature be defined as:
Z = ϕ r ( F H ) R B × C × H × W
The residual enhancement block consists of two 3 × 3 convolutional layers. Both layers have C input and output channels, a stride of 1, and a padding size of 1; therefore, the spatial dimensions of the feature remain unchanged. The first convolutional layer is followed by batch normalization and a SiLU activation function, whereas the second convolutional layer does not use normalization or an activation function. The computation is expressed as follows:
F RB = Z + Conv 3 × 3 ( 2 ) δ BN Conv 3 × 3 ( 1 ) ( Z )
where δ ( ) denotes the SiLU activation function. The convolutional operations capture local variations in edges and textures, whereas the residual connection preserves the original high-frequency information and stabilizes feature optimization. The module output satisfies:
F RB R B × C × H × W

3.2.2. High-Frequency Subband Spatial Attention

Local convolutional operations may be insufficient to capture spatially distant high-frequency responses. Therefore, a high-frequency subband spatial attention module is introduced after the residual enhancement block to model spatial correlations within the wavelet high-frequency features. This module operates on the spatial responses of the high-frequency subbands rather than directly assigning weights to Fourier-frequency components.
Given the input feature F RB R B × C × H × W , three 1 × 1 convolutions are used to generate the query, key, and value features:
Q = φ q ( F RB ) , K = φ k ( F RB ) , V = φ v ( F RB )
where all three convolutions have C input and output channels, a stride of 1, and no padding. Let N = H W The three features are then reshaped as follows:
Q , V R B × N × C , K R B × C × N
The attention matrix and the output feature are computed as follows:
A = Softmax Q K C , F FA = Reshape ( A V )
where, A R B × N × N , The Softmax operation is applied along the spatial-position dimension, and the scaling factor 1 C controls the numerical range of the dot-product values. The attention output is subsequently reshaped as: F F A R B × 3 C × H × W , After channel expansion and residual fusion, F H has B × 3 C × H × W channels. Following the original ordering of the high-frequency subbands, F H is split along the channel dimension as follows:
h ^ , v ^ , d ^ = Split F ^ H
where h , v , and d all have dimensions B × C × H × W . The three components serve as the horizontal, vertical, and diagonal high-frequency inputs, respectively, for the subsequent inverse Haar wavelet transform.

3.3. Multiscale Fusion and Feature Reconstruction

The high-frequency subbands primarily characterize object edges and textures, whereas the low-frequency subband preserves global contours and structural information. To supplement the low-frequency branch with deep semantic information, the low-frequency subband is further fused with the low-resolution semantic feature. Let the low-resolution input feature be defined as:
X s R B × C s × H s × W s
First, nearest-neighbor interpolation is applied to resize its spatial dimensions to H × W , matching those of the low-frequency subband a. The resized feature is then concatenated with a along the channel dimension. The concatenated feature is processed by two 1 × 1 convolutions for channel fusion. The first convolution is followed by batch normalization and a SiLU activation function, whereas the second convolution maps the number of output channels to C. The fused low-frequency subband is expressed as follows:
a ^ = a + ϕ l Cat a , Resize ( X s )
where ϕ l ( ) denotes the low-frequency channel transformation operation, and a has dimensions B × C × H × W . The residual connection introduces contextual semantic information from the low-resolution feature while preserving the original low-frequency structure.
After high-frequency enhancement and low-frequency fusion, the fused low-frequency subband and the three enhanced high-frequency components are concatenated along the channel dimension in the order of low frequency, horizontal high frequency, vertical high frequency, and diagonal high frequency.
F coef = Cat a ^ , h ^ , v ^ , d ^
where F c o e f R B × 4 C × H × W . This channel ordering is consistent with the subband arrangement used in the forward Haar wavelet decomposition. Finally, spatial feature reconstruction is performed using the inverse Haar wavelet transform:
F out = IWT F coef
The inverse transform employs fixed 2 × 2 Haar synthesis filters matched to those used in the forward decomposition, with a stride of 2 and zero padding, thereby restoring the feature to its original spatial resolution, F out R B × C × H × W . Consequently, the directional details enhanced by the high-frequency branch and the structural semantics fused by the low-frequency branch are jointly reconstructed in the spatial domain and used as the output of the current cross-scale fusion stage.

4. Experiments

4.1. Datasets and Data Splits

The KITTI dataset [27] is a widely used public benchmark for visual perception research in autonomous driving. It was collected using an instrumented vehicle in real-world road environments and covers a variety of traffic scenarios, including urban streets, residential areas, rural roads, and highways. The dataset contains traffic participants at different scales, such as vehicles, pedestrians, and cyclists. The KITTI 2D object detection benchmark consists of 7481 training images and 7518 test images. The original annotations include nine categories: Car, Van, Truck, Pedestrian, Person_sitting, Cyclist, Tram, Misc, and DontCare. In this study, the Misc and DontCare categories are excluded, and Person_sitting is merged into the Pedestrian category. Consequently, six detection categories are retained: Car, Van, Truck, Pedestrian, Cyclist, and Tram.
The experimental dataset is constructed from the 7481 annotated training images, which are divided into training, validation, and test sets at a ratio of 8:1:1. Because data partitioning and random initialization may affect detection performance [28,29], all comparison models use the same data split to ensure a fair evaluation.
To evaluate the applicability of the proposed method across different data distributions and complex road environments, additional experiments are conducted on the BDD100K dataset [30]. Owing to limited computational resources, an experimental subset containing 20,955 annotated images is selected from BDD100K. These images are also divided into training, validation, and test sets at a ratio of 8:1:1.
Because this study primarily focuses on traffic objects that occupy relatively small image regions, the commonly used object-scale definition is adopted. Specifically, an object whose annotated bounding-box area is smaller than 32 2 pixels is regarded as a small object [31].

4.2. Evaluation Metrics

Model performance is evaluated in terms of detection accuracy, model complexity, and inference efficiency. Detection accuracy is measured using precision (P), recall (R), AP 50 , and AP 50 : 95 . Small-object detection performance is evaluated using AP s and AR s Model complexity is quantified by the number of parameters, whereas inference efficiency is evaluated in frames per second (FPS). The average precision for small objects, AP s , and the average recall for small objects, AR s , are adopted as scale-specific evaluation metrics. AP s is calculated for small objects over IoU thresholds ranging from 0.50 to 0.95 in increments of 0.05 [31]. It provides a comprehensive evaluation of the model’s classification and localization performance for small objects. Similarly, AR s is calculated using the same object-scale definition and IoU threshold range and measures the model’s overall ability to detect small objects. Based on the matching results between model predictions and ground-truth annotations, precision and recall are defined as follows:
P = T P T P + F P , R = T P T P + F N .
where T P , F P , and F N denote the numbers of true positives, false positives, and false negatives, respectively. Precision reflects the reliability of the predicted detections, whereas recall measures the proportion of ground-truth objects successfully detected by the model.
AP i = 0 1 P i ( R ) d R
where A P i represents the average precision of the i-th category. Assuming that the dataset contains C detection categories, the mean average precision (mAP) is calculated as follows:
mAP = 1 C i = 1 C AP i
Specifically, m A P 0.5 denotes the mean average precision across all categories under an IoU threshold of 0.5, which mainly evaluates the model’s object detection and classification performance. m A P 0.5 : 0.95 computes the average mAP over IoU thresholds from 0.50 to 0.95 with a step size of 0.05, providing a more comprehensive assessment with stricter requirements on bounding box localization accuracy.
The number of parameters represents the total number of learnable parameters in the model and is used to characterize the model complexity. FPS indicates the number of images processed by the model per second and is adopted to evaluate the inference speed. All models are evaluated under the same input resolution, data split, and testing environment to ensure the comparability of experimental results.
To evaluate the stability of multiple training runs, this study employs the mean, sample standard deviation, and 95% confidence interval for statistical analysis. Assuming that the model is trained independently n times and the result of the i-th experiment is x i , the mean and sample standard deviation are calculated as follows:
x ¯ = 1 n i = 1 n x i , s = 1 n 1 i = 1 n ( x i x ¯ ) 2 .
Considering the limited number of repeated experiments, the 95% confidence interval of the mean is calculated based on the Student’s t-distribution:
CI 95 % = x ¯ ± t 0.975 , n 1 s n
where t 0.975 , n 1 represents the two-tailed critical value of the Student’s t-distribution with n 1 degrees of freedom. The standard deviation is used to reflect the dispersion of results across different training runs, while the confidence interval characterizes the uncertainty of the estimated average performance.

4.3. Experimental Settings

The experiments were conducted on the Ubuntu 18.04 operating system. Model training and testing were implemented based on the PyTorch 1.12.1 deep learning framework. To reduce the impact of environmental variations on the experimental results, all models were trained and evaluated under the same hardware and software configurations.
During the training and validation stages, the input image size was uniformly set to 640 × 640, and the batch size was set to 16. All models were trained for 300 epochs, with an initial learning rate of 0.005 and a final learning rate set to 0.01 times the initial learning rate. The AdamW optimizer [32] was adopted, with the weight decay coefficient set to 0.0005. A warmup strategy was employed during training, with the warmup epoch set to 3, the initial warmup momentum set to 0.8, and the warmup bias learning rate set to 0.1. The bounding box regression loss weight was set to 7.5, while the remaining training parameters were kept consistent with those of the baseline model.

4.4. Comparative Experiments

To verify the effectiveness of the proposed method, comparisons were conducted on the KITTI dataset with Faster R-CNN [33], YOLOv3-tiny [34], YOLOv5n [35], YOLOv7-tiny [36], YOLOv8n [37], GOLD-YOLO [38], DINO [16], YOLOv10n [39], YOLOv11n [37], and RT-DETR. All models were evaluated using the same data split, input resolution, and evaluation metrics to ensure the fairness of the experimental comparison. The quantitative comparison results are presented in Table 1.
Table 1 presents the quantitative comparison results of different detection methods on the KITTI dataset. The proposed method achieves a Precision of 93.5%, mAP@0.5 of 95.5%, and mAP@0.5:0.95 of 69.7%, which improve by 3.7%, 1.8%, and 1.1%, respectively, compared with the RT-DETR baseline. The improvement in mAP@0.5 indicates that the proposed method enhances the accuracy of object detection and category recognition. The increase in mAP@0.5:0.95 demonstrates that the proposed method achieves higher overall localization accuracy across multiple IoU thresholds, especially under stricter IoU requirements.
The Recall of the proposed method is 91.1%, which is 1.1% lower than that of RT-DETR, indicating that some challenging objects are still missed during detection. However, considering the overall improvement in Precision and mAP, the proposed model mainly reduces false positives and improves the comprehensive detection performance under different confidence thresholds. Further optimization will be conducted to achieve a better balance between detection accuracy and recall capability.
Regarding model complexity, the number of parameters of the proposed method increases from 30.9 M to 31.8 M, with an increment of only 0.9 M. Meanwhile, the FPS decreases from 95.6 to 92.8, corresponding to a reduction of 2.9%, while still satisfying the requirements of real-time detection. By introducing a small number of additional parameters and incurring a minor speed loss, the proposed method achieves significant improvements in Precision and mAP@0.5, demonstrating a favorable balance between accuracy and efficiency.
To further analyze the detection performance of the proposed method for different categories of traffic objects, the AP values of each category were calculated, and the results are presented in Table 2. Overall, the proposed method achieves performance improvements in five out of the six detection categories, with only a slight decrease in the Van category. Specifically, the AP values of the Car, Truck, Pedestrian, Cyclist, and Tram categories reach 98.1%, 95.4%, 94.2%, 92.0%, and 98.5%, respectively, representing improvements of 1.1, 1.1, 2.1, 1.9, and 5.0 percentage points compared with RT-DETR.
Table 2 summarizes the mAP@0.5 results for each category. Compared with RT-DETR, the proposed method achieves better detection performance in five categories. Among them, the Tram category obtains the most significant improvement, with mAP@0.5 increasing from 93.5% to 98.5%, representing a gain of 5.0 percentage points. The Pedestrian and Cyclist categories improve by 2.1% and 1.9%, respectively, while the Car and Truck categories both achieve an improvement of 1.1%. These results demonstrate that the proposed method improves the detection performance of various traffic objects, particularly for categories that rely heavily on edge, contour, and local feature information.
To reduce the impact of random initialization and training fluctuations on the experimental results, three different random seeds were adopted to independently train RT-DETR and the proposed model. The mean, standard deviation, and 95% confidence interval of each evaluation metric were calculated. As shown in Table 3, the proposed method achieves higher average values than RT-DETR in terms of Precision, mAP@0.5, mAP@0.5:0.95, AP s , and AR s . Moreover, the standard deviations of all metrics are below 0.4 percentage points, indicating that the model maintains relatively consistent performance across the three independent experiments.
For small-object detection, the AP s of the proposed method increases from 46.8% to 49.5%, representing an improvement of 2.7 percentage points, while AR s increases from 58.1% to 60.4%, with a gain of 2.3 percentage points. These results demonstrate that the proposed method can simultaneously improve the detection accuracy and average recall capability of small objects. Further comparison of the 95% confidence intervals shows that the proposed method achieves overall higher confidence intervals than RT-DETR in terms of Precision, mAP@0.5, mAP@0.5:0.95, and AP s , indicating that the performance improvements remain consistent under different random seeds. For AR s , the proposed method also obtains a higher mean value and smaller performance fluctuation, further demonstrating the stability of its improvement in small-object recall capability.
To evaluate the adaptability of the proposed method under different data distributions and complex road scenarios, training and testing experiments were conducted on the BDD100K dataset. As shown in Table 4, the proposed method achieves mAP@0.5 and mAP@0.5:0.95 values of 51.7% and 29.7%, respectively, improving by 1.7 and 1.1 percentage points compared with the RT-DETR baseline. These results demonstrate that the proposed frequency-band enhancement and multi-scale fusion strategies remain effective on the BDD100K dataset.
Compared with RT-DETR, as shown in Table 5, the proposed method improves AP s from 14.8% to 16.4%, with an increase of 1.6 percentage points, and improves AR s from 27.9% to 29.6%, with a gain of 1.7 percentage points. This result is consistent with the experimental trend observed on the KITTI dataset, indicating that the proposed frequency-band enhancement strategy can improve small-object detection accuracy and average recall capability to some extent under different data distributions.
Across the three repeated experiments, the proposed method achieves mAP 50 and mAP 50 : 95 values of 51.7 ± 0.2 % and 29.7 ± 0.2 % , respectively, improving by 1.7 and 1.1 percentage points compared with RT-DETR. The corresponding 95% confidence intervals are overall higher than those of the baseline, indicating that the improvement in overall detection accuracy remains relatively consistent under different random seeds.

4.5. Ablation Experiments

To further validate the effectiveness of each proposed improvement module, ablation experiments were conducted based on the RT-DETR baseline model. In these experiments, A denotes the residual enhancement module (RB), which is designed to strengthen the representation of local features in high-frequency subbands. B denotes the high-frequency subband spatial attention module (FA), which adaptively adjusts the responses of different high-frequency information. C denotes the low-frequency cross-scale fusion module, which integrates low-frequency structural information with deep semantic features. Ours represents the complete model incorporating all three components (A + B + C).
As shown in Table 6, after introducing the residual enhancement module A individually, the Precision and AP 50 of the model are improved by 1.5 and 0.8 percentage points, respectively, indicating that this module enhances the representation of high-frequency detail features and improves object recognition accuracy. The high-frequency subband spatial attention module B and the low-frequency cross-scale fusion module C also bring performance improvements. Among them, module C achieves more significant gains in Precision and mAP 50 when used individually, demonstrating that the fusion of low-frequency structural information and deep semantic features contributes to improved object representation.
In the module combination experiments, the proposed components exhibit certain synergistic effects. The A+C combination improves mAP 50 : 95 by 0.7 percentage points while maintaining a similar Recall. The B+C combination increases mAP 50 and mAP 50 : 95 by 1.6 and 0.9 percentage points, respectively, while preserving the baseline Recall, demonstrating better overall performance. The A+B combination also further improves Precision and mAP 50 , indicating that residual enhancement and frequency attention provide complementary advantages in high-frequency feature modeling.
When all three modules are introduced simultaneously, the complete model achieves the highest performance among all ablation configurations, with Precision, mAP 50 , and mAP 50 : 95 reaching 93.5%, 95.5%, and 69.7%, respectively. Compared with the baseline model, these three metrics are improved by 3.7, 1.8, and 1.1 percentage points, respectively. These results demonstrate that high-frequency detail enhancement, frequency attention, and low-frequency cross-scale fusion improve feature representation from different perspectives and further enhance detection accuracy and localization performance when jointly applied.

4.6. Visualization Analysis

To provide a more intuitive comparison of different detection methods, several representative images from the KITTI dataset were selected for visualization. The selected samples contain various road objects, including vehicles, pedestrians, cyclists, and complex background conditions, with the detection results presented in Figure 3. As illustrated in the figure, YOLOv5 and YOLOv8 achieve satisfactory detection performance for nearby and large-scale objects. However, these methods remain prone to missing small targets and heavily occluded objects, particularly in scenes containing dense small-scale objects or complex visual interference.
Benefiting from global feature representation, RT-DETR achieves more stable detection results in complicated road environments and shows stronger capability in identifying distant objects. The visualization results indicate that the proposed method further improves the detection capability for small-scale targets. Nevertheless, a limited number of missed detections still occur in challenging cases involving extremely small objects, severe occlusion, or crowded object distributions. This observation is consistent with the slight reduction in Recall reported in Table 2.
To further evaluate the effectiveness of the proposed detector under different road conditions, Figure 4 presents visualization results from the KITTI dataset. The test samples include diverse driving scenarios, such as urban roads and suburban environments. It can be observed that the proposed method consistently detects major traffic participants, including vehicles, pedestrians, and cyclists, under various conditions. For small-scale objects, the detector is still capable of producing relatively complete detection results, with most objects being correctly classified and the predicted bounding boxes closely matching the actual object locations.
In addition, Figure 5 provides visualization results on the BDD100K dataset to assess the adaptability of the proposed method in more complex driving scenarios. As shown in the figure, the model can accurately detect vehicles with different scales and maintain reliable performance under dense traffic conditions. Multiple adjacent vehicles can still be distinguished effectively, indicating that the proposed method has a certain degree of robustness against object occlusion and complicated backgrounds.
For distant vehicles and pedestrians with limited pixel resolution, the model is also able to generate appropriate bounding boxes. This suggests that the proposed frequency enhancement and multi-scale fusion strategies effectively preserve edge information and local structural details of small targets. Furthermore, under challenging conditions such as rainy weather, illumination changes, and windshield reflections, the model maintains stable detection performance, demonstrating its potential for practical autonomous driving applications.

5. Conclusions

To overcome the limited detection capability of small-scale objects in autonomous driving scenarios, this study presents a frequency-enhanced and multi-scale fusion object detector based on RT-DETR. The proposed approach incorporates a Wavelet Frequency Unit into the cross-scale feature fusion stage of the Neck. Specifically, the input feature maps are decomposed into low-frequency structural information and high-frequency detail components using Haar wavelet transformation. In the high-frequency pathway, a residual enhancement block combined with a spatial attention mechanism is introduced to strengthen object boundaries, texture patterns, and local contour features. Meanwhile, the low-frequency pathway integrates structural information with deeper semantic features through cross-scale fusion, providing additional contextual representations. Finally, an inverse wavelet transformation is applied to reconstruct the enhanced feature maps, thereby improving the feature representation ability of small-scale targets.
Comprehensive experiments on the KITTI dataset demonstrate that the proposed method achieves Precision, AP50, and AP50:95 values of 93.5%, 95.5%, and 69.7%, respectively, outperforming RT-DETR by 3.7, 1.8, and 1.1 percentage points. Furthermore, APs and ARs are increased from 46.8% and 58.1% to 49.5% and 60.4%, respectively, indicating that the proposed method can effectively enhance both small-object detection accuracy and recall performance. On the BDD100K dataset, the proposed detector achieves an AP50 of 51.7%, while APs and ARs improve by 1.6 and 1.7 percentage points, respectively. These results demonstrate the effectiveness and adaptability of the proposed method across diverse road environments and data distributions.
Despite the improvements in Precision and average precision, the proposed method still exhibits certain limitations. The overall Recall decreases from 92.2% to 91.1%, suggesting a remaining balance between precision and recall under the current confidence threshold. Additionally, the introduction of the wavelet frequency unit increases the model parameters from 30.9 M to 31.8 M and reduces the inference speed from 95.6 FPS to 92.8 FPS, resulting in additional computational costs. Future research will focus on improving the efficiency of the frequency enhancement module and enhancing the detection capability of challenging targets through multi-scale recall analysis, confidence calibration strategies, and lightweight network optimization. Moreover, further studies will investigate complex scenarios, including adverse weather conditions, severe occlusion, and multimodal information fusion, to improve the robustness and practical deployment capability of autonomous driving systems.

Author Contributions

Conceptualization, Z.D. and Y.Q.; methodology, Z.D.; software, Z.D.; validation, Z.D. and Y.L.; formal analysis, Z.D.; investigation, Y.Q.; resources, Z.D. and Y.Q.; data curation, Z.D.; writing—original draft preparation, Z.D.; writing—review and editing, Z.D. and Y.Q.; visualization, Z.D.; supervision, Y.Q. and Y.L.; project administration, Y.L.; funding acquisition, Y.Q. and Y.L. All authors have read and agreed to the published version of the manuscript.

Funding

This research was supported by the National Natural Science Foundation of China (Grant Nos. 61971007 and 61571013), and the North China University of Technology Research Start-up Fund Project (No. 11005136025XN076-043).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The original contributions presented in this study are included in the article. Further inquiries can be directed to the corresponding author.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Liu, F.; Lu, Z.; Lin, X. Vision-based environmental perception for autonomous driving. Proc. Inst. Mech. Eng. Part D J. Automob. Eng. 2025, 239, 39–69. [Google Scholar] [CrossRef] [Scilit]
  2. Alaba, S.Y.; Ball, J.E. Deep learning-based image 3-D object detection for autonomous driving. IEEE Sens. J. 2023, 23, 3378–3394. [Google Scholar] [CrossRef] [Scilit]
  3. Pravallika, A.; Hashmi, M.F.; Gupta, A. Deep learning frontiers in 3D object detection: A comprehensive review for autonomous driving. IEEE Access 2024, 12, 173936–173980. [Google Scholar] [CrossRef] [Scilit]
  4. Khan, S.; Naseer, M.; Hayat, M.; Zamir, S.W.; Khan, F.S.; Shah, M. Transformers in vision: A survey. ACM Comput. Surv. 2022, 54, 1–41. [Google Scholar] [CrossRef] [Scilit]
  5. Hassija, V.; Palanisamy, B.; Chatterjee, A.; Mandal, A.; Chakraborty, D.; Pandey, A.; Chalapathi, G.S.S.; Kumar, D. Transformers for vision: A survey on innovative methods for computer vision. IEEE Access 2025, 13, 95496–95523. [Google Scholar] [CrossRef] [Scilit]
  6. Jamil, S.; Piran, M.J.; Kwon, O.-J. A comprehensive survey of transformers for computer vision. Drones 2023, 7, 287. [Google Scholar] [CrossRef] [Scilit]
  7. Thisanke, H.; Deshan, C.; Chamith, K.; Seneviratne, S.; Vidanaarachchi, R.; Herath, D. Semantic segmentation using vision transformers: A survey. Eng. Appl. Artif. Intell. 2023, 126, 106669. [Google Scholar] [CrossRef] [Scilit]
  8. Carion, N.; Massa, F.; Synnaeve, G.; Usunier, N.; Kirillov, A.; Zagoruyko, S. End-to-end object detection with transformers. In Proceedings of the European Conference on Computer Vision; Springer: Cham, Switzerland, 2020; pp. 213–229. [Google Scholar]
  9. Zhao, Y.; Lv, W.; Xu, S.; Wei, J.; Wang, G.; Dang, Q.; Liu, Y.; Chen, J. DETRs beat YOLOs on real-time object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; IEEE: Piscataway, NJ, USA, 2024; pp. 16965–16974. [Google Scholar]
  10. Kong, Y.; Shang, X.; Jia, S. Drone-DETR: Efficient small object detection for remote sensing image using enhanced RT-DETR model. Sensors 2024, 24, 5496. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  11. Madan, M.; Reich, C. Strengthening small object detection in adapted RT-DETR through robust enhancements. Electronics 2025, 14, 3830. [Google Scholar] [CrossRef] [Scilit]
  12. Zhang, Y.; Zhang, T.; Wu, C.; Tao, R. Multi-scale spatiotemporal feature fusion network for video saliency prediction. IEEE Trans. Multimed. 2023, 26, 4183–4193. [Google Scholar] [CrossRef] [Scilit]
  13. Cheng, J.; Liu, H.; Liu, T.; Wang, F.; Li, H. Remote sensing image fusion via wavelet transform and sparse representation. ISPRS J. Photogramm. Remote Sens. 2015, 104, 158–173. [Google Scholar] [CrossRef] [Scilit]
  14. Zhu, X.; Su, W.; Lu, L.; Li, B.; Wang, X.; Dai, J. Deformable DETR: Deformable transformers for end-to-end object detection. arXiv 2020, arXiv:2010.04159. [Google Scholar]
  15. Liu, S.; Li, F.; Zhang, H.; Yang, X.; Qi, X.; Su, H.; Zhu, J.; Zhang, L. DAB-DETR: Dynamic anchor boxes are better queries for DETR. arXiv 2022, arXiv:2201.12329. [Google Scholar]
  16. Zhang, H.; Li, F.; Liu, S.; Zhang, L.; Su, H.; Zhu, J.; Ni, L.M.; Shum, H.-Y. DINO: DETR with improved denoising anchor boxes for end-to-end object detection. arXiv 2022, arXiv:2203.03605. [Google Scholar]
  17. Zong, Z.; Song, G.; Liu, Y. DETRs with collaborative hybrid assignments training. In Proceedings of the IEEE/CVF International Conference on Computer Vision; IEEE: Piscataway, NJ, USA, 2023; pp. 6748–6758. [Google Scholar]
  18. Lv, W.; Zhao, Y.; Chang, Q.; Huang, K.; Wang, G.; Liu, Y. RT-DETRv2: Improved baseline with bag-of-freebies for real-time detection transformer. arXiv 2024, arXiv:2407.17140. [Google Scholar]
  19. Chen, Q.; Su, X.; Zhang, X.; Wang, J.; Chen, J.; Shen, Y.; Han, C.; Chen, Z.; Xu, W.; Li, F.; et al. LW-DETR: A transformer replacement to YOLO for real-time detection. arXiv 2024, arXiv:2406.03459. [Google Scholar]
  20. Zhang, J.; Huang, X. FFC-YOLO: A SAR ship detection network with enhanced feature representation and dynamic cross-scale fusion. Eng. Res. Express 2025, 7, 025233. [Google Scholar] [CrossRef] [Scilit]
  21. Zhao, Y. Research on adaptive weight and frequency domain enhancement fusion method for small target detection. In Proceedings of the 2024 IEEE 2nd International Conference on Electrical, Automation and Computer Engineering (ICEACE); IEEE: Piscataway, NJ, USA, 2024; pp. 186–190. [Google Scholar]
  22. Chen, J.; Liu, N.; Sun, H.; Wang, Y. Freq-DETR: Frequency-aware transformer for real-time small object detection in unmanned aerial vehicle imagery. Expert Syst. Appl. 2025, 298, 129710. [Google Scholar] [CrossRef] [Scilit]
  23. Ge, X.; Qi, L.; Yan, Q.; Sun, J.; Zhu, Y.; Zhang, Y. Enhancing real-time aerial image object detection with high-frequency feature learning and context-aware fusion. Remote Sens. 2025, 17, 1994. [Google Scholar] [CrossRef] [Scilit]
  24. Yang, J.; Zhou, L.; Ju, Y. WDARFNet: A wavelet-domain adaptive receptive field network for improved oriented object detection in remote sensing. Appl. Sci. 2025, 15, 7035. [Google Scholar] [CrossRef] [Scilit]
  25. He, K.; Zhang, X.; Ren, S.; Sun, J. Deep residual learning for image recognition. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR); IEEE: Piscataway, NJ, USA, 2016; pp. 770–778. [Google Scholar]
  26. Mallat, S.G. A theory for multiresolution signal decomposition: The wavelet representation. IEEE Trans. Pattern Anal. Mach. Intell. 1989, 11, 674–693. [Google Scholar] [CrossRef] [Scilit]
  27. Geiger, A.; Lenz, P.; Stiller, C.; Urtasun, R. Vision meets robotics: The KITTI dataset. Int. J. Robot. Res. 2013, 32, 1231–1237. [Google Scholar] [CrossRef] [Scilit]
  28. Wang, S.; Zhang, E.-L.; Hong, R.-L.; Kim, J. An enhanced YOLOv10 framework for small-object safety helmet detection on construction sites. Sci. Rep. 2026. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  29. Wang, S.; Kim, H.; Yeo, J.; Kim, J. YOLOv10-based multi-scale variant object detection for multi-category PPE non-compliance monitoring on construction sites. Sci. Rep. 2026, 16, 24591. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  30. Yu, F.; Chen, H.; Wang, X.; Xian, W.; Chen, Y.; Liu, F.; Madhavan, V.; Darrell, T. BDD100K: A diverse driving dataset for heterogeneous multitask learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR); IEEE: Piscataway, NJ, USA, 2020; pp. 2633–2642. [Google Scholar]
  31. Lin, T.-Y.; Maire, M.; Belongie, S.; Hays, J.; Perona, P.; Ramanan, D.; Dollár, P.; Zitnick, C.L. Microsoft COCO: Common objects in context. In European Conference on Computer Vision (ECCV); Springer International Publishing: Cham, Switzerland, 2014; pp. 740–755. [Google Scholar]
  32. Loshchilov, I.; Hutter, F. Decoupled weight decay regularization. arXiv 2017, arXiv:1711.05101. [Google Scholar]
  33. Ren, S.; He, K.; Girshick, R.; Sun, J. Faster R-CNN: Towards real-time object detection with region proposal networks. IEEE Trans. Pattern Anal. Mach. Intell. 2016, 39, 1137–1149. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  34. Redmon, J.; Farhadi, A. YOLOv3: An incremental improvement. arXiv 2018, arXiv:1804.02767. [Google Scholar]
  35. Jocher, G.; Stoken, A.; Borovec, J.; Liu, C.; Hogan, A.; Diaconu, L.; Poznanski, J.; Yu, L.; Rai, P.; Ferriday, R.; et al. Ultralytics/yolov5: v2.0. Zenodo. 2020. Available online: https://ui.adsabs.harvard.edu/abs/2020zndo...3958273J/abstract (accessed on 19 August 2026).
  36. Wang, C.-Y.; Bochkovskiy, A.; Liao, H.-Y.M. YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR); IEEE: Piscataway, NJ, USA, 2023; pp. 7464–7475. [Google Scholar]
  37. Sapkota, R.; Karkee, M. Ultralytics YOLO evolution: An overview of YOLO26, YOLO11, YOLOv8 and YOLOv5 object detectors for computer vision and pattern recognition. arXiv 2025, arXiv:2510.09653. [Google Scholar]
  38. Wang, C.; He, W.; Nie, Y.; Guo, J.; Liu, C.; Wang, Y.; Han, K. Gold-YOLO: Efficient object detector via gather-and-distribute mechanism. In Advances in Neural Information Processing Systems (NeurIPS); Neural Information Processing Systems Foundation, Inc.: San Diego, CA, USA, 2023; Volume 36, pp. 51094–51112. [Google Scholar]
  39. Wang, A.; Chen, H.; Liu, L.; Chen, K.; Lin, Z.; Han, J.; Ding, G. YOLOv10: Real-time end-to-end object detection. In Advances in Neural Information Processing Systems (NeurIPS); Neural Information Processing Systems Foundation, Inc.: San Diego, CA, USA, 2024; Volume 37, pp. 107984–108011. [Google Scholar]
Figure 1. Small-scale objects in autonomous driving scenarios and their corresponding enlarged views.
Figure 1. Small-scale objects in autonomous driving scenarios and their corresponding enlarged views.
Jimaging 12 00447 g001
Figure 2. Architecture of the proposed improved model.
Figure 2. Architecture of the proposed improved model.
Jimaging 12 00447 g002
Figure 3. Detection results of different algorithms on the KITTI dataset (from left to right: YOLOv5, YOLOv8, YOLOv10, RT-DETR, and Ours).
Figure 3. Detection results of different algorithms on the KITTI dataset (from left to right: YOLOv5, YOLOv8, YOLOv10, RT-DETR, and Ours).
Jimaging 12 00447 g003
Figure 4. Detection results in different scenarios on the KITTI dataset.
Figure 4. Detection results in different scenarios on the KITTI dataset.
Jimaging 12 00447 g004
Figure 5. Detection results of different scenarios on the BDD100K dataset.
Figure 5. Detection results of different scenarios on the BDD100K dataset.
Jimaging 12 00447 g005
Table 1. Performance comparison of different object detection methods on the KITTI test set.
Table 1. Performance comparison of different object detection methods on the KITTI test set.
ModelP (%)R (%)mAP@0.5 (%)mAP@0.5:0.95 (%)Parameters (M)FPS
Faster-RCNN82.673.472.843.041.318.7
YOLOv3-tiny85.172.275.753.08.5154.7
YOLOv5n87.077.584.053.21.9125.4
YOLOv7-tiny88.979.086.845.16.2104.7
YOLOv8n89.280.787.557.33.1135.0
GOLD-YOLO90.881.688.659.835.6118.4
DINO89.581.288.759.423.087.2
YOLOv10n90.481.688.560.82.3126.3
YOLOv11n91.882.089.561.52.6134.5
RT-DETR89.8 ± 0.392.2 ± 0.293.7 ± 0.268.6 ± 0.230.995.6
Ours93.5 ± 0.291.1 ± 0.395.5 ± 0.269.7 ± 0.231.892.8
Table 2. Detection performance comparison of different methods on different categories.
Table 2. Detection performance comparison of different methods on different categories.
ModelCarVanTruckPedestrianCyclistTram
Faster-RCNN81.372.068.570.573.870.7
YOLOv3-tiny82.876.072.572.575.475.0
YOLOv5n91.581.879.285.386.679.6
YOLOv7-tiny94.284.781.388.888.183.7
YOLOv8n95.185.382.490.289.482.6
GOLD-YOLO96.286.883.591.290.483.5
DINO96.886.182.991.890.783.9
YOLOv10n97.185.682.191.690.883.3
YOLOv11n97.487.083.892.291.185.5
RT-DETR97.095.294.392.190.193.5
Ours98.194.895.494.292.098.5
Table 3. Statistical results of repeated experiments between RT-DETR and the proposed method on the KITTI dataset.
Table 3. Statistical results of repeated experiments between RT-DETR and the proposed method on the KITTI dataset.
MetricRT-DETR (Mean ± SD)Ours (Mean ± SD)95% CI of RT-DETR95% CI of Ours
P (%)89.8 ± 0.393.5 ± 0.2[89.05, 90.55][93.00, 94.00]
R (%)92.2 ± 0.291.1 ± 0.3[91.70, 92.70][90.35, 91.85]
mAP@0.5 (%)93.7 ± 0.295.5 ± 0.2[93.20, 94.20][95.00, 96.00]
mAP@0.5:0.95 (%)68.6 ± 0.269.7 ± 0.2[68.10, 69.10][69.20, 70.20]
APs (%)46.8 ± 0.449.5 ± 0.3[45.81, 47.79][48.76, 50.24]
ARs (%)58.1 ± 0.360.4 ± 0.2[57.36, 58.84][59.90, 60.90]
Table 4. Performance comparison of different methods on the BDD100K dataset.
Table 4. Performance comparison of different methods on the BDD100K dataset.
ModelParameters (M)FPSmAP@0.5 (%)mAP@0.5:0.95 (%)
Faster-RCNN41.318.747.926.5
YOLOv3-tiny8.5154.046.725.9
YOLOv5n1.9125.449.526.2
YOLOv7-tiny6.2104.750.729.1
YOLOv8n3.1135.051.228.7
RT-DETR30.995.650.028.6
Ours31.892.851.729.7
Table 5. Statistical results of repeated experiments between RT-DETR and the proposed method on the BDD100K dataset.
Table 5. Statistical results of repeated experiments between RT-DETR and the proposed method on the BDD100K dataset.
MetricRT-DETR (Mean ± SD)Ours (Mean ± SD)95% CI of RT-DETR95% CI of Ours
mAP 50 ( % ) 50.0 ± 0.351.7 ± 0.2[49.25, 50.75][51.20, 52.20]
mAP 50 : 95 ( % ) 28.6 ± 0.229.7 ± 0.2[28.10, 29.10][29.20, 30.20]
AP s ( % ) 14.8 ± 0.316.4 ± 0.3[14.05, 15.55][15.65, 17.15]
AR s ( % ) 27.9 ± 0.429.6 ± 0.3[26.91, 28.89][28.85, 30.35]
Table 6. Ablation study results of the proposed method on the KITTI dataset.
Table 6. Ablation study results of the proposed method on the KITTI dataset.
ModelP (%)R (%)mAP@0.5 (%)mAP@0.5:0.95 (%)
RT-DETR89.892.293.768.6
RT-DETR+A91.391.894.568.4
RT-DETR+B92.191.694.869.2
RT-DETR+C92.891.495.169.0
RT-DETR+A+B92.591.695.068.8
RT-DETR+A+C93.192.195.169.3
RT-DETR+B+C92.992.295.369.5
Ours93.591.195.569.7
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Dai, Z.; Qiu, Y.; Lu, Y. An Object Detection Method Based on Frequency-Band Enhancement and Multi-Scale Fusion. J. Imaging 2026, 12, 447. https://doi.org/10.3390/jimaging12090447

AMA Style

Dai Z, Qiu Y, Lu Y. An Object Detection Method Based on Frequency-Band Enhancement and Multi-Scale Fusion. Journal of Imaging. 2026; 12(9):447. https://doi.org/10.3390/jimaging12090447

Chicago/Turabian Style

Dai, Zhenzhao, Yongsheng Qiu, and Yuanyao Lu. 2026. "An Object Detection Method Based on Frequency-Band Enhancement and Multi-Scale Fusion" Journal of Imaging 12, no. 9: 447. https://doi.org/10.3390/jimaging12090447

APA Style

Dai, Z., Qiu, Y., & Lu, Y. (2026). An Object Detection Method Based on Frequency-Band Enhancement and Multi-Scale Fusion. Journal of Imaging, 12(9), 447. https://doi.org/10.3390/jimaging12090447

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop