Pith. sign in

REVIEW 5 major objections 6 minor 41 references

SSF-PAN: Semantic Scene Flow-Based Perception for Autonomous Navigation in Traffic Scenarios

T0 review · 5 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read Iteratively coupling scene flow and static/dynamic segmentation lets a LiDAR-only vehicle localize and navigate without a pre-built map.

desk verdict A plausible integration of scene flow and motion segmentation for map-free navigation, but the evidence is undermined by a missing baseline reference, no runtime data, and an under-tested static/dynamic classification rule. read the letter →

arxiv 2501.16754 v1 pith:WQN726X2 submitted 2025-01-28 cs.RO cs.CV

classification cs.ROcs.CV
keywords semanticsceneflowLiDARpointcloudSLAMmotionsegmentationmap-freenavigationautonomousdrivingCARLAsimulation
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper tries to establish that a LiDAR-only vehicle can navigate busy traffic without a pre-built high-definition map if the perception stack treats scene flow as its backbone. Scene flow is the per-point 3D motion between two consecutive point-cloud frames; the proposed system estimates that motion and, in the same network, labels each point as static background or part of a moving obstacle. The two tasks are placed in an iterative loop so that a better segmentation cleans up the flow estimate, and a better flow estimate sharpens the segmentation. The authors report that this mutual promotion reduces SLAM trajectory error by more than 93% compared with a RANSAC-based odometry module and reaches 93.27% static/dynamic segmentation accuracy, with navigation improvements over DBSCAN and PointRCNN in CARLA trials. A sympathetic reader would care because, if true, one sensor and one pipeline could replace the separate SLAM and moving-object-detection modules that map-based systems need.

What carries the argument

The load-bearing mechanism is the mutual-promotion loop between scene flow estimation and motion segmentation. Consecutive LiDAR frames and a current mask enter an ASF-based flow estimator; the predicted flow is concatenated with the point cloud and passed through an OGC-based segmentation network with a three-term self-supervised loss composed of rigid motion consistency, semantic scene-flow consistency, and Chamfer-distance rigidity. The resulting static/dynamic mask is fed back to the flow estimator until the total change in flow and mask is below $\epsilon = 10^{-3}$. Static/dynamic classification itself uses two rules: the largest cluster is declared static, and clusters whose average flow velocity is close to the ego vehicle's velocity are declared static.

What would settle it

Run SSF-PAN on a recorded LiDAR sequence in which one large truck or dense crowd is the largest connected cluster; if the quantity-based rule labels it static, the odometry trajectory error should spike and the planned path should ignore or mis-time the obstacle, directly exposing the failure.

Watch

Extended reading notes

Core claim

On its own terms, the discovery is that motion segmentation and scene flow estimation can be made to reinforce each other, and that this reinforcement is enough to run full map-free navigation. The SSF module starts from the active scene flow (ASF) network to predict scene flow between frames $P_t$ and $P_{t+1}$, concatenates the flow with the point cloud, and feeds the pair to a segmentation network built on the OGC architecture. A combined self-supervised loss, using rigid motion consistency, semantic scene-flow consistency, and Chamfer-distance rigidity, produces a mask separating static environment from dynamic clusters. The static mask then feeds back into the next iteration's flow estimation, while dynamic clusters supply obstacle positions and velocities to the planner; the loop continues until the change in flow and mask falls below a threshold. The paper reports that this loop lowers SLAM trajectory RMSE from 4.111 m to 0.102 m in one tested SLAM framework, a reduction of more than 93% relative to RANSAC, and reaches 93.27% segmentation accuracy on its validation data.

Load-bearing premise

The entire system rests on the assumption that the largest point cluster is static environment and that clusters moving at the same speed as the ego vehicle are static; if either fails, both odometry and obstacle avoidance degrade.

Editorial extensions

If this is right

  • Using SSF-based odometry instead of RANSAC-based registration reduces SLAM trajectory RMSE by more than 93% in the paper's dynamic-traffic experiments.
  • A single SSF segmentation step reaches 93.27% static/dynamic accuracy, exceeding the OGC, GMM, DBSCAN, and PointNet++ variants tested in the ablation.
  • In CARLA navigation trials with 50 to 1,000 moving obstacles, SSF-PAN raises success rate, shortens navigation time, and increases average speed relative to DBSCAN and PointRCNN baselines.
  • The iterative loop converges to a stable flow-and-mask pair, and each additional iteration improves scene-flow error before the threshold is reached.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Beyond the paper, the largest-cluster-is-static rule implies the method will most likely fail when a single dynamic object, such as a truck directly ahead or a dense crowd, supplies more LiDAR points than the static background; a learned prior or multi-hypothesis check would be a natural fix.
  • Because the training losses are self-supervised, the same iterative coupling could transfer to other point-cloud platforms, such as indoor robots or drones, where static/dynamic separation matters but annotated data is scarce.
  • The navigation results are from CARLA only, so the claim that SSF-PAN supports real map-free driving still needs verification on real busy intersections; the KITTI experiments validate odometry and segmentation, not closed-loop navigation.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

5 major / 6 minor

Summary. The paper proposes SSF-PAN, a perception system that couples LiDAR scene flow estimation (based on the authors' prior ASF network) with self-supervised static/dynamic and instance segmentation (based on OGC), and iteratively refines both components. The resulting static/dynamic masks are used for odometry/SLAM and for obstacle velocity estimation in a CARLA-based map-free navigation platform. Experiments report a more than 93% reduction in relative pose error over a RANSAC baseline on a combined SUScape-CARLA/KITTI validation set, a segmentation accuracy of 93.27%, and navigation improvements over DBSCAN and PointRCNN in CARLA with up to 1,000 obstacles. The central claims are that the iterative mutual refinement improves scene flow and segmentation, and that the resulting perception stack supports map-free navigation without high-definition maps.

Significance. If the results hold, the work contributes a plausible self-supervised route to joint scene flow estimation and motion segmentation, together with an integrated simulation platform for closed-loop navigation evaluation. The use of public datasets (KITTI, SUScape-CARLA) and the ablation structure in Tables III-V give the evaluation some evidential value. However, the paper does not provide code, runtime measurements, or a fully specified evaluation protocol, and several load-bearing assumptions in the classifier and in the baselines are not pinned down. The novelty relative to the authors' prior ASF [7] and to OGC [3] also needs clearer delineation. The central idea is defensible, but the evidence as presented is incomplete.

major comments (5)
  1. [§IV-B, Eqs. (6)–(8)] The static/dynamic classification is the linchpin of the pipeline, yet the two rules are not robust as stated. Eq. (6) assumes that the largest point cluster is static; in dense traffic, a large nearby vehicle can dominate after clustering, and the paper gives no evidence that this does not occur. Eq. (7) computes a scalar speed from the scene-flow magnitude, and Eq. (8) compares this speed to Vego, which ignores motion direction and makes the classification ambiguous unless the reference frame of the scene flow is stated: static world points have zero velocity in a world frame, not velocity equal to Vego. The threshold θ is never specified. Please add a stress test on labeled frames with dense traffic, state the scene-flow frame and the value of θ, and use vector velocity rather than speed in Eq. (8).
  2. [Table I and §V-A2] The RANSAC baseline is cited only as '[?]', so the headline claim of a more than 93% reduction in trajectory error cannot be verified: the reader cannot know which RANSAC variant, outlier threshold, or initialization was used. Please replace the placeholder with a concrete reference and implementation details, and add at least per-condition variance or error bars for the reported RPE values.
  3. [Abstract and §V-B1] The abstract claims high computational efficiency and the experiment section says the system is 'capable for the real-time navigation task,' but the paper reports no per-frame inference time, latency, frame rate, or hardware configuration anywhere. Without these numbers, the efficiency claim is unsupported. Please add a runtime breakdown for ASF plus segmentation and for the end-to-end navigation loop.
  4. [§V-C1, Table III] The 93.27% segmentation accuracy is the main quantitative evidence for the segmentation claim, but the accuracy definition, ground-truth label source, and test split are not stated, and no variance or number of frames is given. In addition, OGC with 'Only Scene Flow' drops to 20.54%, which is surprising and unexplained, and DBSCAN is reported as 'OM' in one column. Please specify the metric and label protocol and report results across repeated runs or multiple scenes.
  5. [§V-B and §V-A1] The navigation and SLAM experiments are performed in the same simulator family (SUScape-CARLA and CARLA) used to generate the training data, so the validation is in-distribution; this does not by itself support a general claim of map-free navigation in complex traffic scenarios without a cross-distribution test. Please either add a cross-simulator or real-world LiDAR test or explicitly limit the claim to the tested distribution.
minor comments (6)
  1. [Table II caption] Table II is captioned 'Quantitative Results for Fig. 2', but the navigation experiment is illustrated in Fig. 7; the cross-reference is wrong.
  2. [§IV-B, Eq. (5)] The convergence criterion defines weights α and β and threshold ϵ, but the values of α and β are never given, and no convergence iteration counts are reported.
  3. [Table IV] For the DT set, the implicit strategy is worse than the 'Only Point Cloud' baseline (EPE3D 0.0867 versus 0.0510), yet the text concludes that semantic information helps; this inconsistency should be discussed.
  4. [Table V] Table V uses the symbols '×' and '"' without a legend, making it unclear which configuration elements are enabled; please add a clear notation.
  5. [§IV-A] The segmentation network is described only as 'based on modifications to the ASF and OGC networks'; more architectural detail (input features, number of clusters K, training hyperparameters) is needed for reproducibility.
  6. [§II-C] The statement that 'currently, there are no map-free navigation systems which utilize scene flow data for real-time applications' is a strong claim that should be softened unless a more systematic literature search is provided.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: SSF-PAN is an empirical pipeline whose static/dynamic rules are explicit assumptions, not derivations that reduce to their own outputs.

full rationale

The paper does not contain a claimed prediction that is equivalent to its input by construction. The scene-flow backbone ASF [7] is a cited prior component from the same research group, but it is not used as an argument to close a derivation: the paper trains or fine-tunes it on a training split of SUScape-CARLA and KITTI and evaluates the resulting system on a held-out validation split (Section V-A1), so the SLAM numbers in Table I are externally measured rather than definitional. The segmentation network is validated against ground-truth labels in Table III, and the navigation results in Table II are benchmark comparisons under identical RDA planning, so they are empirical rather than reductions to the method's assumptions. Equations (6) and (8), which label the largest cluster or velocity-consistent cluster as static, are explicit modeling heuristics about traffic composition; a failure of those assumptions would degrade accuracy, but it does not make the reported result logically identical to the assumption. The iterative coupling of scene flow and mask (Eq. 5) is a feedback algorithm, not a circular proof, and its effect is tested by ablation in Fig. 8 and Table V. The unspecified threshold theta and the unstated coordinate frame for V_ego in Eq. 8 are correctness and robustness concerns, not circularity. No load-bearing step cites only the authors' prior work in place of evidence, and no result is forced by a self-citation chain.

Assumptions & free parameters 6 free parameters · 5 assumptions · 0 invented entities

The central claim depends on a stack of prior models and hand-chosen hyperparameters: ASF scene flow, OGC-style segmentation, convergence weights, static-classification thresholds, and cluster counts. None of these are derived or released, so the reported numbers are conditional on an unstated configuration.

free parameters (6)
  • alpha (convergence weight for scene flow term)
    Used in Eq. 5 to balance scene flow and mask changes in the iteration stop criterion; value not reported.
  • beta (convergence weight for segmentation term)
    Same equation as alpha; value not reported.
  • epsilon (convergence threshold) = 1e-3
    Stated in Section IV-B as the threshold for iteration convergence.
  • theta (velocity threshold for static classification)
    Eq. 8; threshold below which a cluster is considered static; no value or tuning procedure reported.
  • number of clusters K
    The motion segmentation assumes K clusters (objects); the method for choosing K is not described.
  • foreground point sampling counts (100 and 4000) = 100 / 4000
    Data split DH/DT uses these sampling numbers; rationale for these counts is not given.
assumptions (5)
  • domain assumption Largest point cluster is static environment (Eq. 6)
    The quantity-based static classification assumes traffic scenes contain more static background points than any single dynamic object, which may fail in dense or congested traffic.
  • domain assumption Objects with velocity close to the ego vehicle are static (Eq. 8)
    The velocity-based fallback assumes that a dynamic object moving at the same speed as the ego is indistinguishable from static; this fails when obstacles follow the ego vehicle.
  • domain assumption ASF network's scene flow estimates are accurate enough to drive segmentation
    The entire pipeline starts from ASF scene flow (prior work by the same group); if ASF produces corrupted flow, the segmentation and odometry inherit the errors. The paper cites ASF rather than deriving it.
  • domain assumption Each dynamic object is locally rigid and can be represented by a single rigid transformation (Kabsch)
    The motion loss Lmot assumes per-cluster rigidity; articulated or non-rigid objects (pedestrians moving limbs) violate this.
  • domain assumption CARLA and SUScape-CARLA are representative of real traffic for validation
    Both the training and the navigation evaluation use CARLA-based simulation; generalization to real-world LiDAR is not demonstrated.

how reviews work

0 comments
Cite this review

Pith. "Pith review of SSF-PAN: Semantic Scene Flow-Based Perception for Autonomous Navigation in Traffic Scenarios." pith.science (2026). https://pith.science/paper/WQN726X2

@misc{pith2026250116754,
  author       = {Pith},
  title        = {Pith review of: SSF-PAN: Semantic Scene Flow-Based Perception for Autonomous Navigation in Traffic Scenarios},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/WQN726X2}},
  note         = {Machine review of arXiv:2501.16754}
}
read the original abstract

Vehicle detection and localization in complex traffic scenarios pose significant challenges due to the interference of moving objects. Traditional methods often rely on outlier exclusions or semantic segmentations, which suffer from low computational efficiency and accuracy. The proposed SSF-PAN can achieve the functionalities of LiDAR point cloud based object detection/localization and SLAM (Simultaneous Localization and Mapping) with high computational efficiency and accuracy, enabling map-free navigation frameworks. The novelty of this work is threefold: 1) developing a neural network which can achieve segmentation among static and dynamic objects within the scene flows with different motion features, that is, semantic scene flow (SSF); 2) developing an iterative framework which can further optimize the quality of input scene flows and output segmentation results; 3) developing a scene flow-based navigation platform which can test the performance of the SSF perception system in the simulation environment. The proposed SSF-PAN method is validated using the SUScape-CARLA and the KITTI datasets, as well as on the CARLA simulator. Experimental results demonstrate that the proposed approach outperforms traditional methods in terms of scene flow computation accuracy, moving object detection accuracy, computational efficiency, and autonomous navigation effectiveness.

Figures

Figures reproduced from arXiv: 2501.16754 by the authors.

Figure 1
Figure 1. An illustration of SSF estimation for autonomous navigation [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. An illustration of the SSF-PAN system diagram. [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. An illustration of the SSF module, which includes two parts: scene flow estimation and motion segmentation. [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: An illustration of the SSF navigation platform in CARLA. [PITH_FULL_IMAGE:figures/full_fig_p004_4.png]
Figure 5
Figure 5. Figure 5: A snapshot of the SSF-based navigation system under testing [PITH_FULL_IMAGE:figures/full_fig_p004_5.png]
Figure 6
Figure 6. Figure 6: Ego-vehicle trajectory estimation (map construction) results [PITH_FULL_IMAGE:figures/full_fig_p005_6.png]
Figure 7
Figure 7. Figure 7: An illustration of SSF-based autonomous navigation in com [PITH_FULL_IMAGE:figures/full_fig_p006_7.png]
Figure 8
Figure 8. Figure 8: The ablation experiments for the iterative optimization. [PITH_FULL_IMAGE:figures/full_fig_p007_8.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

41 extracted references · 37 canonical work pages

  1. [7]

    Active scene flow estimation for autonomous driving via real-time scene prediction and optimal decision

    Shuaijun Wang, Rui Gao, Ruihua Han, Jianjun Chen, Zirui Zhao, Zhijun Lyu, and Qi Hao. Active scene flow estimation for autonomous driving via real-time scene prediction and optimal decision. IEEE Transactions on Intelligent Transportation Systems , 2023

  2. [3]

    Ogc: Unsupervised 3d object segmentation from rigid dynamics of point clouds

    Ziyang Song and Bo Yang. Ogc: Unsupervised 3d object segmentation from rigid dynamics of point clouds. In S. Koyejo, S. Mohamed, A. Agarwal, D. Belgrave, K. Cho, and A. Oh, editors,Advances in Neural Information Processing Systems, volume 35, pages 30798–30812. Curran Associates, Inc., 2022

  3. [1]

    Vision meets robotics: The kitti dataset

    Andreas Geiger, Philip Lenz, Christoph Stiller, and Raquel Urtasun. Vision meets robotics: The kitti dataset. The International Journal of Robotics Research, 32(11):1231–1237, 2013

  4. [2]

    On combining visual slam and dense scene flow to increase the robustness of localization and mapping in dynamic environments

    Pablo F Alcantarilla, Jos ´e J Yebes, Javier Almaz ´an, and Luis M Bergasa. On combining visual slam and dense scene flow to increase the robustness of localization and mapping in dynamic environments. In 2012 IEEE International Conference on Robotics and Automation, pages 1290–1297. IEEE, 2012

  5. [4]

    Dynaslam: Tracking, mapping, and inpainting in dynamic scenes

    Berta Bescos, Jos ´e M F ´acil, Javier Civera, and Jos ´e Neira. Dynaslam: Tracking, mapping, and inpainting in dynamic scenes. IEEE Robotics and Automation Letters , 3(4):4076–4083, 2018

  6. [5]

    Ds-slam: A semantic visual slam towards dynamic environments

    Chao Yu, Zuxin Liu, Xin-Jun Liu, Fugui Xie, Yi Yang, Qi Wei, and Qiao Fei. Ds-slam: A semantic visual slam towards dynamic environments. In 2018 IEEE/RSJ international conference on intelligent robots and systems (IROS), pages 1168–1174. IEEE, 2018

  7. [6]

    Qi, and Leonidas J

    Xingyu Liu, Charles R. Qi, and Leonidas J. Guibas. Flownet3d: Learning scene flow in 3d point clouds. In 2019 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 529–537, 2019

  8. [8]

    Hplflownet: Hierarchical permutohedral lattice flownet for scene flow estimation on large-scale point clouds

    Xiuye Gu, Yijie Wang, Chongruo Wu, Yong Jae Lee, and Panqu Wang. Hplflownet: Hierarchical permutohedral lattice flownet for scene flow estimation on large-scale point clouds. IEEE, 2019

Show all 41 references
  1. [9]

    Guibas, and Tolga Birdal

    Zan Gojcic, Or Litany, Andreas Wieser, Leonidas J. Guibas, and Tolga Birdal. Weakly supervised learning of rigid 3d scene flow. 2021

  2. [10]

    Ze- roflow: Scalable scene flow via distillation, 2023

    Kyle Vedder, Neehar Peri, Nathaniel Chodosh, Ishan Khatri, Eric Eaton, Dinesh Jayaraman, Yang Liu, Deva Ramanan, and James Hays. Ze- roflow: Scalable scene flow via distillation, 2023

  3. [11]

    Scalable scene flow from point clouds in the real world, 2021

    Philipp Jund, Chris Sweeney, Nichola Abdo, Zhifeng Chen, and Jonathon Shlens. Scalable scene flow from point clouds in the real world, 2021

  4. [12]

    A review of tracking, prediction and decision making methods for autonomous driving

    Florin Leon and Marius Gavrilescu. A review of tracking, prediction and decision making methods for autonomous driving. arXiv preprint arXiv:1909.07707, 2019

  5. [13]

    Slim: Self-supervised lidar scene flow and motion segmentation

    Stefan Andreas Baur, David Josef Emmerichs, Frank Moosmann, Peter Pinggera, Bj ¨orn Ommer, and Andreas Geiger. Slim: Self-supervised lidar scene flow and motion segmentation. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 13126– 13136, 2021

  6. [14]

    Multibodysync: Multi-body segmentation and motion estimation via 3d scan synchronization

    Jiahui Huang, He Wang, Tolga Birdal, Minhyuk Sung, Federica Arrigoni, Shi-Min Hu, and Leonidas J Guibas. Multibodysync: Multi-body segmentation and motion estimation via 3d scan synchronization. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogniti...

  7. [15]

    Deep part induction from articulated object pairs

    Li Yi, Haibin Huang, Difan Liu, Evangelos Kalogerakis, Hao Su, and Leonidas Guibas. Deep part induction from articulated object pairs. arXiv preprint arXiv:1809.07417 , 2018

  8. [16]

    Self-supervised learning of lidar segmentation for autonomous indoor navigation

    Hugues Thomas, Ben Agro, Mona Gridseth, Jian Zhang, and Timothy D Barfoot. Self-supervised learning of lidar segmentation for autonomous indoor navigation. In 2021 IEEE International Conference on Robotics and Automation (ICRA) , pages 14047–14053. IEEE, 2021

  9. [17]

    Multiframe scene flow with piecewise rigid motion

    Vladislav Golyanik, Kihwan Kim, Robert Maier, Matthias Nießner, Didier Stricker, and Jan Kautz. Multiframe scene flow with piecewise rigid motion. In 2017 International Conference on 3D Vision (3DV) , pages 273–281. IEEE, 2017

  10. [18]

    Piecewise rigid scene flow

    Christoph V ogel, Konrad Schindler, and Stefan Roth. Piecewise rigid scene flow. In Proceedings of the IEEE International Conference on Computer Vision, pages 1377–1384, 2013

  11. [19]

    Rigid scene flow for 3d lidar scans

    Ayush Dewan, Tim Caselitz, Gian Diego Tipaldi, and Wolfram Burgard. Rigid scene flow for 3d lidar scans. In 2016 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pages 1765–1770. IEEE, 2016

  12. [20]

    Graphflow–6d large displacement scene flow via graph matching

    Hassan Abu Alhaija, Anita Sellent, Daniel Kondermann, and Carsten Rother. Graphflow–6d large displacement scene flow via graph matching. In Pattern Recognition: 37th German Conference, GCPR 2015, Aachen, Germany, October 7-10, 2015, Proceedings 37, pages 285–296. Springer, 2015

  13. [21]

    Deep rigid instance scene flow

    Wei-Chiu Ma, Shenlong Wang, Rui Hu, Yuwen Xiong, and Raquel Urtasun. Deep rigid instance scene flow. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 3614–3622, 2019

  14. [22]

    Pointflownet: Learning representations for rigid motion estimation from point clouds

    Aseem Behl, Despoina Paschalidou, Simon Donn ´e, and Andreas Geiger. Pointflownet: Learning representations for rigid motion estimation from point clouds. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 7962–7971, 2019

  15. [23]

    Point- net++: Deep hierarchical feature learning on point sets in a metric space

    Charles Ruizhongtai Qi, Li Yi, Hao Su, and Leonidas J Guibas. Point- net++: Deep hierarchical feature learning on point sets in a metric space. Advances in neural information processing systems , 30, 2017

  16. [24]

    Unsupervised multi-task feature learning on point clouds

    Kaveh Hassani and Mike Haley. Unsupervised multi-task feature learning on point clouds. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 8160–8171, 2019

  17. [25]

    Self-supervised learning of local features in 3d point clouds

    Ali Thabet, Humam Alwassel, and Bernard Ghanem. Self-supervised learning of local features in 3d point clouds. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition workshops, pages 938–939, 2020

  18. [26]

    Self- supervised pretraining of 3d features on any point-cloud

    Zaiwei Zhang, Rohit Girdhar, Armand Joulin, and Ishan Misra. Self- supervised pretraining of 3d features on any point-cloud. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 10252–10263, 2021

  19. [27]

    Vision-based road detection in automotive systems: A real-time expectation-driven approach

    Alberto Broggi and Simona Berte. Vision-based road detection in automotive systems: A real-time expectation-driven approach. Journal of Artificial Intelligence Research , 3:325–348, 1995

  20. [28]

    Real time detection of lane markers in urban streets

    Mohamed Aly. Real time detection of lane markers in urban streets. In 2008 IEEE intelligent vehicles symposium , pages 7–12. IEEE, 2008

  21. [29]

    Detection and tracking of boundary of unmarked roads

    Young-Woo Seo and Ragunathan Raj Rajkumar. Detection and tracking of boundary of unmarked roads. In 17th International Conference on Information Fusion (FUSION) , pages 1–6. IEEE, 2014

  22. [30]

    Autonomous vehicle navigation in rural environments without detailed prior maps

    Teddy Ort, Liam Paull, and Daniela Rus. Autonomous vehicle navigation in rural environments without detailed prior maps. In 2018 IEEE international conference on robotics and automation (ICRA) , pages 2040–2047. IEEE, 2018

  23. [31]

    Variational end-to-end navigation and localization

    Alexander Amini, Guy Rosman, Sertac Karaman, and Daniela Rus. Variational end-to-end navigation and localization. In 2019 International Conference on Robotics and Automation (ICRA) , pages 8958–8964. IEEE, 2019

  24. [32]

    End to end learning for self-driving cars

    Mariusz Bojarski, Davide Del Testa, Daniel Dworakowski, Bernhard Firner, Beat Flepp, Prasoon Goyal, Lawrence D Jackel, Mathew Monfort, Urs Muller, Jiakai Zhang, et al. End to end learning for self-driving cars. arXiv preprint arXiv:1604.07316 , 2016

  25. [33]

    End-to-end driving via conditional imitation learning

    Felipe Codevilla, Matthias M ¨uller, Antonio L ´opez, Vladlen Koltun, and Alexey Dosovitskiy. End-to-end driving via conditional imitation learning. In 2018 IEEE international conference on robotics and automation (ICRA), pages 4693–4700. IEEE, 2018

  26. [34]

    Learning to drive in a day

    Alex Kendall, Jeffrey Hawke, David Janz, Przemyslaw Mazur, Daniele Reda, John-Mark Allen, Vinh-Dieu Lam, Alex Bewley, and Amar Shah. Learning to drive in a day. In 2019 international conference on robotics and automation (ICRA) , pages 8248–8254. IEEE, 2019

  27. [35]

    Eldar, Qi Hao, and Jia Pan

    Ruihua Han, Shuai Wang, Shuaijun Wang, Zeqing Zhang, Qianru Zhang, Yonina C. Eldar, Qi Hao, and Jia Pan. Rda: An accelerated collision free motion planner for autonomous navigation in cluttered environments. IEEE Robotics and Automation Letters , 8(3):1715–1722, 2023

  28. [36]

    A solution for the best rotation to relate two sets of vectors

    Wolfgang Kabsch. A solution for the best rotation to relate two sets of vectors. Acta Crystallographica Section A: Crystal Physics, Diffraction, Theoretical and General Crystallography , 32(5):922–923, 1976

  29. [37]

    CARLA: An open urban driving simulator

    Alexey Dosovitskiy, German Ros, Felipe Codevilla, Antonio Lopez, and Vladlen Koltun. CARLA: An open urban driving simulator. In Proceedings of the 1st Annual Conference on Robot Learning , pages 1–16, 2017

  30. [38]

    Loam: Lidar odometry and mapping in real- time

    Ji Zhang and Sanjiv Singh. Loam: Lidar odometry and mapping in real- time. In Robotics: Science and systems , volume 2, pages 1–9. Berkeley, CA, 2014

  31. [39]

    A density- based spatial clustering of application with noise

    Henrik B ¨acklund, Anders Hedblom, and Niklas Neijman. A density- based spatial clustering of application with noise. Data Mining TNM033, 33:11–30, 2011

  32. [40]

    Pointrcnn: 3d object proposal generation and detection from point cloud

    Shaoshuai Shi, Xiaogang Wang, and Hongsheng Li. Pointrcnn: 3d object proposal generation and detection from point cloud. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , June 2019

  33. [41]

    Gaussian mixture models

    Douglas A Reynolds et al. Gaussian mixture models. Encyclopedia of biometrics, 741(659-663), 2009

Pith tools

Reviewed August 10, 2026 · model on record in the stance chip above.