Open Access
ARTICLE
Direction-Curvature Aware Feature Integration for Robust Lane Detection
1 College of Computer Science, Chongqing University, Chongqing, China
2 Department of Software Engineering, Daffodil International University, Dhaka, Bangladesh
3 Center for Image and Vision Computing, COE for Artificial Intelligence, Faculty of Information Science & Technology, Multimedia University, Jalan Ayer Keroh Lama, Melaka, Malaysia
4 Department of Computer Science, COMSATS University Islamabad, Islamabad, Pakistan
* Corresponding Authors: Yunfie Yin. Email: ; Kah Ong Michael Goh. Email:
; S. M. Hasan Mahmud. Email:
Computers, Materials & Continua 2026, 89(1), 48 https://doi.org/10.32604/cmc.2026.083456
Received 04 April 2026; Accepted 09 May 2026; Issue published 13 August 2026
Abstract
Robust lane detection is a fundamental perception task for autonomous driving and Advanced Driver Assistance Systems. However, it remains challenging in real-world environments due to degraded lane markings, complex road topologies, occlusions, and adverse illumination conditions. This work aims to improve lane detection robustness by explicitly modeling lane geometric properties while preserving end-to-end efficiency. We propose a direction-curvature aware lane detection framework that integrates a novel Direction-Curvature Aware (DCA) attention module into an anchor-based architecture. The DCA module enables tangent-aligned feature aggregation guided by learned direction fields and curvature-consistent attention. In addition, we introduce a direction-aware optimization objective termed Directional Lane IoU (DLIoU) to enforce directional consistency between predicted and ground-truth lanes during training. Extensive experiments on the CULane and TuSimple benchmarks demonstrate that the proposed method consistently outperforms state-of-the-art approaches, achieving notable improvements on CULane under challenging conditions including occlusion, strong curvature, shadows, and night-time scenes, and consistent gains on TuSimple, while maintaining competitive inference speed. These results confirm that explicitly incorporating direction and curvature information into both feature learning and optimization leads to more accurate and robust lane detection in complex driving environments.Keywords
Lane detection estimates the geometric structure and spatial layout of lane markings and is a core perception module for autonomous driving and Advanced Driver Assistance Systems (ADAS). Reliable lane perception is essential for lane keeping and safety-critical planning and control in dynamic traffic environments [1]. Despite steady progress, robust lane detection remains difficult in real-world settings: markings are often degraded, partially missing, or visually ambiguous due to low illumination (tunnels), dense-traffic occlusions, complex intersection topologies, and appearance degradation from shadows, glare, and worn road surfaces [2–4]. Deep learning (DL), particularly Convolutional Neural Networks (CNNs), has significantly advanced lane detection accuracy and real-time performance [4–6]. However, robustness under complex environments remains limited, largely due to insufficient joint modeling of lane geometry and long-range contextual dependencies. Specifically, segmentation-based methods are sensitive to occlusions and illumination changes due to their reliance on dense pixel-wise predictions, while anchor-based approaches struggle with complex topologies and strong curvature owing to their dependence on fixed geometric priors, collectively highlighting the need for explicit geometric modeling under adverse visual conditions. Early DL approaches treated lane detection as semantic segmentation [7,8] and then grouped pixels into lane instances via post-processing such as clustering or curve fitting [9,10]. While effective, these pipelines are not fully end-to-end and incur notable computational overhead. Anchor-based formulations [11–13] recast lanes as detection targets, yet their dependence on hand-crafted narrow anchors [14,15] and non-maximum suppression [16] still impedes truly end-to-end learning. As illustrated in Fig. 1, existing lane detection methods exhibit a clear trade-off between inference speed and detection performance on the CULane benchmark, whereas DCANet(our) achieves a favorable balance by lying on the Pareto frontier with superior Normal F1-score and competitive real-time efficiency.

Figure 1: Speed-accuracy trade-off on the CULane benchmark under the Normal scenario. Each point represents a lane detection method evaluated by inference speed (FPS) and Normal F1-score. The Pareto frontier denotes the set of non-dominated methods that achieve the optimal trade-off between speed and accuracy, where the proposed DCANet lies on the frontier and attains superior detection performance with competitive real-time efficiency.
To simplify representation, PolyLaneNet [17] regresses cubic polynomial coefficients for lane lines, but this often decouples lane geometry from global road context and degrades performance in dense traffic or damaged road scenes. Context modeling has been strengthened via spatial message passing [4,18,19] and by exploiting additional scene annotations [20,21], at the cost of higher computation and annotation burden. LSTR [22] adopts a Transformer based architecture [23] with camera-specific curve formulations to capture long-range dependencies, but complex curve modeling and transformer training challenges can limit robustness in difficult scenes [4]. Overall, existing approaches motivate lane detection frameworks that explicitly encode geometric continuity and curvature while efficiently integrating context in an end-to-end manner.
We propose a direction-curvature aware lane detection framework that explicitly models lane geometry and integrates contextual information within an end-to-end architecture. Our approach leverages curvature-sensitive representations to preserve geometric continuity under complex topologies and adverse visual conditions. By jointly enforcing directional consistency and curvature-aware spatial relationships, the method improves robustness to occlusions, illumination variation, and degraded markings without excessive computational overhead. Our contributions are:
• A direction-curvature aware feature integration framework that explicitly encodes lane geometric continuity for robustness under complex topologies and challenging visual conditions.
• A geometry-aware feature fusion strategy that combines local directional cues with global contextual information in an end-to-end trainable architecture.
• Extensive experiments on public benchmarks showing consistent improvements over state-of-the-art methods, especially under occlusions, illumination changes, and degraded lane markings.
2.1 Segmentation-Based Methods
Segmentation-based methods [4,19,24–28] treat lane detection as pixel-wise prediction and are commonly grouped into semantic and instance segmentation. Semantic approaches detect lane pixels and then assemble them into lane instances: LaneAF [24] predicts segmentation and affinity fields for pixel association, FOLLane [25] refines lane points and links them to reconstruct lanes, and LaneNet [26] uses embedding learning with clustering to separate instances. Instance segmentation explicitly models each lane as an object: SCNN [4] and RESA [19] propagate context via spatial message passing; CurveLane-NAS [27] applies Neural Architecture Search for geometry-aware designs; and CondLaneNet [28] and CondLSTR [29] use dynamic kernel generation to extract lane instances from feature maps. While accurate, segmentation-based pipelines can be sensitive to occlusions and illumination changes, reflecting difficulty in jointly preserving fine-grained geometric continuity and global semantics.
2.2 Row-Wise Classification Methods
Row-wise classification improves efficiency by avoiding dense pixel-wise maps [30]. The image is discretized into horizontal grids, and lane positions are predicted per row under predefined priors, consistency constraints then reconstruct lane curves [10]. However, these constraints often induce non-trivial post-processing and reduce adaptability to diverse lane topologies. CondLaneNet [28] improves instance-level precision by additionally predicting vertical extents and refining offsets, but this increases training and post-processing complexity.
Anchor-based approaches [5,6,12–15,30–34] represent lanes with predefined anchors, typically as line-anchor-based or row-anchor-based models. Line-CNN [12] introduced line anchors with regression refinement, LaneATT [13] aggregates global context via anchor-based attention; and SGNet [31] uses vanishing-point-guided anchor generation and structural constraints. Row-anchor-based methods such as UFLD [30] achieve high efficiency with lightweight backbones but can sacrifice accuracy, UFLDv2 [15] jointly models row and column information to better capture curvature; and LaneFormer [5] employs Transformer attention to model long-range spatial relations. Fixed anchors still struggle with complex topology and varying curvature: CLRNet [14] introduces learnable anchors and ROIGather for multi-level context fusion, ADNet [6] improves anchor initialization dynamically, and CLRerNet [32] proposes LaneIoU by incorporating local lane orientation for better confidence estimation and accuracy.
The proposed framework adopts an anchor-based lane detection paradigm and is designed as an end-to-end trainable architecture. It consists of four main components: a DLA-34 backbone for hierarchical feature extraction, a Direction-Curvature Aware (DCA) attention module for directional feature refinement, a context-aware feature pyramid neck for multi-scale feature aggregation, and an anchor-based lane detection head for final lane prediction. As illustrated in Fig. 2, the DCA module is introduced as the only backbone-level modification, preserving the baseline architecture while enhancing geometric representation. Given an input image
where
where
where
where
where
to operate on coherent feature representations, thereby promoting consistent aggregation along lane trajectories. Since the computational complexity of DCA scales with spatial resolution as

Figure 2: Overall architecture of the proposed method. A DLA-34 backbone extracts multi-scale features, where the proposed DCA module refines the deepest feature map. The refined features are fused by a context-aware feature pyramid and processed by an anchor-based lane detection head to produce final lane predictions.
3.2 Direction-Curvature Aware Attention
Standard convolutional and self-attention operators aggregate features within spatially symmetric neighborhoods, which is ill-suited for modeling such anisotropic geometry. To address this limitation, we propose the Direction-Curvature Aware (DCA) attention module, which performs tangent-aligned feature aggregation guided by a learned direction field. Let
where
where
where
To adaptively fuse the sampled features, DCA applies a local attention mechanism centered at the reference location. The center token and sampled tokens are projected into query, key, and value embeddings using linear transformations:
where
where
which biases the aggregation toward directionally consistent features. The output of the attention operation is given by
The aggregated feature
where

Figure 3: Internal architecture of the proposed Direction-Curvature Aware (DCA) module. The module estimates a unit direction field V from
Direction Field Learning: The direction field
3.3 Direction-Aware Lane Optimization
Anchor-based lane detectors are commonly trained using classification and regression losses that emphasize spatial overlap and point-wise accuracy. While effective for localization, these objectives do not explicitly enforce directional continuity along the lane trajectory. As a result, predictions with locally inconsistent orientation or distorted curvature may still achieve low regression error, especially under occlusion or strong perspective distortion. To address this limitation, we introduce a direction-aware optimization objective that enforces directional agreement between predicted and ground-truth lanes during training. Let a predicted lane be represented by an ordered sequence of points
where
The DLIoU loss is formulated as
where
where

Figure 4: Relative F1-score gains of DCANet over the strongest baseline (CLRNet) across different CULane scenarios. The Cross scenario is excluded as it reports false positive counts instead of F1-score.

Our implementation uses DLA-34 as the backbone network, with input resolutions of
4 Experimental Setup and Results
Datasets. we evaluate DCANet on two public lane detection benchmarks, TuSimple [36] and CULane [4]. Key dataset statistics are summarized in Table 1. TuSimple is collected in highway driving scenarios using a forward-facing camera. Videos are recorded at 20 fps, and frames are annotated at a resolution of

4.2 Evaluation Metrics and Training Details
The proposed method is evaluated on the CULane and TuSimple benchmarks following their official protocols. For CULane, performance is measured using the F1-score computed from region-level overlap between predicted and ground-truth lane markings, and results are reported across multiple scenario categories, including Normal, Crowd, Dazzle, Shadow, Curve, and Night. On TuSimple, evaluation is conducted using the standard F1-score and accuracy metrics, along with false positive (FP) and false negative (FN) rates, which jointly assess localization precision and detection reliability. During training, the network adopts a DLA-34 backbone and processes input images resized to
4.3 Comparison with State-of-the-Art Methods
4.3.1 Results on CULane Benchmark
DCANet achieves state-of-the-art performance across the majority of CULane evaluation categories while maintaining competitive inference efficiency, as reported in Table 2. Fig. 5 provides a comprehensive scenario-wise visual comparison of all methods, further confirming the consistent superiority of DCANet across all eight CULane evaluation categories. Under the Normal scenario, our method attains an F1-score of 94.86, surpassing the strongest prior baselines CLRNet, CLReNet, and DLNet by margins of 1.13, 0.84, and 0.76 points, respectively, confirming that direction-curvature aware feature integration yields more geometrically coherent representations even in the absence of severe degradation. The advantages of our approach become more pronounced under challenging conditions: in the Crowd scenario, DCANet achieves 81.37, outperforming CLReNet and DLNet by 1.17 and 1.24 points, respectively, while under Dazzle illumination it records 76.87, surpassing DLNet and CLRNet by 0.63 and 1.57 points. In the NoLine category, where lane markings are absent or severely degraded, our method achieves 57.38, exceeding DLNet and CLReNet by 0.61 and 1.11 points, indicating that explicit geometric modeling enables more reliable inference in regions devoid of direct visual evidence. In the Arrow and Night scenarios, DCANet records 91.21 and 76.11, respectively, remaining competitive with or surpassing all compared methods, and in the Shadow scenario it achieves 83.91, closely competitive with DLNet while surpassing CLRNet by 1.40 points. In the Cross category, our method yields 1138 false positives, lower than CLRNet at 1155, reflecting improved specificity under complex intersection topologies. DCANet operates at 74 FPS with 20.7 GFLOPs using the DLA-34 backbone, achieving a favorable balance between accuracy and computational efficiency relative to heavier models such as CondLane at 44.8 GFLOPs and 47 FPS, and qualitative comparisons in Fig. 6 further confirm that our method produces geometrically consistent lane predictions under occlusion, illumination variation, and strong curvature where baseline methods exhibit fragmentation or misalignment.

Figure 5: Scenario-wise F1-score comparison of all methods on the CULane benchmark across eight evaluation categories. DCANet (Ours) consistently achieves the highest or competitive F1-score across all scenarios, with notable advantages under challenging conditions including Dazzle, Shadow, NoLine, and Crowd.

Figure 6: Qualitative comparison of lane detection results on the CULane dataset under challenging scenarios. DCANet shows improved robustness to occlusions, illumination variations, and curved lane structures compared to a representative baseline.
4.3.2 Results on TuSimple Benchmark
On the TuSimple benchmark, DCANet achieves an F1-score of 97.75% and an accuracy of 97.31%, establishing new state-of-the-art performance as shown in Table 3. Compared to CLRNet with 97.62% F1 and 96.83% accuracy, and DLNet with 97.57% F1 and 96.97% accuracy, our method improves F1 by 0.13 and 0.18 points and accuracy by 0.48 and 0.34 points, respectively, and while these absolute margins are modest, they are consistent and meaningful given the already saturated nature of this benchmark where marginal improvements require substantive advances in geometric representation. The improvements are more clearly reflected in the detection error rates, where DCANet records an FP of 1.98 and an FN of 1.82, both the lowest among all compared methods; relative to CLRNet with FP 2.57 and FN 2.38, and DLNet with FP 2.37 and FN 2.18, we reduce false positives by 0.59 and 0.39 points and false negatives by 0.56 and 0.36 points, respectively, indicating that the direction-curvature aware representations learned by our DCA module, combined with the directional supervision provided by DLIoU, yield more precise and reliable lane localization. In contrast, earlier approaches such as UFLD with 87.87% F1 and FP of 19.03, and SCNN with 95.97% F1 and FP of 6.17, exhibit considerably higher error rates, highlighting the substantial progress achieved through geometry-aware anchor-based learning, and these TuSimple results collectively confirm that the geometric modeling capabilities of DCANet generalize effectively to structured driving environments where localization precision is paramount.

We conduct a systematic ablation study to assess the individual and combined contributions of the three proposed components, namely the DCA module, the CAFPN neck, and the DLIoU loss. Specifically, to isolate the independent contribution of the DCA module, Row 2 of Table 4 evaluates DCA alone without CAFPN or DLIoU. To isolate the contribution of DLIoU independently, Row 4 evaluates the combination of CAFPN and DLIoU without the DCA module. The full model combining all three components is reported in Row 5, demonstrating their complementary and synergistic contributions.

4.4.1 Component-Wise Contribution Analysis
We conduct a systematic ablation study to assess the individual and combined contributions of the three proposed components, namely the Direction-Curvature Aware attention module, the Context-Aware Feature Pyramid Neck, and the Directional Lane IoU loss. Each component is progressively introduced into the baseline architecture, and the results on the CULane benchmark are reported in Table 4. To isolate the independent contribution of the DCA module, Row 2 evaluates DCA alone without CAFPN or DLIoU. To isolate the contribution of DLIoU independently, Row 4 evaluates the combination of CAFPN and DLIoU without the DCA module. The full model combining all three components is reported in Row 5, demonstrating their complementary and synergistic contributions.
Starting from the baseline configuration without any of our proposed components, the model yields a Normal F1-score of 92.84 and a Night F1-score of 73.15 on CULane. Comparing Row 1 (baseline) and Row 2 (DCA only) directly quantifies the independent contribution of the DCA module, with the Normal F1-score increasing to 93.47, Shadow improving to 80.72, and Night rising to 74.02, confirming that tangent-aligned feature aggregation with curvature-gated attention provides more geometrically coherent representations even without modifications to the neck or training objective. Subsequently incorporating CAFPN alongside the DCA module yields further improvements across all conditions, with Normal reaching 94.02, Shadow improving to 82.11, and Night advancing to 75.24, demonstrating that multi-scale context fusion through CAFPN effectively complements the direction-sensitive features produced by the DCA module. Comparing Row 1 and Row 4 (CAFPN+DLIoU without DCA) isolates the combined contribution of directional supervision and multi-scale fusion, confirming that each component provides meaningful and independent gains toward the final performance.
To further isolate the role of our direction-aware training objective, we evaluate the combination of CAFPN and DLIoU without the DCA module. This configuration achieves a Normal F1-score of 93.61 and a Night F1-score of 74.67, which, while competitive, falls noticeably short of the full model. This result indicates that DLIoU is most effective when paired with the direction-sensitive feature representations learned by our DCA module, as the loss function and the attention mechanism are jointly designed to enforce directional consistency at both the feature and optimization levels.
4.4.2 Performance Gains across Challenging Scenarios
We further evaluate the complete model on both CULane and TuSimple to assess the holistic benefit of integrating all three proposed components, with results summarized in Table 5 and further visualized in Fig. 7. On CULane, our complete method reaches 94.56 on Normal, 83.91 on Shadow, 76.87 on Dazzle, and 76.11 on Night, all of which represent the highest scores among all ablation configurations. The gains are most pronounced in the Dazzle and Shadow scenarios, where direction and curvature modeling provide the greatest benefit by maintaining geometric consistency under strong illumination variation and partial occlusion. On TuSimple, our full model achieves an F1-score of 97.59% and an accuracy of 97.61%, while simultaneously reducing the false positive and false negative rates to 1.98 and 1.82, respectively, the lowest values recorded across all ablation settings. These results collectively demonstrate that the three components are complementary in nature: the DCA module provides geometry-aware feature representations, CAFPN enriches them through multi-scale aggregation, and DLIoU enforces directional consistency during training. Their synergistic integration leads to robust and accurate lane detection across diverse and challenging real-world driving conditions.


Figure 7: Ablation study on the CULane dataset across five representative environments. The line chart illustrates the progressive performance gains obtained by introducing DCA, CAFPN, and DLIoU, demonstrating their complementary contributions.
4.4.3 Hyperparameter Sensitivity Analysis
We analyze the sensitivity of DCANet to two key hyperparameters: the number of tangent-aligned sampling points

Despite strong overall performance, DCANet exhibits limitations in certain challenging scenarios as reflected in Table 2. Under extreme curvature, the local linear approximation of the direction field at stride-32 resolution may become less reliable, which is reflected in the relatively lower F1-score of 75.32 on the Curve scenario. Under strong illumination variation such as Dazzle lighting, the direction field estimation may be affected by appearance ambiguity, yielding an F1-score of 76.87. In scenes with severe occlusion and no residual visual lane evidence, the absence of direct appearance cues limits the geometric reasoning capability of the DCA module, as indicated by the NoLine F1-score of 57.38. These observations motivate future work on explicit curvature modeling and stronger contextual reasoning for highly occluded and adverse illumination scenarios.
In this work, we presented DCANet, a direction-curvature aware anchor-based framework for robust lane detection. Unlike conventional approaches that rely primarily on local appearance cues, DCANet explicitly incorporates geometric continuity constraints into both feature representation and learning. This is achieved through the proposed Direction-Curvature Aware (DCA) attention module, which performs tangent-aligned feature aggregation with curvature-gated attention to emphasize geometrically consistent lane structures under challenging conditions. To further enhance geometric coherence during training, we introduced the Directional Lane IoU (DLIoU) loss, which jointly accounts for spatial overlap and local directional alignment between predicted and ground-truth lane segments. By promoting directionally consistent predictions, DLIoU complements standard regression and classification objectives and improves robustness in curved and fragmented lane scenarios. Overall, DCANet offers a lightweight and modular solution for integrating Direction-curvature aware reasoning into anchor-based lane detection pipelines. Future work will explore explicit curvature modeling and temporal integration across video sequences to further enhance robustness in dynamic driving environments. While the proposed anchor-based framework demonstrates strong performance across diverse driving conditions, anchor-based designs may limit generalization to highly irregular lane topologies compared to anchor-free approaches. Future work will explore extending DCA to anchor-free and transformer-based paradigms, as well as incorporating temporal integration across video sequences.
Acknowledgement: The authors would like to express their sincere gratitude to the College of Computer Science, Chongqing University, and the Department of Software Engineering, Daffodil International University, for providing laboratory facilities and experimental resources that supported this research. The authors also thank the Center for Image and Vision Computing and Faculty of Information Science & Technology, Multimedia University, for their valuable technical support and research facilities.
Funding Statement: This work was supported by the Multimedia University (MMU) through the TM R&D Fund (Project ID: MMUE/250015).
Author Contributions: Ahtisham Waheed served as the primary contributor, leading the conceptualization, methodology design, model implementation, experimental evaluation, and preparation of the original manuscript draft. Yunfie Yin supervised the research as the principal advisor, contributing to conceptual development and providing critical revisions. Abu Fatema Mohammad Abdun Noor and Md Imam Ahasan made significant contributions to methodology refinement, experimental validation, and data analysis. Kah Ong Michael Goh and S. M. Hasan Mahmud provided secondary supervision, offering technical guidance and contributing to manuscript review and refinement. Umar Rashid contributed to formal analysis and provided minor assistance in manuscript editing. All authors reviewed and approved the final version of the manuscript.
Availability of Data and Materials: The datasets used in this study are publicly available. The TuSimple dataset can be accessed at https://github.com/TuSimple/tusimple-benchmark, and the CULane dataset is available at https://xingangpan.github.io/projects/CULane.html. The source code supporting the findings of this study is publicly available at https://github.com/imamahasane/DCANet.
Ethics Approval: The datasets used in this study are publicly available. This research does not involve any human participants, human data, or animals. Accordingly, ethical approval was not required.
Conflicts of Interest: The authors declare no conflicts of interest.
References
1. Kachhoria R, Jaiswal S, Lokhande M, Rodge J. Lane detection and path prediction in autonomous vehicle using deep learning. In: Intelligent edge computing for cyber physical applications. Amsterdam, The Netherlands: Elsevier; 2023. p. 111–27. [Google Scholar]
2. Saranya M, Archana N, Janani M, Keerthishree R. Lane detection in autonomous vehicles using AI. In: Computing in intelligent transportation systems. Berlin/Heidelberg, Germany: Springer; 2023. p. 15–30. [Google Scholar]
3. Zhang T, Wang L, Li H, Xiao Y, Liang S, Liu A, et al. Lanevil: benchmarking the robustness of lane detection to environmental illusions. In: Proceedings of the 32nd ACM International Conference on Multimedia; 2024 Oct 28; Melbourne, VIC, Australia. p. 5403–12. [Google Scholar]
4. Pan X, Shi J, Luo P, Wang X, Tang X. Spatial as deep: spatial CNN for traffic scene understanding. In: Proceedings of the AAAI Conference on Artificial Intelligence; 2018 Feb 2–7; New Orleans, LA, USA. Vol. 32; p. 7276–83. [Google Scholar]
5. Han J, Deng X, Cai X, Yang Z, Xu H, Xu C, et al. Laneformer: object-aware row-column transformers for lane detection. In: Proceedings of the AAAI Conference on Artificial Intelligence. 2022 Feb 22–Mar 1; Virtually. Vol. 38, p. 799–807. [Google Scholar]
6. Xiao L, Li X, Yang S, Yang W. Adnet: lane shape prediction via anchor decomposition. In: Proceedings of the IEEE/CVF International Conference on Computer Vision; 2023 Oct 1–6; Paris, France. p. 6404–13. [Google Scholar]
7. Hou Y, Ma Z, Liu C, Hui TW, Loy CC. Inter-region affinity distillation for road marking segmentation. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2020 Jun 14–19; Virtually. p. 12486–95. [Google Scholar]
8. Ko Y, Lee Y, Azam S, Munir F, Jeon M, Pedrycz W. Key points estimation and point instance segmentation approach for lane detection. IEEE Trans Intell Transp Syst. 2021;23(7):8949–58. doi:10.1109/tits.2021.3088488. [Google Scholar] [CrossRef]
9. Liu T, Chen Z, Yang Y, Wu Z, Li H. Lane Detection in low-light conditions using an efficient data enhancement: light conditions style transfer. arXiv:2002.01177. 2020. doi:10.48550/arxiv.2002.01177. [Google Scholar] [CrossRef]
10. Yoo S, Lee HS, Myeong H, Yun S, Park H, Cho J, et al. End-to-end lane marker detection via row-wise classification. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops; 2020 Jun 14–19. Virtually. p. 1006–7. [Google Scholar]
11. Philion J. Fastdraw: Addressing the long tail of lane detection by adapting a sequential prediction network. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2019 Jun 16–20; Long Beach, CA, USA. p. 11582–91. [Google Scholar]
12. Li X, Li J, Hu X, Yang J. Line-CNN: end-to-end traffic line detection with line proposal unit. IEEE Trans Intell Transp Syst. 2019;21(1):248–58. doi:10.1109/tits.2019.2890870. [Google Scholar] [CrossRef]
13. Tabelini L, Berriel R, Paixao TM, Badue C, De Souza AF, Oliveira-Santos T. Keep your eyes on the lane: real-time attention-guided lane detection. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2021 Jun 21–25; Virtually. p. 294–302. doi:10.1109/cvpr46437.2021.00036. [Google Scholar] [CrossRef]
14. Zheng T, Huang Y, Liu Y, Tang W, Yang Z, Cai D, et al. CLRNeT: cross layer refinement network for lane detection. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2022 Jun 19–20; New Orleans, LA, USA. p. 898–907. [Google Scholar]
15. Qin Z, Zhang P, Li X. Ultra fast deep lane detection with hybrid anchor driven ordinal classification. IEEE Trans Pattern Anal Mach Intell. 2022;46(5):2555–68. doi:10.1109/TPAMI.2022.3182097. [Google Scholar] [PubMed] [CrossRef]
16. Neubeck A, Van Gool L. Efficient non-maximum suppression. In: Proceedings of the 18th International Conference on Pattern Recognition (ICPR’06); 2006 Aug 20–24; Hong Kong, China. Vol. 3, p. 850–5. [Google Scholar]
17. Tabelini L, Berriel R, Paixao TM, Badue C, De Souza AF, Oliveira-Santos T. Polylanenet: lane estimation via deep polynomial regression. In: Proceedings of the 2020 25th International Conference on Pattern Recognition (ICPR); 2021 Jan 10–15; Milan, Italy. p. 6150–6. [Google Scholar]
18. Ghafoorian M, Nugteren C, Baka N, Booij O, Hofmann M. El-GAN: embedding loss driven generative adversarial networks for lane detection. In: Proceedings of the European Conference on Computer Vision (ECCV) Workshops; 2018 Sep 8–14; Munich, Germany. p. 256–72. [Google Scholar]
19. Zheng T, Fang H, Zhang Y, Tang W, Yang Z, Liu H, et al. Recurrent feature-shift aggregator for lane detection. In: Proceedings of the AAAI Conference on Artificial Intelligence; 2021 Feb 2–9; Virtually. Vol. 35; p. 3547–54. [Google Scholar]
20. Zhang J, Xu Y, Ni B, Duan Z. Geometric constrained joint lane segmentation and lane boundary detection. In: Proceedings of the European Conference on Computer Vision (ECCV); 2018 Sep 8–14; Munich, Germany. p. 486–502. [Google Scholar]
21. Feng Z, Li M, Stolz M, Kunert M, Wiesbeck W. Lane detection with a high-resolution automotive radar by introducing a new type of road marking. IEEE Trans Intell Transp Syst. 2018;20(7):2430–47. doi:10.1109/tits.2018.2866079. [Google Scholar] [CrossRef]
22. Liu R, Yuan Z, Liu T, Xiong Z. End-to-end lane shape prediction with transformers. In: Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision; 2021 Jan 5–9; Virtually. p. 3694–702. [Google Scholar]
23. Vaswani A, Shazeer N, Parmar N, Uszkoreit J, Jones L, Gomez AN, et al. Attention is all you need. In: Proceedings of the 31st International Conference on Neural Information Processing System; 2017 Dec 4–9; Long Beach, CA, USA. Vol. 30, p. 6000–10. [Google Scholar]
24. Abualsaud H, Liu S, Lu DB, Situ K, Rangesh A, Trivedi MM. Laneaf: robust multi-lane detection with affinity fields. IEEE Robot Autom Lett. 2021;6(4):7477–84. doi:10.1109/lra.2021.3098066. [Google Scholar] [CrossRef]
25. Qu Z, Jin H, Zhou Y, Yang Z, Zhang W. Focus on local: detecting lane marker from bottom up via key point. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2021 Jun 21–25; Virtually. p. 14122–30. [Google Scholar]
26. Wang Z, Ren W, Qiu Q. Lanenet: real-time lane detection networks for autonomous driving. arXiv:1807.01726. 2018. [Google Scholar]
27. Xu H, Wang S, Cai X, Zhang W, Liang X, CurveLane-NAS LZ. CurveLane-NAS: unifying lane-sensitive architecture search and adaptive point blending. arXiv:2007.12147. 2020. doi:10.48550/arxiv.2007.12147. [Google Scholar] [CrossRef]
28. Liu L, Chen X, Zhu S, Tan P. CondLaneNet: a top-to-down lane detection framework based on conditional convolution. arXiv:2105.05003. 2021. doi:10.48550/arxiv.2105.05003. [Google Scholar] [CrossRef]
29. Chen Z, Liu Y, Gong M, Du B, Qian G, Smith-Miles K. Generating dynamic kernels via transformers for lane detection. In: Proceedings of the IEEE/CVF International Conference on Computer Vision; 2023 Oct 2–6; Paris, France. p. 6835–44. [Google Scholar]
30. Qin Z, Wang H, Li X. Ultra fast structure-aware deep lane detection. In: European Conference on Computer Vision. Berlin/Heidelberg, Germany: Springer; 2020. p. 276–91. [Google Scholar]
31. Su J, Chen C, Zhang K, Luo J, Wei X, Wei X. Structure guided lane detection. arXiv:2105.05403. 2021. [Google Scholar]
32. Honda H, Uchida Y. CLRerNet: improving confidence of lane detection with laneiou. In: Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision; 2024 Jan 3–8; Waikoloa, HI, USA. p. 1176–85. [Google Scholar]
33. Wang H, Wang W, Ren K, Tian S, Tie J. The lane detection algorithm for row classification based on dynamic shape perception and feature alignment. In: Proceedings of the 2025 International Joint Conference on Neural Networks (IJCNN); 2025 Jun 30–Jul 5; Rome, Italy. p. 1–8. [Google Scholar]
34. Xing Y, Xu J. Anchor query based transformer for lane detection. In: Proceedings of the 2024 International Joint Conference on Neural Networks (IJCNN); 2024 Jun 30–Jul 5; Yokohama, Japan. p. 1–8. [Google Scholar]
35. Lu Z, Liao L, Li R, Zou F, Cai S, Han G. DLNet: direction-aware feature integration for robust lane detection in complex environments. IEEE Trans Intell Transp Syst. 2025;26(11):18934–47. doi:10.1109/tits.2025.3602078. [Google Scholar] [CrossRef]
36. TuSimple. TuSimple lane detection benchmark. 2017 [cited 2026 Jan 1]. Available from: https://github.com/TuSimple/tusimple-benchmark. [Google Scholar]
37. Wang J, Ma Y, Huang S, Hui T, Wang F, Qian C, et al. A keypoint-based global association network for lane detection. In: Proceedings of the 2024 International Joint Conference on Neural Networks (IJCNN); 2024 Jun 30–Jul 5; New Orleans, LA, USA. p. 1392–401. [Google Scholar]
Cite This Article
Copyright © 2026 The Author(s). Published by Tech Science Press.This work is licensed under a Creative Commons Attribution 4.0 International License , which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.


Submit a Paper
Propose a Special lssue
View Full Text
Download PDF
Downloads
Citation Tools