forked from ZebraDevs/fetch_ros
-
Notifications
You must be signed in to change notification settings - Fork 0
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 ZebraDevs#8 from fetchrobotics/allow_active_sensing
add octomap configuration
- Loading branch information
Showing
4 changed files
with
20 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
sensors: | ||
- sensor_plugin: occupancy_map_monitor/PointCloudOctomapUpdater | ||
point_cloud_topic: /head_camera/depth_downsample/points | ||
max_range: 1.5 | ||
point_subsample: 1 | ||
padding_offset: 0.05 | ||
padding_scale: 1.0 |
10 changes: 10 additions & 0 deletions
10
fetch_moveit_config/launch/fetch_moveit_sensor_manager.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 |
---|---|---|
@@ -1,3 +1,13 @@ | ||
<launch> | ||
|
||
<!-- Set the file describing which sensor(s) to use to build the octomap --> | ||
<arg name="moveit_octomap_sensor_params_file" default="$(find fetch_moveit_config)/config/sensors.yaml" /> | ||
|
||
<!-- Params for the octomap monitor --> | ||
<param name="octomap_frame" type="string" value="base_link" /> | ||
<param name="octomap_resolution" type="double" value="0.05" /> | ||
|
||
<!-- sensors used to update the map --> | ||
<rosparam command="load" file="$(arg moveit_octomap_sensor_params_file)" /> | ||
|
||
</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
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