forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(probabilistic_occupancy_grid_map): add grid map fusion node (aut…
…owarefoundation#5993) Signed-off-by: yoshiri <[email protected]>
- Loading branch information
Showing
19 changed files
with
2,055 additions
and
3 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
20 changes: 20 additions & 0 deletions
20
...tion/probabilistic_occupancy_grid_map/config/synchronized_grid_map_fusion_node.param.yaml
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,20 @@ | ||
/**: | ||
ros__parameters: | ||
# 1. fusion parameters | ||
fusion_input_ogm_topics: ["topic1", "topic2"] | ||
input_ogm_reliabilities: [0.8, 0.2] | ||
fusion_method: "overwrite" # choose from ["overwrite", "log-odds", "dempster-shafer"] | ||
|
||
# 2. synchronization settings | ||
match_threshold_sec: 0.01 # 10ms | ||
timeout_sec: 0.1 # 100ms | ||
input_offset_sec: [0.0, 0.0] # no offset | ||
|
||
# 3. settings for fused fusion map | ||
# remember resolution and map size should be same with input maps | ||
map_frame_: "map" | ||
base_link_frame_: "base_link" | ||
grid_map_origin_frame_: "base_link" | ||
fusion_map_length_x: 100.0 | ||
fusion_map_length_y: 100.0 | ||
fusion_map_resolution: 0.5 |
Oops, something went wrong.