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
+21-7
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
8
8
## Overview
9
9
10
-
Implementation of differents algorithms for segmentation of laserscans, splitting them into subsets of beams, with a ROS2 interface. The currently implemented algorithm are:
10
+
Implementation of different algorithms for segmentation of laserscans, splitting them into subsets of beams, with a ROS2 interface. The currently implemented algorithm are:
11
11
12
12
***`Jump distance clustering:`** widely used method for 2D laser range data in mobile robotics. It's a simple and fast method to segment the scans: if the Euclidean distance between two adjacent beams exceeds a given threshold distance, a new segment is generated.
13
13
***`Jump distance clustering and merge:`** Similar algorithm as above but checks if pre-predecessor segments are close to each other. This deals with over-segmented data with many small cluster in outdoor environment. It uses the same threshold condition twice.
@@ -28,6 +28,15 @@ The laser_segmentation package has been tested under [ROS2] Jazzy on [Ubuntu] 24
28
28
29
29
## Installation
30
30
31
+
### Binaries
32
+
33
+
On Ubuntu 24.04 you can install the latest version of this package using the following command
34
+
35
+
```bash
36
+
sudo apt-get update
37
+
sudo apt-get install ros-jazzy-laser-segmentation
38
+
```
39
+
31
40
### Building from Source
32
41
33
42
#### Dependencies
@@ -39,16 +48,21 @@ The laser_segmentation package has been tested under [ROS2] Jazzy on [Ubuntu] 24
39
48
40
49
To build from source, clone the latest version from the main repository into your colcon workspace and compile the package using
0 commit comments