Skip to content

Commit 09201ea

Browse files
committed
fix: set minimum pedestrian size
Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp>
1 parent 42a2ef6 commit 09201ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

perception/multi_object_tracker/src/tracker/model/pedestrian_tracker.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,9 +219,9 @@ bool PedestrianTracker::measureWithShape(
219219
// set minimum size
220220
bounding_box_.length = std::max(bounding_box_.length, 0.3);
221221
bounding_box_.width = std::max(bounding_box_.width, 0.3);
222-
bounding_box_.height = std::max(bounding_box_.height, 0.3);
222+
bounding_box_.height = std::max(bounding_box_.height, 0.8);
223223
cylinder_.width = std::max(cylinder_.width, 0.3);
224-
cylinder_.height = std::max(cylinder_.height, 0.3);
224+
cylinder_.height = std::max(cylinder_.height, 0.8);
225225

226226
return true;
227227
}

0 commit comments

Comments
 (0)