Changing Octomap resolution in humble #3071
Answered
by
Danilrivero
agraussgrimbergen
asked this question in
Q&A
-
For ROS1 there was a param that could be set to change the resolution of the octomap voxels. Is there a similar configuration to set for ROS2? I am currently using humble specifically. I have only seen padding settings in the sensors.yaml file. Any help would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Answered by
Danilrivero
Nov 13, 2024
Replies: 1 comment 1 reply
-
You can change it by setting up another field like this: sensors:
- default_sensor
default_sensor:
filtered_cloud_topic: filtered_cloud
max_range: 3.0
max_update_rate: 1.0
padding_offset: 0.01
padding_scale: 0.01
point_cloud_topic: /camera/depth/color/points
point_subsample: 1
sensor_plugin: occupancy_map_monitor/PointCloudOctomapUpdater
octomap_resolution: 0.02 Alternatively, you can setup your values like this in your launch file: octomap_updater = { 'octomap_resolution': 0.02 } And add it as a parameter to your move_group node. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sea-bass
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can change it by setting up another field like this:
Alternatively, you can setup your values like this in your launch file:
And add it as a parameter to your move_group node.