forked from autowarefoundation/autoware_launch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into obstacle_cruise_plann…
…er_pointcloud
- Loading branch information
Showing
47 changed files
with
433 additions
and
190 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
"type:ci": | ||
- .github/**/* | ||
- "*.json" | ||
- "*.yaml" | ||
- "*.cfg" | ||
- .clang-format | ||
- .gitignore | ||
- .prettierignore | ||
"type:documentation": | ||
- "**/*.md" | ||
- "**/*.rst" | ||
- "**/*.jpg" | ||
- "**/*.png" | ||
- "**/*.svg" | ||
"component:control": | ||
- "**/*control*" | ||
"component:localization": | ||
- "**/*localization*" | ||
"component:map": | ||
- "**/*map*" | ||
"component:perception": | ||
- "**/*perception*" | ||
"component:planning": | ||
- "**/*planning*" | ||
"component:sensing": | ||
- "**/*sensing*" | ||
"component:simulation": | ||
- "**/*simulator*" | ||
"component:system": | ||
- "**/*system*" | ||
"component:ui": | ||
- "**/*.rviz" | ||
- "**/rviz" |
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 @@ | ||
name: pr-labeler | ||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
jobs: | ||
label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
configuration-path: .github/labeler.yaml |
34 changes: 23 additions & 11 deletions
34
...g/autonomous_emergency_braking.param.yaml → ...g/autonomous_emergency_braking.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 |
---|---|---|
@@ -1,26 +1,38 @@ | ||
/**: | ||
ros__parameters: | ||
publish_debug_pointcloud: false | ||
# Ego path calculation | ||
use_predicted_trajectory: true | ||
use_imu_path: true | ||
path_footprint_extra_margin: 4.0 | ||
use_imu_path: false | ||
min_generated_path_length: 0.5 | ||
imu_prediction_time_horizon: 1.5 | ||
imu_prediction_time_interval: 0.1 | ||
mpc_prediction_time_horizon: 1.5 | ||
mpc_prediction_time_interval: 0.1 | ||
|
||
# Debug | ||
publish_debug_pointcloud: false | ||
|
||
# Point cloud partitioning | ||
detection_range_min_height: 0.0 | ||
detection_range_max_height_margin: 0.0 | ||
voxel_grid_x: 0.05 | ||
voxel_grid_y: 0.05 | ||
voxel_grid_z: 100000.0 | ||
min_generated_path_length: 0.5 | ||
|
||
# Point cloud cropping | ||
expand_width: 0.1 | ||
path_footprint_extra_margin: 4.0 | ||
|
||
# Point cloud clustering | ||
cluster_tolerance: 0.1 #[m] | ||
minimum_cluster_size: 10 | ||
maximum_cluster_size: 10000 | ||
|
||
# RSS distance collision check | ||
longitudinal_offset: 2.0 | ||
t_response: 1.0 | ||
a_ego_min: -3.0 | ||
a_obj_min: -1.0 | ||
cluster_tolerance: 0.1 #[m] | ||
minimum_cluster_size: 10 | ||
maximum_cluster_size: 10000 | ||
imu_prediction_time_horizon: 1.5 | ||
imu_prediction_time_interval: 0.1 | ||
mpc_prediction_time_horizon: 1.5 | ||
mpc_prediction_time_interval: 0.1 | ||
collision_keeping_sec: 2.0 | ||
previous_obstacle_keep_time: 1.0 | ||
aeb_hz: 10.0 |
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
File renamed without changes.
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
82 changes: 82 additions & 0 deletions
82
...fig/perception/object_recognition/tracking/multi_object_tracker/input_channels.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,82 @@ | ||
/**: | ||
ros__parameters: | ||
input_channels: | ||
detected_objects: | ||
topic: "/perception/object_recognition/detection/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "detected_objects" | ||
short_name: "all" | ||
# LIDAR - rule-based | ||
lidar_clustering: | ||
topic: "/perception/object_recognition/detection/clustering/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "clustering" | ||
short_name: "Lcl" | ||
# LIDAR - DNN | ||
lidar_centerpoint: | ||
topic: "/perception/object_recognition/detection/centerpoint/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "centerpoint" | ||
short_name: "Lcp" | ||
lidar_centerpoint_validated: | ||
topic: "/perception/object_recognition/detection/centerpoint/validation/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "centerpoint" | ||
short_name: "Lcp" | ||
lidar_apollo: | ||
topic: "/perception/object_recognition/detection/apollo/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "apollo" | ||
short_name: "Lap" | ||
lidar_apollo_validated: | ||
topic: "/perception/object_recognition/detection/apollo/validation/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "apollo" | ||
short_name: "Lap" | ||
# LIDAR-CAMERA - DNN | ||
# cspell:ignore lidar_pointpainitng pointpainting | ||
lidar_pointpainitng: | ||
topic: "/perception/object_recognition/detection/pointpainting/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "pointpainting" | ||
short_name: "Lpp" | ||
lidar_pointpainting_validated: | ||
topic: "/perception/object_recognition/detection/pointpainting/validation/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "pointpainting" | ||
short_name: "Lpp" | ||
# CAMERA-LIDAR | ||
camera_lidar_fusion: | ||
topic: "/perception/object_recognition/detection/clustering/camera_lidar_fusion/objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "camera_lidar_fusion" | ||
short_name: "CLf" | ||
# CAMERA-LIDAR+TRACKER | ||
detection_by_tracker: | ||
topic: "/perception/object_recognition/detection/detection_by_tracker/objects" | ||
can_spawn_new_tracker: false | ||
optional: | ||
name: "detection_by_tracker" | ||
short_name: "dbT" | ||
# RADAR | ||
radar: | ||
topic: "/sensing/radar/detected_objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "radar" | ||
short_name: "R" | ||
radar_far: | ||
topic: "/perception/object_recognition/detection/radar/far_objects" | ||
can_spawn_new_tracker: true | ||
optional: | ||
name: "radar_far" | ||
short_name: "Rf" |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
...g/lane_driving/motion_planning/motion_velocity_planner/motion_velocity_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/**: | ||
ros__parameters: | ||
smooth_velocity_before_planning: true # [-] if true, smooth the velocity profile of the input trajectory before planning |
File renamed without changes.
Oops, something went wrong.