forked from autowarefoundation/autoware_launch
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(collision detector): add collision detector to launch/config (au…
…towarefoundation#1205) * add collision_detector Signed-off-by: Go Sakayori <[email protected]> * change collision detector default to false Signed-off-by: Go Sakayori <[email protected]> --------- Signed-off-by: Go Sakayori <[email protected]> Signed-off-by: Go Sakayori <[email protected]>
- Loading branch information
1 parent
7f10766
commit 05b42b4
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
autoware_launch/config/control/autoware_collision_detector/collision_detector.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,16 @@ | ||
/**: | ||
ros__parameters: | ||
use_pointcloud: false # use pointcloud as obstacle check | ||
use_dynamic_object: true # use dynamic object as obstacle check | ||
collision_distance: 0.1 # Distance at which an object is determined to have collided with ego [m] | ||
nearby_filter_radius: 5.0 # Radius to filter nearby objects [m] | ||
keep_ignoring_time: 10.0 # Time to keep filtering objects that first appeared in the vicinity | ||
nearby_object_type_filters: # Classes subject to filtering for objects first appearing in the vicinity | ||
filter_car: false | ||
filter_truck: false | ||
filter_bus: false | ||
filter_trailer: false | ||
filter_bicycle: false | ||
filter_motorcycle: false | ||
filter_pedestrian: false | ||
filter_unknown: true |
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