Skip to content

Commit

Permalink
Update KalmanBBoxTrack.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
cj-mills committed Dec 16, 2023
1 parent 90b88fa commit a865158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KalmanBBoxTrack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Eigen::Vector4d KalmanBBoxTrack::tlwh() const {
return _tlwh;
}

Eigen::Vector4d ret = mean;
Eigen::Vector4d ret = mean.head(4);
ret[2] *= ret[3];
ret[0] -= ret[2] / 2.0;
ret[1] -= ret[3] / 2.0;
Expand Down

0 comments on commit a865158

Please sign in to comment.