Skip to content

Commit

Permalink
feat(multi_object_tracker): suppress yaw rotation oscillation problem…
Browse files Browse the repository at this point in the history
… in bicycle tracking model (autowarefoundation#4146)

* enable only tracking and prediction

Signed-off-by: yoshiri <[email protected]>

* set bicycle model parameter to be understeered

Signed-off-by: yoshiri <[email protected]>

* Revert "enable only tracking and prediction"

This reverts commit d97db40.

---------

Signed-off-by: yoshiri <[email protected]>
  • Loading branch information
YoshiRi authored and takayuki5168 committed Aug 23, 2023
1 parent 9bec9a6 commit 2e9ca11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ BicycleTracker::BicycleTracker(
ekf_.init(X, P);

// Set lf, lr
double point_ratio = 0.5; // comes to front if larger
double point_ratio = 0.2; // under steered if smaller than 0.5
lf_ = bounding_box_.length * point_ratio;
lr_ = bounding_box_.length * (1.0 - point_ratio);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ BigVehicleTracker::BigVehicleTracker(
setNearestCornerOrSurfaceIndex(self_transform); // this index is used in next measure step

// Set lf, lr
double point_ratio = 0.5; // comes to front if larger
double point_ratio = 0.1; // under steered if smaller than 0.5
lf_ = bounding_box_.length * point_ratio;
lr_ = bounding_box_.length * (1.0 - point_ratio);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ NormalVehicleTracker::NormalVehicleTracker(
setNearestCornerOrSurfaceIndex(self_transform); // this index is used in next measure step

// Set lf, lr
double point_ratio = 0.5; // comes to front if larger
double point_ratio = 0.2; // under steered if smaller than 0.5
lf_ = bounding_box_.length * point_ratio;
lr_ = bounding_box_.length * (1.0 - point_ratio);
}
Expand Down

0 comments on commit 2e9ca11

Please sign in to comment.