-
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
5 changed files
with
26 additions
and
5 deletions.
There are no files selected for viewing
Empty file.
7 changes: 7 additions & 0 deletions
7
src/perception/ground_segmentation/config/ransac_ground_filter.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,7 @@ | ||
/**: | ||
ros__parameters: | ||
footprint_frame: base_link | ||
leaf_size: 0.1 | ||
distance_threshold: 0.3 | ||
max_iterations: 1000 | ||
slope_threshold: 10.0 |
Empty file.
14 changes: 14 additions & 0 deletions
14
src/perception/ground_segmentation/launch/ground_segmentation.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="method" default="ransac"/> | ||
|
||
<arg name="input_points_topic" default="/velodyne_points"/> | ||
<arg name="output_points_topic" default="/velodyne_points/obstacle"/> | ||
|
||
<arg name="config_file" default="$(find-pkg-share ground_segmentation)/config/$(var method)_ground_filter.param.yaml"/> | ||
|
||
<node pkg="ground_segmentation" name="$(var method)_ground_filter" exec="$(var method)_ground_filter_node" output="screen"> | ||
<remap from="~/input/points" to="$(var input_points_topic)"/> | ||
<remap from="~/output/points" to="$(var output_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