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 #253 from tier4/beta-to-tier4-main-sync
chore: sync beta branch beta/v0.16.0 with tier4/main
- Loading branch information
Showing
19 changed files
with
183 additions
and
75 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
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
14 changes: 7 additions & 7 deletions
14
...ig/perception/object_recognition/tracking/radar_object_tracker/default_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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/**: | ||
ros__parameters: | ||
car_tracker: "linear_motion_tracker" | ||
truck_tracker: "linear_motion_tracker" | ||
bus_tracker: "linear_motion_tracker" | ||
trailer_tracker: "linear_motion_tracker" | ||
pedestrian_tracker: "linear_motion_tracker" | ||
bicycle_tracker: "linear_motion_tracker" | ||
motorcycle_tracker: "linear_motion_tracker" | ||
car_tracker: "constant_turn_rate_motion_tracker" | ||
truck_tracker: "constant_turn_rate_motion_tracker" | ||
bus_tracker: "constant_turn_rate_motion_tracker" | ||
trailer_tracker: "constant_turn_rate_motion_tracker" | ||
pedestrian_tracker: "constant_turn_rate_motion_tracker" | ||
bicycle_tracker: "constant_turn_rate_motion_tracker" | ||
motorcycle_tracker: "constant_turn_rate_motion_tracker" |
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
36 changes: 36 additions & 0 deletions
36
...recognition/tracking/radar_object_tracker/tracking/constant_turn_rate_motion_tracker.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,36 @@ | ||
default: | ||
# This file defines the parameters for the linear motion tracker. | ||
# All this parameter coordinate is assumed to be in the vehicle coordinate system. | ||
# So, the x axis is pointing to the front of the vehicle, y axis is pointing to the left of the vehicle. | ||
ekf_params: | ||
# random walk noise is used to model the acceleration noise | ||
process_noise_std: # [m/s^2] | ||
x: 0.5 | ||
y: 0.5 | ||
yaw: 0.1 | ||
vx: 1.0 # assume 1m/s velocity noise | ||
wz: 0.4 | ||
measurement_noise_std: | ||
x: 4.0 # [m] | ||
y: 4.0 # [m] | ||
# y: 0.02 # rad/m if use_polar_coordinate_in_measurement_noise is true | ||
yaw: 0.2 # [rad] | ||
vx: 10 # [m/s] | ||
initial_covariance_std: | ||
x: 3.0 # [m] | ||
y: 6.0 # [m] | ||
yaw: 10.0 # [rad] | ||
vx: 100.0 # [m/s] | ||
wz: 10.0 # [rad/s] | ||
# input flag | ||
trust_yaw_input: false # set true if yaw input of sensor is reliable | ||
trust_twist_input: false # set true if twist input of sensor is reliable | ||
use_polar_coordinate_in_measurement_noise: false # set true if you want to define the measurement noise in polar coordinate | ||
assume_zero_yaw_rate: false # set true if you want to assume zero yaw rate | ||
# output limitation | ||
limit: | ||
max_speed: 80.0 # [m/s] | ||
# low pass filter is used to smooth the yaw and shape estimation | ||
low_pass_filter: | ||
time_constant: 1.0 # [s] | ||
sampling_time: 0.1 # [s] |
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
22 changes: 22 additions & 0 deletions
22
autoware_launch/config/planning/scenario_planning/common/costmap_generator.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,22 @@ | ||
/**: | ||
ros__parameters: | ||
costmap_frame: "map" | ||
vehicle_frame: "base_link" | ||
map_frame: "map" | ||
update_rate: 10.0 | ||
activate_by_scenario: False | ||
grid_min_value: 0.0 | ||
grid_max_value: 1.0 | ||
grid_resolution: 0.2 | ||
grid_length_x: 70.0 | ||
grid_length_y: 70.0 | ||
grid_position_x: 0.0 | ||
grid_position_y: 0.0 | ||
maximum_lidar_height_thres: 0.3 | ||
minimum_lidar_height_thres: -2.2 | ||
use_wayarea: true | ||
use_parkinglot: true | ||
use_objects: true | ||
use_points: true | ||
expand_polygon_size: 1.0 | ||
size_of_expansion_kernel: 9 |
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
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.