We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33bb24c commit bf4edc5Copy full SHA for bf4edc5
perception/tracking_object_merger/src/data_association/data_association.cpp
@@ -180,13 +180,6 @@ double DataAssociation::calcScoreBetweenObjects(
180
const std::uint8_t object0_label =
181
object_recognition_utils::getHighestProbLabel(object0.classification);
182
183
- std::vector<double> tracker_pose = {
184
- object1.kinematics.pose_with_covariance.pose.position.x,
185
- object1.kinematics.pose_with_covariance.pose.position.y};
186
- std::vector<double> measurement_pose = {
187
- object0.kinematics.pose_with_covariance.pose.position.x,
188
- object0.kinematics.pose_with_covariance.pose.position.y};
189
-
190
double score = 0.0;
191
if (can_assign_matrix_(object1_label, object0_label)) {
192
const double max_dist = max_dist_matrix_(object1_label, object0_label);
0 commit comments