REVIEW 4 major objections 4 minor 38 references
Multi-LiCa: A Motion and Targetless Multi LiDAR-to-LiDAR Calibration Framework
T0 review · 4 major / 4 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read Multi-LiCa calibrates multiple LiDARs automatically and targetless, with no initial pose guess, from partially overlapping views.
desk verdict A genuinely useful cascading-overlap calibration idea and clean open-source implementation, but the empirical case is thin and the 0.2 fitness gate is the load-bearing assumption that needs real validation. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is a two-stage registration pipeline followed by a greedy merging loop. FPFH descriptors computed on voxelized clouds are matched by TEASER++ to produce a coarse transformation without an initial guess; GICP then refines each source–target pair. The GICP fitness score, defined as the number of inlier correspondences divided by the total points in the target cloud, decides which alignment is accepted, using a threshold of 0.2. Accepted source clouds are transformed and merged into the growing target cloud, and all calibrations involving the newly merged sensor are recomputed, which is what lets sensors with only indirect overlap to the target be calibrated.
What would settle it
Run Multi-LiCa on a rig where one sensor's field of view is completely disjoint from all others, so no overlap chain reaches the target, and observe that the algorithm terminates without calibrating that sensor; or, using two clouds with a known transform, plant a wrong alignment with a GICP fitness above 0.2 and check whether it is merged and propagated.
Extended reading notes
Core claim
The central claim is that the full multi-LiDAR extrinsic calibration problem can be solved automatically under a connected-overlap assumption: every LiDAR must share a field of view, directly or transitively, with a chosen target LiDAR. The pipeline computes a coarse transformation between every pair of voxelized point clouds using FPFH features matched by TEASER++, obtaining a global alignment without any user-provided initial guess. Each pair is then fine-registered with GICP, and the most successful alignment, measured by a fitness score of at least 0.2, is merged into the growing target cloud; all remaining pairs involving the newly merged sensor are recomputed against the merged cloud. This greedy iterative merge allows a sensor like EDGAR's rear LiDAR, which has no direct overlap with any other single sensor in the worst case, to be calibrated through intermediate clouds. The authors claim that on the EDGAR and HeLiPR datasets this approach is on par with or more accurate than the existing CROON method, especially for setups with angled, non-overlapping LiDARs, and is about three times faster.
Load-bearing premise
The method assumes that every LiDAR's field of view overlaps with the target either directly or through a chain of pairwise overlaps, so that the iterative merging can eventually include every sensor; a LiDAR with no overlap to any already-calibrated cloud terminates the algorithm without being calibrated.
Editorial extensions
If this is right
- Multi-LiDAR rigs with partial or chain-connected field-of-view overlaps can be calibrated automatically, without targets, motion, or initial pose estimates, as long as every sensor has a direct or transitive overlap path to the target LiDAR.
- The coarse-to-fine design with FPFH/TEASER++ and GICP removes the need for manual initialization, which the paper shows is critical for angled setups like EDGAR where existing methods cannot align the rear LiDAR.
- Because the iterative merge recomputes alignments against growing clouds, the method scales to any number of sensors with a single parameter set, and the paper demonstrates this on two four-LiDAR setups with different sensor types and scan patterns.
- The optional LiDAR-to-ground calibration step computes roll, pitch, and vertical offset to a base frame from a stationary, flat ground plane, further automating the sensor-to-vehicle calibration.
Reading between the lines
- The greedy merge policy makes calibration order-dependent: the first accepted high-fitness pair biases the growing cloud, so a different initial pairing could yield a different final calibration; a global consistency check across pairwise transformations would make the result more repeatable.
- The fixed fitness threshold of 0.2 could admit a wrong alignment in symmetric or feature-poor scenes, so a validation step that re-checks the final multi-cloud consistency or rejects merges whose relative pose disagrees with other pairwise estimates would add robustness.
- The coarse stage's choice of FPFH/TEASER++ over RANSAC-based feature matching is motivated by robustness; comparing the coarse stage against learned registration methods would clarify the accuracy/runtime trade-off for future setups.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes Multi-LiCa, an automatic, motion- and targetless extrinsic calibration framework for multiple LiDARs. The method first computes coarse alignment using FPFH features on voxelized clouds and TEASER++, then refines with GICP. The key algorithmic contribution is the iterative merging strategy in Algorithm 1: pairwise GICP fitness scores are computed for all available source–target pairs, the pair with the highest fitness is accepted if its score exceeds 0.2, the source cloud is transformed and merged into the growing target cloud, and the process repeats until all LiDARs are calibrated or no pair passes the threshold. This allows calibration of sensors that lack direct FOV overlap by cascading overlaps. The approach is evaluated on ten scenes from the HeLiPR dataset and ten scenes from the EDGAR vehicle, with CROON as the only baseline, and errors are reported as RMSEs in translation and rotation relative to the available ground truth. The paper also includes a LiDAR-to-ground calibration method and states that the source code is available.
Significance. The manuscript addresses a practically relevant problem: calibrating multiple LiDARs with heterogeneous sensing characteristics and only partial or indirect FOV overlap, without manual initial guesses or external targets. The main strengths are the removal of manual initialization, the iterative cloud-merging strategy that extends calibration beyond direct overlap, the explicit statement of the connected-FOV assumption, and the availability of source code. If the reported results were established out-of-sample, the framework would be a useful open-source contribution to the multi-LiDAR calibration literature. However, the central success gate (the fitness threshold), the parameter tuning procedure, and the ground-truth references are not yet validated to the level needed for the quantitative claims; the evaluation is also limited to twenty scenes and a single baseline. These issues are load-bearing for the abstract's claims of generalizability and parity or superiority to existing methods.
major comments (4)
- [Section III.B, Algorithm 1] The decision to accept a merge, and the termination of the whole algorithm, rest entirely on the Open3D GICP fitness score exceeding 0.2, but the manuscript provides no evidence that fitness separates correct from incorrect alignments. Fitness is the ratio of inlier correspondences to target points, i.e., a coverage statistic rather than a correctness certificate; a wrong local minimum with plausible correspondences can exceed 0.2, and because the accepted source cloud is merged into the reference for all subsequently calibrated LiDARs, a single false positive can cascade through the overlap chain. Conversely, a correct low-overlap pair may score below 0.2 and cause premature termination. Please report the distribution of fitness for correct versus incorrect alignments, the actual fitness margins on accepted pairs, and a sensitivity analysis of the threshold, preferably on data not used for tuning.
- [Section III.D and Section IV] The parameters, including voxel size, FPFH radius, GICP settings, and the fitness threshold, were optimized on the same HeLiPR and EDGAR scenes that later appear in the results. The reported accuracy is therefore an in-sample fit rather than an out-of-sample prediction, which weakens the paper's generalizability claim. Please either tune on a separate subset and report test-set results, or show that the results are insensitive to parameter variations over a plausible range, including threshold values around 0.2.
- [Section IV.A and Section IV.B] The two ground-truth references are not adequate for the reported absolute RMSEs. For HeLiPR, the paper states that there is a substantial deviation between the ground-truth pose and the data for the Aeva LiDAR and that the values "have to be looked at in relative terms," yet the reported errors are absolute RMSEs against that same ground truth. For EDGAR, the ground truth comes from a manual alignment of 0.5 m cubes in RVIZ with no uncertainty estimate. Please report relative error comparisons, quantify the ground-truth uncertainty or its influence on the RMSEs, and state whether the conclusions change when the suspected Aeva ground-truth error is removed.
- [Section IV] The evaluation compares only against CROON and covers ten scenes per dataset, with some CROON failures excluded from the plots ("not visible in the plot"). The abstract's claim of being "on par or better in calibration accuracy than existing approaches" cannot be supported by a single baseline and by plots that omit failures. Please include at least one additional recent open-source baseline, report all runs including failures, and provide per-scene and per-LiDAR numeric results rather than only aggregated RMSEs.
minor comments (4)
- [Section III.A] The sentence "An iterative process was used to optimize both the voxel size and the radius size" gives no details on the objective, the search range, or the stopping criterion; please provide this information or point to the exact configuration in the repository.
- [Algorithm 1] The pseudocode is ambiguous about the recomputation step: "Remove all calibrations involving the source LiDAR" is immediately followed by "for each calibration in calibrations tmp involving the last calibrated source," and the conflict between these two operations needs clarification.
- [Section IV] The results are presented only through plots of aggregated RMSEs; numeric tables with per-axis, per-LiDAR values, and confidence intervals would make the comparison reproducible and easier for readers to assess.
- [Section II.A] The evaluation of existing open-source methods is described briefly and relies on the authors' ability to compile and run them; a short table summarizing which methods were attempted and why they were excluded would be helpful context for the choice of CROON as the only baseline.
Circularity Check
The validation is partly circular: the parameter set (including the 0.2 fitness gate) was optimized on the same EDGAR and HeLiPR scenes that later appear as the reported accuracy results, making the headline accuracy an in-sample fit rather than an out-of-sample prediction.
-
fitted input called prediction
[Section III.D and Section IV.A/B]
"For the used methods, e.g., RANSAC, FPFH, TEASER++, and GICP, parameters were examined to determine approximately the optimal values for the calibration process. The priority was on a robust calibration with the best possible accuracy, giving the runtime a lower priority. We computed the variance and the mean average error (MAE) of translational and rotational components and determined the single parameter set used for all calibrations across all configurations and datasets used in this work. ..."
Section III.D states that the parameters were chosen by minimizing MAE on 'all configurations and datasets used in this work' — the same EDGAR and HeLiPR scenes that Section IV uses as the evaluation benchmark. Section III.A further says an 'iterative process was used to optimize both the voxel size and the radius size.' Therefore, the RMSE values reported in Section IV are the training objective evaluated on the training scenes, not an independent test of the method. The abstract's 'better generalized' claim is not supported by a held-out evaluation; the reported accuracy is partly forced by the parameter selection.
-
other
[Section III.B and Algorithm 1]
"For every successful calibration, a source point cloud is transformed into the target point cloud and merged, building a larger cloud. The success of an alignment is measured by the fitness score. We found a score of greater 0.2 sufficient."
The 0.2 fitness threshold is the single gate that decides whether a transform is accepted, whether the source cloud is merged, and whether the loop continues or terminates in Algorithm 1. The paper states that this value was found by testing ('We found a score of greater 0.2 sufficient'), and the parameter-optimization section indicates that thresholds were examined on the same EDGAR/HeLiPR data used later for evaluation. No distribution of fitness scores for correct vs. incorrect alignments or sensitivity analysis is provided, so the reported successful cascade on those datasets is an in-sample outcome of a threshold tuned on them rather than an independently validated success criterion.
full rationale
The transformation pipeline itself is not circular by construction: coarse alignment computes FPFH features and TEASER++ transforms from the point clouds, fine registration uses Open3D GICP, and the iterative merging is a deterministic heuristic whose inputs are point clouds, not the target extrinsic parameters. No load-bearing uniqueness theorem or self-citation supplies the result; the cited prior work (CROON, FPFH, TEASER++, GICP, Open3D, HeLiPR) is external, and the only self-citations (EDGAR [9], GMMCalib [15]) are background references, not argumentative support. However, the empirical validation is partially circular: Section III.D optimizes the method's parameters using the same EDGAR and HeLiPR datasets whose accuracy is then reported in Section IV. The fitness threshold used in Algorithm 1 as the acceptance/termination gate is part of that tuned parameter set ('We found a score of greater 0.2 sufficient'). Thus the headline claim of 'on par or better in calibration accuracy' rests on in-sample accuracy numbers rather than out-of-sample predictions. This prevents the paper from being assigned a low score, but the core method is an independent algorithmic pipeline, so a score of 6 reflecting partial, evaluation-level circularity is appropriate.
Assumptions & free parameters
free parameters (4)
- voxel_size =
0.35 m
- fpfh_radius =
1.75 m (five times voxel size)
- fitness_threshold =
0.2
- ransac_fpfh_teaser_gicp_parameters =
Not listed in paper (deferred to GitHub)
assumptions (5)
- standard math TEASER++, FPFH, and GICP implementations behave as documented and provide the expected registration solutions.
- domain assumption The FOV overlap graph contains a connected path to the target LiDAR.
- domain assumption The scene is static and point clouds are undistorted.
- ad hoc to paper A GICP fitness score above 0.2 implies a correct alignment.
- domain assumption The manual EDGAR ground truth is accurate.
Cite this review
Pith. "Pith review of Multi-LiCa: A Motion and Targetless Multi LiDAR-to-LiDAR Calibration Framework." pith.science (2026). https://pith.science/paper/VRZWFEJS
@misc{pith2026250111088,
author = {Pith},
title = {Pith review of: Multi-LiCa: A Motion and Targetless Multi LiDAR-to-LiDAR Calibration Framework},
year = {2026},
howpublished = {\url{https://pith.science/paper/VRZWFEJS}},
note = {Machine review of arXiv:2501.11088}
}
read the original abstract
Today's autonomous vehicles rely on a multitude of sensors to perceive their environment. To improve the perception or create redundancy, the sensor's alignment relative to each other must be known. With Multi-LiCa, we present a novel approach for the alignment, e.g. calibration. We present an automatic motion- and targetless approach for the extrinsic multi LiDAR-to-LiDAR calibration without the need for additional sensor modalities or an initial transformation input. We propose a two-step process with feature-based matching for the coarse alignment and a GICP-based fine registration in combination with a cost-based matching strategy. Our approach can be applied to any number of sensors and positions if there is a partial overlap between the field of view of single sensors. We show that our pipeline is better generalized to different sensor setups and scenarios and is on par or better in calibration accuracy than existing approaches. The presented framework is integrated in ROS 2 but can also be used as a standalone application. To build upon our work, our source code is available at: https://github.com/TUMFTM/Multi_LiCa.
Figures
Figures from the paper (4 more)
Reference graph
Works this paper leans on
-
[1]
A review and perspective on optical phased array for automotive lidar,
C.-P. Hsu, B. Li, B. Solano-Rivas, A. R. Gohil, P. H. Chan, A. D. Moore, and V . Donzella, “A review and perspective on optical phased array for automotive lidar,” IEEE Journal of Selected Topics in Quantum Electronics, vol. 27, no. 1, pp. 1–16, 2021
work page 2021
-
[2]
Positioning and body integration of sensors in autonomous shuttle vehicles,
P. Hafemann, A. L. Prat, and M. Lienkamp, “Positioning and body integration of sensors in autonomous shuttle vehicles,” Stuttgarter Symposium Fuer Produktentwicklun , 2023
work page 2023
-
[3]
A survey on autonomous driving datasets: Statistics, annotation quality, and a future outlook,
M. Liu, E. Yurtsever, J. Fossaert, X. Zhou, W. Zimmer, Y . Cui, B. L. Zagar, and A. C. Knoll, “A survey on autonomous driving datasets: Statistics, annotation quality, and a future outlook,” 2024
work page 2024
-
[4]
The apolloscape open dataset for autonomous driving and its application,
P. Wang, X. Huang, X. Cheng, D. Zhou, Q. Geng, and R. Yang, “The apolloscape open dataset for autonomous driving and its application,” IEEE transactions on pattern analysis and machine intelligence, 2019
2019
-
[5]
nuscenes: A multimodal dataset for autonomous driving,
H. Caesar, V . Bankiti, A. H. Lang, S. V ora, V . E. Liong, Q. Xu, A. Krishnan, Y . Pan, G. Baldan, and O. Beijbom, “nuscenes: A multimodal dataset for autonomous driving,” in CVPR, 2020
2020
-
[6]
Scalability in perception for autonomous driving: Waymo open dataset,
P. Sun, H. Kretzschmar, X. Dotiwalla, A. Chouard, V . Patnaik, P. Tsui, J. Guo, Y . Zhou, Y . Chai, B. Caine, V . Vasudevan, W. Han, J. Ngiam, H. Zhao, A. Timofeev, S. Ettinger, M. Krivokon, A. Gao, A. Joshi, Y . Zhang, J. Shlens, Z. Chen, and D. Anguelov, “Scalability in perception for autonomous driving: Waymo open dataset,” in Proceed- ings of the IEEE...
2020
-
[7]
Are we ready for autonomous driving? the kitti vision benchmark suite,
A. Geiger, P. Lenz, and R. Urtasun, “Are we ready for autonomous driving? the kitti vision benchmark suite,” in 2012 IEEE Conference on Computer Vision and Pattern Recognition , 2012, pp. 3354–3361
2012
-
[8]
Argoverse 2: Next generation datasets for self-driving perception and forecasting,
B. Wilson, W. Qi, T. Agarwal, J. Lambert, J. Singh, S. Khandelwal, B. Pan, R. Kumar, A. Hartnett, J. K. Pontes, D. Ramanan, P. Carr, and J. Hays, “Argoverse 2: Next generation datasets for self-driving perception and forecasting,” in Proceedings of the Neural Information Processing Systems Track on Datasets and Benchmarks (NeurIPS Datasets and Benchmarks ...
2021
Show all 38 references
-
[9]
Edgar: An autonomous driving research platform–from feature development to real-world application,
P. Karle, T. Betz, M. Bosk, F. Fent, N. Gehrke, M. Geisslinger, L. Gressenbuch, P. Hafemann, S. Huber, M. H ¨ubner, et al. , “Edgar: An autonomous driving research platform–from feature development to real-world application,” arXiv preprint arXiv:2309.15492 , 2023
2023 arXiv
-
[10]
CROON: Automatic Multi-LiDAR Calibration and Refinement Method in Road Scene,
P. Wei, G. Yan, Y . Li, K. Fang, X. Cai, J. Yang, and W. Liu, “CROON: Automatic Multi-LiDAR Calibration and Refinement Method in Road Scene,” in 2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) . IEEE, 2022, pp. 12 857–12 863
2022
-
[11]
Optimising the selection of samples for robust lidar camera calibration,
D. Tsai, S. Worrall, M. Shan, A. Lohr, and E. Nebot, “Optimising the selection of samples for robust lidar camera calibration,” 2021
2021
-
[12]
Extrinsic 6dof calibration of a radar–lidar–camera system enhanced by radar cross section estimates evaluation,
J. Per ˇsi´c, I. Markovi ´c, and I. Petrovi ´c, “Extrinsic 6dof calibration of a radar–lidar–camera system enhanced by radar cross section estimates evaluation,” Robotics and Autonomous Systems, vol. 114, pp. 217–230, 2019
2019
-
[13]
On-line calibration of multiple lidars on a mobile vehicle platform,
C. Gao and J. R. Spletzer, “On-line calibration of multiple lidars on a mobile vehicle platform,” in 2010 IEEE International Conference on Robotics and Automation , 2010, pp. 279–284
2010
-
[14]
Automatic extrinsic calibration method for lidar and camera sensor setups,
J. Beltran, C. Guindel, A. de la Escalera, and F. Garcia, “Automatic extrinsic calibration method for lidar and camera sensor setups,” IEEE Transactions on Intelligent Transportation Systems , vol. 23, no. 10, p. 17677–17689, Oct. 2022. [Online]. Available: http://dx.doi.org/1...
2022
-
[15]
Gmmcalib: Extrinsic calibration of lidar sensors using gmm-based joint registra- tion,
I. Tahiraj, F. Fent, P. Hafemann, E. Ye, and M. Lienkamp, “Gmmcalib: Extrinsic calibration of lidar sensors using gmm-based joint registra- tion,” 2024
2024
-
[16]
OpenCalib: A Multi- sensor Calibration Toolbox for Autonomous Driving,
G. Yan, L. Zhuochun, C. Wang, C. Shi, P. Wei, X. Cai, T. Ma, Z. Liu, Z. Zhong, Y . Liu, M. Zhao, Z. Ma, and Y . Li, “OpenCalib: A Multi- sensor Calibration Toolbox for Autonomous Driving,” 2022
2022
-
[17]
Lidar-lidar calibration,
Deepen AI, “Lidar-lidar calibration,” https://help.deepen. ai/deepen-ai-enterprise/calibration/lidar-lidar-calibration# calibration-instructions-page, 2024, accessed: Jan. 31, 2024
2024
-
[18]
Observability- aware online multi-lidar extrinsic calibration,
S. Das, L. a. Klinteberg, M. Fallon, and S. Chatterjee, “Observability- aware online multi-lidar extrinsic calibration,” IEEE Robotics and Automation Letters, vol. 8, no. 5, pp. 2860–2867, 2023
2023
-
[19]
Extrinsic calibration of multiple lidars of small fov in targetless environments,
X. Liu and F. Zhang, “Extrinsic calibration of multiple lidars of small fov in targetless environments,” IEEE Robotics and Automation Letters, vol. 6, no. 2, pp. 2036–2043, 2021
2021
-
[20]
Extrinsic calibration and verification of multiple non-overlapping field of view lidar sensors,
S. Das, N. Mahabadi, A. Djikic, C. Nassir, S. Chatterjee, and M. Fal- lon, “Extrinsic calibration and verification of multiple non-overlapping field of view lidar sensors,” in 2022 International Conference on Robotics and Automation (ICRA) , 2022, pp. 919–925
2022
-
[21]
calibration tools,
AutoCore, “calibration tools,” https://github.com/autocore-ai/ calibration tools/tree/main/lidar-lidar-calib, 2023, accessed: Nov. 13, 2023, GitHub
2023
-
[22]
Generalized-icp,
A. Segal, D. Haehnel, and S. Thrun, “Generalized-icp,” 2009
2009
-
[23]
V oxelized gicp for fast and accurate 3d point cloud registration,
K. Koide, M. Yokozuka, S. Oishi, and A. Banno, “V oxelized gicp for fast and accurate 3d point cloud registration,” in 2021 IEEE International Conference on Robotics and Automation (ICRA) , 2021, pp. 11 054–11 059
2021
-
[24]
High- accuracy patternless calibration of multiple 3-d lidars for autonomous vehicles,
M. A. de Miguel, C. Guindel, A. Al-Kaff, and F. Garc ´ıa, “High- accuracy patternless calibration of multiple 3-d lidars for autonomous vehicles,” IEEE Sensors Journal , vol. 23, no. 11, pp. 12 200–12 208, 2023
2023
-
[25]
Observability- aware online multi-lidar extrinsic calibration,
S. Das, L. a. Klinteberg, M. Fallon, and S. Chatterjee, “Observability- aware online multi-lidar extrinsic calibration,” IEEE Robotics and Automation Letters, vol. 8, no. 5, p. 2860–2867, May 2023. [Online]. Available: http://dx.doi.org/10.1109/LRA.2023.3262176
2023
-
[26]
Targetless extrinsic calibration of multiple small fov lidars and cameras using adaptive voxelization,
X. Liu, C. Yuan, and F. Zhang, “Targetless extrinsic calibration of multiple small fov lidars and cameras using adaptive voxelization,” IEEE Transactions on Instrumentation and Measurement , vol. 71, pp. 1–12, 2022
2022
-
[27]
Automatic calibration of multiple 3d lidars in urban environments,
J. Jiao, Y . Yu, Q. Liao, H. Ye, and M. Liu, “Automatic calibration of multiple 3d lidars in urban environments,” 2019
2019
-
[28]
Piscataway, New Jersey: IEEE, 2019
Jianhao Jiao, Qinghai Liao, Yilong Zhu, Tianyu Liu, Yang Yu, Rui Fan, Lujia Wang, and Ming Liu, A Novel Dual-Lidar Calibration Algorithm Using Planar Surfaces . Piscataway, New Jersey: IEEE, 2019
2019
-
[29]
Extrinsic calibration of multiple 3d lidar sensors by the use of planar objects,
H. Lee and W. Chung, “Extrinsic calibration of multiple 3d lidar sensors by the use of planar objects,” Sensors, vol. 22, no. 19, 2022. [Online]. Available: https://www.mdpi.com/1424-8220/22/19/7234
2022
-
[30]
Autoware ros1 ndt-calibration,
Ridecell, “Autoware ros1 ndt-calibration,” https://github.com/ Ridecell/Autoware/blob/master/ros/src/sensing/fusion/packages/ multi lidar calibrator, 2023, accessed: Nov. 17, 2023, GitHub
2023
-
[31]
Scan registration for autonomous mining vehicles using 3d-ndt,
M. Magnusson, A. Lilienthal, and T. Duckett, “Scan registration for autonomous mining vehicles using 3d-ndt,” Journal of Field Robotics, vol. 24, no. 10, pp. 803–827, 2007
2007
-
[32]
Pairwise lidar calibration using multi-type 3d geometric features in natural scene,
M. He, H. Zhao, F. Davoine, J. Cui, and H. Zha, “Pairwise lidar calibration using multi-type 3d geometric features in natural scene,” in 2013 IEEE/RSJ International Conference on Intelligent Robots and Systems, 2013, pp. 1828–1835
2013
-
[33]
Automatic multiple lidar calibration based on the plane features of structured environments,
D.-H. Kim and G.-W. Kim, “Automatic multiple lidar calibration based on the plane features of structured environments,” IEEE Access, vol. 9, pp. 84 387–84 402, 2021
2021
-
[34]
A target-free automatic self- calibration approach for multibeam laser scanners,
Z. Gong, C. Wen, C. Wang, and J. Li, “A target-free automatic self- calibration approach for multibeam laser scanners,” IEEE Transactions on Instrumentation and Measurement , vol. 67, no. 1, pp. 238–240, 2018
2018
-
[35]
Fast point feature histograms (fpfh) for 3d registration,
R. B. Rusu, N. Blodow, and M. Beetz, “Fast point feature histograms (fpfh) for 3d registration,” in 2009 IEEE International Conference on Robotics and Automation , 2009, pp. 3212–3217
2009
-
[36]
TEASER: Fast and Certifiable Point Cloud Registration,
H. Yang, J. Shi, and L. Carlone, “TEASER: Fast and Certifiable Point Cloud Registration,” IEEE Trans. Robotics , 2020
2020
-
[37]
Generalized icp registration — open3d 0.17.0 documenta- tion,
Open3D, “Generalized icp registration — open3d 0.17.0 documenta- tion,” http://www.open3d.org/docs/latest/python api/open3d.pipelines. registration.registration generalized icp.html, 2023, accessed: Nov. 29, 2023
2023
-
[38]
Helipr: Heterogeneous lidar dataset for inter-lidar place recognition under spatial and temporal variations,
M. Jung, W. Yang, D. Lee, H. Gil, G. Kim, and A. Kim, “Helipr: Heterogeneous lidar dataset for inter-lidar place recognition under spatial and temporal variations,” 2023
2023
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.