forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 2
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) * add synchronized ogm fusion node Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * add launch test for grid map fusion node Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * fix test cases input msg error Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * change default fusion parameter Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * rename parameter for ogm fusion Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * feat: add multi_lidar_ogm generation method Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * enable ogm creation launcher in tier4_perception_launch to call multi_lidar ogm creation Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * fix: change ogm fusion node pub policy to reliable Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> * chore: remove files outof scope with divied PR Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com> --------- Signed-off-by: yoshiri <yoshiyoshidetteiu@gmail.com>
- Loading branch information
1 parent
216f601
commit 9e1005b
Showing
19 changed files
with
2,064 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.