-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fully integrated with sequence_reader
- Loading branch information
Showing
11 changed files
with
168 additions
and
156 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
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
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,35 @@ | ||
<launch> | ||
<arg name="namespace" default="verdino"/> | ||
<arg name="env_name" default="verdino"/> | ||
<arg name="show_rviz" default="true"/> | ||
|
||
<arg name="input_topic" default="/$(arg namespace)/velodyne_points"/> | ||
|
||
<arg name="do_publish_intermediate_info" value="false" /> | ||
|
||
<arg name="voxel_tracking_params_file" | ||
default="$(find voxel_grid_tracking)/params/voxel_tracking_verdino_params.yaml"/> | ||
|
||
<include file="$(find sequence_reader)/launch/launch.launch"> | ||
<arg name="namespace" value="$(arg namespace)"/> | ||
<arg name="wait_time_sequence_reader" default="200"/> | ||
<arg name="use_rviz" value="false"/> | ||
<arg name="use_elas" value="false"/> | ||
<arg name="use_rsgm" value="false"/> | ||
|
||
<arg name="static_transforms" value="true" /> | ||
<arg name="static_odom2basefootprint" value="false" /> | ||
<arg name="visual_odom" value="false" /> | ||
|
||
<arg name="sequence_file" | ||
value="$(find sequence_reader)/params/kitti_sequence_campus.yaml" /> | ||
</include> | ||
|
||
<include file="$(find voxel_grid_tracking)/launch/launch.launch"> | ||
<arg name="namespace" value="$(arg namespace)"/> | ||
<arg name="env_name" value="$(arg namespace)"/> | ||
<arg name="show_rviz" value="$(arg show_rviz)"/> | ||
<arg name="input_topic" value="/$(arg namespace)/velodyne_points"/> | ||
</include> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
psx: | ||
filter_limit_min: 0.0 | ||
filter_limit_max: 50.0 | ||
filter_limit_max: 20.0 | ||
|
||
psy: | ||
filter_limit_min: -2.0 | ||
filter_limit_max: 2.0 | ||
filter_limit_min: -4.0 | ||
filter_limit_max: 4.0 | ||
|
||
psz: | ||
filter_limit_min: 0.5 | ||
filter_limit_min: 0.75 | ||
filter_limit_max: 4.0 | ||
|
Oops, something went wrong.