-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from k-okada/hydro-devel
use `arg` for all parameters for ground filtering
- Loading branch information
Showing
1 changed file
with
12 additions
and
8 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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
<launch> | ||
<node pkg="semantic_point_annotator" type="sac_inc_ground_removal_node" name="sac_ground_removal" machine="c2" > | ||
<remap from="tilt_laser_cloud_filtered" to="tilt_scan_filtered" /> | ||
<remap from="cloud_ground_filtered" to="ground_object_cloud" /> | ||
<param name="z_threshold" value="0.15" /> | ||
<param name="sac_min_points_per_model" value="40" /> | ||
<param name="sac_distance_threshold" value="0.05" /> | ||
<param name="planar_refine" value="1" /> | ||
</node> | ||
<arg name="z_threshold" value="0.15" /> | ||
<arg name="sac_min_points_per_model" value="40" /> | ||
<arg name="sac_distance_threshold" value="0.05" /> | ||
<arg name="planar_refine" value="1" /> | ||
<node pkg="semantic_point_annotator" type="sac_inc_ground_removal_node" name="sac_ground_removal" machine="c2" > | ||
<remap from="tilt_laser_cloud_filtered" to="tilt_scan_filtered" /> | ||
<remap from="cloud_ground_filtered" to="ground_object_cloud" /> | ||
<param name="z_threshold" value="$(arg z_threshold)" /> | ||
<param name="sac_min_points_per_model" value="$(arg sac_min_points_per_model)" /> | ||
<param name="sac_distance_threshold" value="$(arg sac_distance_threshold)" /> | ||
<param name="planar_refine" value="$(arg planar_refine)" /> | ||
</node> | ||
</launch> |