You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-4Lines changed: 19 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
18
18
## Concept
19
19
20
-
We use reference maps in combination with classical LiDAR odometry to enable drift-free localization/mapping. Our approach was developed for high-precision mapping. It enables georeferenced LiDAR-only point cloud mapping without GNSS. A detailed description of our pipeline can be found in the linked paper.
20
+
We use reference maps in combination with classical LiDAR odometry to enable drift-free localization/mapping. Our approach is designed for highprecision mapping. It enables georeferenced LiDAR-only point cloud mapping without GNSS. A detailed description of our pipeline can be found in the linked paper.
@@ -26,7 +26,7 @@ We use reference maps in combination with classical LiDAR odometry to enable dri
26
26
<details>
27
27
<summary>Install</summary>
28
28
29
-
We provide a Docker image on Docker Hub, which will automatically pulled within the Run section, but you also have the option to build is locally.
29
+
We provide a Docker image on Docker Hub, which will automatically be pulled within the Run section, but you also have the option to build it locally.
30
30
```sh
31
31
./docker/build_docker.sh # (optional)
32
32
```
@@ -35,7 +35,7 @@ We provide a Docker image on Docker Hub, which will automatically pulled within
35
35
<details>
36
36
<summary>Run</summary>
37
37
38
-
To use our approach, you need a reference map and an initial guess for the first pose.
38
+
To use our approach, you need a reference map and an initial guess of the first pose.
39
39
40
40
The easiest way to use our approach is with the provided Docker image.
41
41
```sh
@@ -49,6 +49,21 @@ The output of the algorithm are poses in the KITTI format.
49
49
50
50
We also provide Python bindings. Have a look in the `python` folder, where we provide a test script.
51
51
52
+
</details>
53
+
<details>
54
+
<summary>Configure</summary>
55
+
56
+
The configuration of this pipeline can be changed in the `cpp/config` files. The naming suggest the intended usecase for the files. The most important parameters to play with if your results are not as good as expected are:
| pipeline_.visualize | Toggle GUI |`true`| use `false` on headless servers |
61
+
| preprocess_.downsampling_resolution | Scans are voxelized before usage |`1.5`| Reduce the size for increased robustness |
62
+
| preprocess_.num_neighbors | Points for covariance calculation |`10`| Try both directions |
63
+
| registration_.voxel_resolution | Voxelhashmap voxel size |`1.0`| Reduce the size for increased robustness |
64
+
| registration_.lambda | Optimization dampening factor |`1.0`| Increase to increase the robustness |
65
+
66
+
52
67
</details>
53
68
<details>
54
69
<summary>Develop</summary>
@@ -82,7 +97,7 @@ pip install -e .
82
97
83
98
## Acknowledgement
84
99
85
-
Great inspiration was taken from the following repositories. If you are using our work, please also leave a star at their repositories and cite their work.
100
+
Great inspiration has come from the following repositories. If you use our work, please also leave a star in their repositories and cite their work.
0 commit comments