![]() |
kf_hungarian_tracker package from navigation2_dynamic repokf_hungarian_tracker nav2_dynamic_msgs |
Package Summary
Tags | No category tags. |
Version | 0.0.1 |
License | Apache-2.0 |
Build type | AMENT_PYTHON |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ros-navigation/navigation2_dynamic.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-06-10 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Steven Macenski
- Shengjian Chen
Authors
kf_hungarian_tracker
This package implememts a multi-object tracker with Kalman filter and Hungarian algorithm. Hungarian algorithm is used to associate detection and previously known objects. For each object, a Kalman filter is maintained to track the position and velocity.
Hungarian algorithm
Hungarian algorithm is a combinatorial optimization algorithm that solves the assignment problem in polynomial time.
Here we use an implementation from scipy.optimize.linear_sum_assignment
. The default cost function is Euclidean distance between two object’s center.
More cost functions like IoU of bounding boxes could be used.
Parameters
Parameters can be set in config/kf_hungarian.yaml
. For more information on parameters for Kalman filter, check out KalmanFilter from OpenCV.
| parameters | Meaning | Default |
| —————- | ————- | ——- |
| global_frame | transform from pointcloud frame to global frame,
None means message frame is global | camera_link |
| death_threshold | maximum missing frames before deleting an obstacle | 3 |
| top_down | whether project 3D points on ground plane, set to do top-down tracking | False |
| measurement_noise_cov | measurement noise for Kalman filter [x,y,z] | [1., 1., 1.] |
| error_cov_post | initial posteriori error estimate covariance matrix [x,y,z,vx,vy,vz] | [1., 1., 1., 10., 10., 10.] |
| process_noise_cov | model process noise covariance with estimated acceleration [ax,ay,az] | [2., 2., 0.5] |
| vel_filter | minimum and maximum velocity to filter obstacles [min,max] (m/s) | [0.1, 2.0] |
| height_filter | minimum and maximum height (z) to filter obstacles [min,max] (m) | [-2.0, 2.0] |
| cost_filter | filter Hungarian assignments with cost greater than threshold (unit is m
for Euclidean cost function) | 1.0 |
- The default units are
m
andm/s
, could be changed according to the detection.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
launch_ros | |
nav2_dynamic_msgs | |
visualization_msgs | |
rclpy | |
tf2_ros | |
geometry_msgs | |
tf2_geometry_msgs | |
ament_copyright | |
ament_flake8 | |
ament_pep257 |