Skip to content
Snippets Groups Projects
Commit 48e0c0ad authored by Fabian Reister's avatar Fabian Reister
Browse files

Merge branch 'feature/add-costmap-weight' into 'dev'

Feature/add costmap weight

See merge request ArmarX/skills/navigation!52
parents d928c26f 8fe4e2c0
No related branches found
No related tags found
2 merge requests!52Feature/add costmap weight,!28Draft: Dev -> Main
......@@ -6,6 +6,7 @@
"pse": {
"pse_costum_obstacle_penalties": true,
"pse_costum_obstacle_penalties_dynamic": true,
"weight_costmap": 0.5,
"weight_global_path_position": 0.3,
"weight_global_path_orientation": 0.3,
"lrk_use_alternative_approach": false,
......
......@@ -14,6 +14,10 @@
<bool />
</ObjectChild>
<ObjectChild key='weight_costmap'>
<float />
</ObjectChild>
<ObjectChild key='weight_global_path_position'>
<float />
</ObjectChild>
......
......@@ -29,6 +29,7 @@ namespace armarx::navigation::local_planning
bo.pse.pse_costum_obstacle_penalties = dto.teb_config.pse.pse_costum_obstacle_penalties;
bo.pse.pse_costum_obstacle_penalties_dynamic =
dto.teb_config.pse.pse_costum_obstacle_penalties_dynamic;
bo.pse.weight_costmap = dto.teb_config.pse.weight_costmap;
bo.pse.weight_global_path_position = dto.teb_config.pse.weight_global_path_position;
bo.pse.weight_global_path_orientation = dto.teb_config.pse.weight_global_path_orientation;
bo.pse.lrk_use_alternative_approach = dto.teb_config.pse.lrk_use_alternative_approach;
......
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