-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Autumn60 <[email protected]>
- Loading branch information
Showing
4 changed files
with
42 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,6 @@ if(BUILD_TESTING) | |
endif() | ||
|
||
ament_auto_package(INSTALL_TO_SHARE | ||
# config | ||
# launch | ||
config | ||
launch | ||
) |
9 changes: 9 additions & 0 deletions
9
src/perception/velodyne_cloud_separator/config/velodyne_cloud_separator.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/**: | ||
ros__parameters: | ||
update_rate_hz: 20.0 | ||
sensor_height_m: 0.68 | ||
radius_coef_close: 0.2 | ||
radius_coef_far: 0.7 | ||
max_slope_deg: 10.0 | ||
gap_threshold_m: 0.2 | ||
min_points_per_cluster: 2 |
14 changes: 14 additions & 0 deletions
14
src/perception/velodyne_cloud_separator/launch/velodyne_cloud_separator.launch.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<launch> | ||
<arg name="points_topic" default="/velodyne_points"/> | ||
<arg name="ground_points_topic" default="/velodyne_points/ground"/> | ||
<arg name="obstacle_points_topic" default="/velodyne_points/obstacle"/> | ||
|
||
<arg name="config_file" default="$(find-pkg-share velodyne_cloud_separator)/config/velodyne_cloud_separator.param.yaml"/> | ||
|
||
<node pkg="velodyne_cloud_separator" name="velodyne_cloud_separator" exec="velodyne_cloud_separator_node" output="screen"> | ||
<remap from="~/input/points" to="$(var points_topic)"/> | ||
<remap from="~/output/ground_points" to="$(var ground_points_topic)"/> | ||
<remap from="~/output/obstacle_points" to="$(var obstacle_points_topic)"/> | ||
<param from="$(var config_file)"/> | ||
</node> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters