Skip to content

Commit

Permalink
fix(autoware_multi_object_tracker): update yaw with range-limited inn…
Browse files Browse the repository at this point in the history
…ovation (autowarefoundation#8976)

fix: update yaw with range-limited innovation

Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp>
  • Loading branch information
technolojin authored Sep 27, 2024
1 parent 9c7d542 commit 82b286c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ bool BicycleMotionModel::updateStatePoseHeadVel(

// update state
Eigen::MatrixXd Y(DIM_Y, 1);
Y << x, y, yaw, vel;
Y << x, y, fixed_yaw, vel;

Eigen::MatrixXd C = Eigen::MatrixXd::Zero(DIM_Y, DIM);
C(0, IDX::X) = 1.0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ bool CTRVMotionModel::updateStatePoseHeadVel(

// update state
Eigen::MatrixXd Y(DIM_Y, 1);
Y << x, y, yaw, vel;
Y << x, y, fixed_yaw, vel;

Eigen::MatrixXd C = Eigen::MatrixXd::Zero(DIM_Y, DIM);
C(0, IDX::X) = 1.0;
Expand Down

0 comments on commit 82b286c

Please sign in to comment.