Skip to content

Commit 1594013

Browse files
committed
formatting and references for actucal use-cases
1 parent 8a0d086 commit 1594013

File tree

2 files changed

+45
-4
lines changed

2 files changed

+45
-4
lines changed

docs/paper.bib

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,41 @@ @INPROCEEDINGS{Foote2013
111111
pages={1-6},
112112
keywords={Irrigation;Accuracy},
113113
doi={10.1109/TePRA.2013.6556373}
114-
}
114+
}
115+
116+
@misc{Kulmer2025-2,
117+
author = {Kulmer, Dominik and Tahiraj, Ilir and Lienkamp, Markus},
118+
title = {{Autonomous Driver Licence (ADL) dataset}},
119+
type = {Dataset},
120+
year = {2025},
121+
type = {Forschungsdaten},
122+
keywords = {Autonomous Driving; Autonomous Driver Licence; EDGAR},
123+
doi = {10.14459/2025mp1785105}
124+
}
125+
126+
@conference{Leitenstern2025,
127+
author={Maximilian Leitenstern and Marko Alten and Christian Bolea{-}Schaser and Dominik Kulmer and Marcel Weinmann and Markus Lienkamp},
128+
title={FlexCloud: Direct, Modular Georeferencing and Drift-Correction of Point Cloud Maps},
129+
booktitle={Proceedings of the 11th International Conference on Vehicle Technology and Intelligent Transport Systems - VEHITS},
130+
year={2025},
131+
pages={157-165},
132+
publisher={SciTePress},
133+
organization={INSTICC},
134+
doi={10.5220/0013359600003941},
135+
isbn={978-989-758-745-0},
136+
issn={2184-495X},
137+
}
138+
139+
@conference{Kulmer2025-1,
140+
author={Kulmer, Dominik and Leitenstern, Maximilian and Weinmann, Marcel and Lienkamp, Markus},
141+
title={OpenLiDARMap: Zero-Drift Point Cloud Mapping Using Map Priors},
142+
booktitle={Proceedings of the 11th International Conference on Vehicle Technology and Intelligent Transport Systems - VEHITS},
143+
year={2025},
144+
pages={178-188},
145+
publisher={SciTePress},
146+
organization={INSTICC},
147+
doi={10.5220/0013405400003941},
148+
isbn={978-989-758-745-0},
149+
issn={2184-495X},
150+
}
151+

docs/paper.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ authors:
1515
equal-contrib: true
1616
affiliation: 1
1717
affiliations:
18-
- name: Institute of Automotive Technology, Department of Mobility System Engineering, School of Engineering and Design, Technical University of Munich, Germany
18+
- name: Institute of Automotive Technology, Department of Mobility System Engineering, School of Engineering and Design, Technical University of Munich, Germany.
1919
index: 1
2020
date: 25.January 2026
2121
bibliography: paper.bib
@@ -40,7 +40,7 @@ The Point Cloud Library (PCL) [@Rusu2011] provides a comprehensive set of data s
4040
PDAL [@PDAL2022] is a mature framework for large-scale geospatial point cloud processing and provides a flexible pipeline abstraction for working with formats such as LAS and LAZ. While PDAL is well-suited for geospatial analysis and national lidar datasets, it does not natively integrate with robotic middleware or support time-resolved transformations based on sensor pose information.
4141
Recent toolkits such as PointClouds.jl [@Schmid2025] provide efficient and flexible programmatic interfaces for point cloud processing within the Julia ecosystem, with a focus on interactive development and integration with geospatial data sources. While well-suited for algorithm development and exploratory analysis, such approaches require users to implement custom processing logic and are not designed as standalone command-line tools for automated conversion of robotic middleware data. Libraries such as libpointmatcher [@Pomerleau2013] focus on modular implementations of point cloud registration algorithms and are typically embedded within state estimation or SLAM systems rather than used for dataset-level preprocessing and format conversion.
4242

43-
A further limitation of many existing tools is the implicit assumption of fixed-point schemas. Conversion utilities and parsers often restrict data to spatial coordinates and optional color information, discarding non-standard scalar fields. However, many scientific applications depend on additional per-point attributes. Automotive LiDAR sensors provide channels such as intensity, timestamp, and ring index, which are required for calibration, motion correction, and mapping. Furthermore, novel imaging RaDAR sensors export point cloud data with metadata, such as Doppler velocity, RaDAR-cross-section, or signal-to-noise-ratio. In other domains, including structural biology, point clouds may encode physicochemical properties such as hydrophobicity or electrostatic potential [@Parigger2024, @Bazzano2025]. Preserving these attributes across processing steps is essential for reproducibility and downstream analysis.
43+
A further limitation of many existing tools is the implicit assumption of fixed-point schemas. Conversion utilities and parsers often restrict data to spatial coordinates and optional color information, discarding non-standard scalar fields. However, many scientific applications depend on additional per-point attributes. Automotive LiDAR sensors provide channels such as intensity, timestamp, and ring index, which are required for calibration, motion correction, and mapping. Furthermore, novel imaging RaDAR sensors export point cloud data with metadata, such as Doppler velocity, RaDAR-cross-section, or signal-to-noise-ratio. In other domains, including structural biology, point clouds may encode physicochemical properties such as hydrophobicity or electrostatic potential [@Parigger2024; @Bazzano2025]. Preserving these attributes across processing steps is essential for reproducibility and downstream analysis.
4444

4545
PointCloudCrafter addresses these needs by providing a lightweight CLI toolkit focused on batch-oriented point cloud conversion and processing. The primary software contribution is a schema-agnostic, command-line-driven framework that unifies middleware-based and file-based point cloud processing while preserving arbitrary per-point attributes. Arbitrary scalar fields refer to dynamically discovered per-point attributes whose names, data types, and memory layout are preserved without enforcing a predefined schema.
4646

@@ -51,10 +51,14 @@ PointCloudCrafter provides two primary execution modes, *rosbag* and *file*, for
5151
The *rosbag* mode enables extraction of `sensor_msgs::msg::PointCloud2` topics from ROS2 bag recordings. This mode integrates with the `TF2` library [@Foote2013] to perform time-resolved pose lookups based on the recorded transform tree. Each point cloud can be transformed from the sensor coordinate frame into a user-specified fixed reference frame using the pose corresponding to the exact acquisition timestamp. This enables motion-consistent export of point cloud data from dynamic sensor platforms and a timestamp-based fusion of different point cloud sensor topics.
5252

5353
The *file* mode focuses on batch processing of static point cloud files. Supported formats include common text and binary formats such as PLY, PCD, OBJ, and TXT, as well as dataset-specific binary formats used in KITTI [@KITTI2012] and nuScenes [@nuScenes2019].
54+
5455
Both execution modes rely internally on the `PCLPointCloud2` data structure, enabling schema-agnostic handling of point attributes. They allow users to apply rigid-body transformations, merge multiple point clouds into a single representation, and perform filtering operations. Implemented filters include geometric cropping using box, sphere, or cylindrical regions, voxel grid downsampling, and statistical or radius-based outlier removal. As a result of the implemented data formats, the processed point clouds can also be converted into other data formats.
55-
All processing steps are fully parameterized via command-line options, enabling deterministic, reproducible execution across datasets. A comprehensive overview of the functions and the parameterization can be found at \url{https://tumftm.github.io/PointCloudCrafter/usage.html}
56+
All processing steps are fully parameterized via command-line options, enabling deterministic, reproducible execution across datasets.
57+
58+
A comprehensive overview of the functions and the parameterization can be found at \url{https://tumftm.github.io/PointCloudCrafter/usage.html}
5659

5760
A typical use case is the extraction of LiDAR scans from ROS2 bag recordings, transformation into a global reference frame using an externally estimated trajectory, and aggregation into a static map for offline evaluation. This workflow can be executed in a single batch process while preserving sensor-specific scalar fields required for subsequent analysis.
61+
Early versions of PointCloudCrafter have been used in diverse student research projects, scientific publications [@Leitenstern2025; @Kulmer2025-2], and the creation of datasets [@Kulmer2025-1].
5862

5963
# Acknowledgements
6064

0 commit comments

Comments
 (0)