Skip to content

Commit

Permalink
fix: bag
Browse files Browse the repository at this point in the history
Signed-off-by: keita1523 <[email protected]>
  • Loading branch information
keita1523 committed Nov 2, 2023
1 parent e59c098 commit 92fd055
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -450,9 +450,10 @@ ObjectClassification::_label_type changeLabelForPrediction(
return ObjectClassification::MOTORCYCLE;
} else if (high_speed_object) {
// high speed object outside road lanelet will move like unknown object
return ObjectClassification::UNKNOWN;
// return ObjectClassification::UNKNOWN;
return label;
} else {
return label == ObjectClassification::BICYCLE;
return ObjectClassification::BICYCLE;
}
} else if (label == ObjectClassification::PEDESTRIAN) {
const bool within_road_lanelet = withinRoadLanelet(object, lanelet_map_ptr_, true);
Expand Down

0 comments on commit 92fd055

Please sign in to comment.