-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update and add parameter about radar_object_tracker for far away dete…
…ction Signed-off-by: yoshiri <[email protected]>
- Loading branch information
Showing
6 changed files
with
70 additions
and
25 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
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
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