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.
Merge pull request #256 from tier4/sync-awf-upstream
chore: sync awf/autoware_launch
- Loading branch information
Showing
25 changed files
with
244 additions
and
68 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
15 changes: 15 additions & 0 deletions
15
...fig/perception/object_recognition/detection/clustering/radar_object_clustering.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,15 @@ | ||
/**: | ||
ros__parameters: | ||
# clustering parameter | ||
angle_threshold: 0.174 # [rad] (10 deg) | ||
distance_threshold: 10.0 # [m] | ||
velocity_threshold: 4.0 # [m/s] | ||
|
||
# output object settings | ||
# set false if you want to use the object information from radar | ||
is_fixed_label: true | ||
fixed_label: "CAR" | ||
is_fixed_size: true | ||
size_x: 4.0 # [m] | ||
size_y: 1.5 # [m] | ||
size_z: 1.5 # [m] |
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
11 changes: 11 additions & 0 deletions
11
...ception/object_recognition/detection/detection_by_tracker/detection_by_tracker.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,11 @@ | ||
/**: | ||
ros__parameters: | ||
tracker_ignore_label: | ||
UNKNOWN : true | ||
CAR : false | ||
TRUCK : false | ||
BUS : false | ||
TRAILER : false | ||
MOTORCYCLE : false | ||
BICYCLE : false | ||
PEDESTRIAN : false |
120 changes: 120 additions & 0 deletions
120
autoware_launch/config/planning/preset/default_preset.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,120 @@ | ||
launch: | ||
# behavior path modules | ||
- arg: | ||
name: launch_avoidance_module | ||
default: "true" | ||
- arg: | ||
name: launch_avoidance_by_lane_change_module | ||
default: "true" | ||
- arg: | ||
name: launch_dynamic_avoidance_module | ||
default: "false" | ||
- arg: | ||
name: launch_lane_change_right_module | ||
default: "true" | ||
- arg: | ||
name: launch_lane_change_left_module | ||
default: "true" | ||
- arg: | ||
name: launch_external_request_lane_change_right_module | ||
default: "false" | ||
- arg: | ||
name: launch_external_request_lane_change_left_module | ||
default: "false" | ||
- arg: | ||
name: launch_goal_planner_module | ||
default: "true" | ||
- arg: | ||
name: launch_start_planner_module | ||
default: "true" | ||
- arg: | ||
name: launch_side_shift_module | ||
default: "true" | ||
- arg: | ||
name: use_experimental_lane_change_function | ||
default: "true" | ||
|
||
# behavior velocity modules | ||
- arg: | ||
name: launch_crosswalk_module | ||
default: "true" | ||
- arg: | ||
name: launch_walkway_module | ||
default: "true" | ||
- arg: | ||
name: launch_traffic_light_module | ||
default: "true" | ||
- arg: | ||
name: launch_intersection_module | ||
default: "true" | ||
- arg: | ||
name: launch_merge_from_private_module | ||
default: "true" | ||
- arg: | ||
name: launch_blind_spot_module | ||
default: "true" | ||
- arg: | ||
name: launch_detection_area_module | ||
default: "true" | ||
- arg: | ||
name: launch_virtual_traffic_light_module | ||
default: "false" | ||
- arg: | ||
name: launch_no_stopping_area_module | ||
default: "true" | ||
- arg: | ||
name: launch_stop_line_module | ||
default: "true" | ||
- arg: | ||
name: launch_occlusion_spot_module | ||
default: "false" | ||
- arg: | ||
name: launch_run_out_module | ||
default: "true" | ||
- arg: | ||
name: launch_speed_bump_module | ||
default: "false" | ||
- arg: | ||
name: launch_out_of_lane_module | ||
default: "true" | ||
- arg: | ||
name: launch_no_drivable_lane_module | ||
default: "false" | ||
|
||
# motion planning modules | ||
- arg: | ||
name: motion_path_smoother_type | ||
default: elastic_band | ||
# option: elastic_band | ||
# none | ||
|
||
- arg: | ||
name: motion_path_planner_type | ||
default: obstacle_avoidance_planner | ||
# option: obstacle_avoidance_planner | ||
# path_sampler | ||
# none | ||
|
||
- arg: | ||
name: motion_stop_planner_type | ||
default: obstacle_stop_planner | ||
# option: obstacle_stop_planner | ||
# obstacle_cruise_planner | ||
# none | ||
|
||
- arg: | ||
name: motion_velocity_smoother_type | ||
default: JerkFiltered | ||
# option: JerkFiltered | ||
# L2 | ||
# Linf(Unstable) | ||
# Analytical | ||
|
||
- arg: | ||
name: launch_surround_obstacle_checker | ||
default: "true" | ||
|
||
# parking modules | ||
- arg: | ||
name: launch_parking_module | ||
default: "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
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
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
3 changes: 3 additions & 0 deletions
3
...ne_driving/behavior_planning/behavior_path_planner/start_planner/start_planner.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
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
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
Oops, something went wrong.