Skip to content

Commit

Permalink
カルマンフィルタのゲインを1.0→0.1に変更 (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yamam0t0 authored Dec 30, 2023
1 parent 7dbc9d9 commit 6614d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consai_vision_tracker/src/ball_tracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ BallTracker::BallTracker(const double dt)

// 位置、速度の変化をのシステムノイズで表現する(つまりめちゃくちゃノイズがでかい)
// 0 m/s から、いきなり1.0 m/sに変化しうる、ということ
const double MAX_LINEAR_ACC_MPS = 1.0 / dt; // 例:1.0[m/s] / 0.001[s] = 100 [m/ss]
const double MAX_LINEAR_ACC_MPS = 0.1 / dt; // 例:1.0[m/s] / 0.001[s] = 100 [m/ss]
const double MAX_LINEAR_ACCEL_IN_DT = MAX_LINEAR_ACC_MPS * dt; // [m/s]
const double MAX_LINEAR_MOVEMENT_IN_DT = MAX_LINEAR_ACC_MPS / 2 * std::pow(dt, 2); // [m]

Expand Down

0 comments on commit 6614d87

Please sign in to comment.