Skip to content
Snippets Groups Projects
Commit 76605f12 authored by Rick Staa's avatar Rick Staa Committed by Robert Haschke
Browse files
parent d6f58e75
No related branches found
No related tags found
No related merge requests found
sensors:
[]
\ No newline at end of file
sensors:
- sensor_plugin: occupancy_map_monitor/DepthImageOctomapUpdater
image_topic: /camera/depth_registered/image_raw
queue_size: 5
near_clipping_plane_distance: 0.3
far_clipping_plane_distance: 5.0
shadow_threshold: 0.2
padding_scale: 4.0
padding_offset: 0.03
max_update_rate: 1.0
filtered_cloud_topic: filtered_cloud
sensors:
- sensor_plugin: occupancy_map_monitor/PointCloudOctomapUpdater
point_cloud_topic: /camera/depth_registered/points
max_range: 5.0
point_subsample: 1
padding_offset: 0.1
padding_scale: 1.0
max_update_rate: 1.0
filtered_cloud_topic: filtered_cloud
...@@ -2,11 +2,13 @@ ...@@ -2,11 +2,13 @@
<!-- This file makes it easy to include the settings for sensor managers --> <!-- This file makes it easy to include the settings for sensor managers -->
<!-- Params for 3D sensors config --> <!-- Params for 3D sensors config: '' | pointcloud | depthmap -->
<rosparam command="load" file="$(find panda_moveit_config)/config/sensors_3d.yaml" /> <arg name="sensor_type" default="" />
<rosparam if="$(eval arg('sensor_type') != '')" command="load" file="$(find panda_moveit_config)/config/sensors_kinect_$(arg sensor_type).yaml" />
<!-- Params for the octomap monitor --> <!-- Params for the octomap monitor -->
<!-- <param name="octomap_frame" type="string" value="some frame in which the robot moves" /> --> <!-- <param name="octomap_frame" type="string" value="some frame in which the robot moves" /> -->
<param name="octomap_frame" type="string" value="camera_rgb_optical_frame" />
<param name="octomap_resolution" type="double" value="0.025" /> <param name="octomap_resolution" type="double" value="0.025" />
<param name="max_range" type="double" value="5.0" /> <param name="max_range" type="double" value="5.0" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment