Skip to content

Commit eda2b3c

Browse files
committed
fix: use mahalanobis distance gate with larger threshold
Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp>
1 parent dd1d24a commit eda2b3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

perception/multi_object_tracker/src/data_association/data_association.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ Eigen::MatrixXd DataAssociation::calcScoreMatrix(
201201
measurement_object.kinematics.pose_with_covariance.pose.position,
202202
tracked_object.kinematics.pose_with_covariance.pose.position,
203203
getXYCovariance(tracked_object.kinematics.pose_with_covariance));
204-
if (2.448 /*95%*/ <= mahalanobis_dist) passed_gate = true; // gate disabled
204+
if (3.035 /*99%*/ <= mahalanobis_dist) passed_gate = false;
205205
}
206206
// 2d iou gate
207207
if (passed_gate) {

0 commit comments

Comments
 (0)