We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42a2ef6 commit 09201eaCopy full SHA for 09201ea
perception/multi_object_tracker/src/tracker/model/pedestrian_tracker.cpp
@@ -219,9 +219,9 @@ bool PedestrianTracker::measureWithShape(
219
// set minimum size
220
bounding_box_.length = std::max(bounding_box_.length, 0.3);
221
bounding_box_.width = std::max(bounding_box_.width, 0.3);
222
- bounding_box_.height = std::max(bounding_box_.height, 0.3);
+ bounding_box_.height = std::max(bounding_box_.height, 0.8);
223
cylinder_.width = std::max(cylinder_.width, 0.3);
224
- cylinder_.height = std::max(cylinder_.height, 0.3);
+ cylinder_.height = std::max(cylinder_.height, 0.8);
225
226
return true;
227
}
0 commit comments