Skip to content

Commit e6de0f6

Browse files
authored
fix(perception): fix typo (#6420)
1 parent 0dc88f5 commit e6de0f6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

perception/bytetrack/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ the number of false negatives is expected to decrease by using it.
2525
The paper just says that the 2d tracking algorithm is a simple Kalman filter.
2626
Original codes use the `top-left-corner` and `aspect ratio` and `size` as the state vector.
2727

28-
This is sometimes unstable because the aspectratio can be changed by the occlusion.
28+
This is sometimes unstable because the aspect ratio can be changed by the occlusion.
2929
So, we use the `top-left` and `size` as the state vector.
3030

3131
Kalman filter settings can be controlled by the parameters in `config/bytetrack_node.param.yaml`.

perception/bytetrack/lib/include/data_type.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ typedef Eigen::Matrix<float, 1, 128, Eigen::RowMajor> FEATURE;
5050
typedef Eigen::Matrix<float, Eigen::Dynamic, 128, Eigen::RowMajor> FEATURESS;
5151
// typedef std::vector<FEATURE> FEATURESS;
5252

53-
// Kalmanfilter
53+
// Kalman Filter
5454
// typedef Eigen::Matrix<float, 8, 8, Eigen::RowMajor> KAL_FILTER;
5555
typedef Eigen::Matrix<float, 1, 8, Eigen::RowMajor> KAL_MEAN;
5656
typedef Eigen::Matrix<float, 8, 8, Eigen::RowMajor> KAL_COVA;

perception/probabilistic_occupancy_grid_map/test/test_synchronized_grid_map_fusion_node.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def generate_test_description():
5757
FindPackageShare(PACKAGE_NAME).find(PACKAGE_NAME)
5858
+ "/launch/synchronized_occupancy_grid_map_fusion.launch.xml"
5959
)
60-
# use default launch arguments and parms
60+
# use default launch arguments and params
6161
launch_args = []
6262
# action to include launch file
6363
test_launch_file = launch.actions.IncludeLaunchDescription(

perception/tracking_object_merger/src/decorative_tracker_merger.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ TrackerState DecorativeTrackerMergerNode::createNewTracker(
380380
const MEASUREMENT_STATE input_index, rclcpp::Time current_time,
381381
const autoware_auto_perception_msgs::msg::TrackedObject & input_object)
382382
{
383-
// check if object id is not included in innner_tracker_objects_
383+
// check if object id is not included in inner_tracker_objects_
384384
for (const auto & object : inner_tracker_objects_) {
385385
if (object.const_uuid_ == input_object.object_id) {
386386
// create new uuid

0 commit comments

Comments
 (0)