-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bytetracker): modify kalman filter model to get better tracking …
…performance (#5639) * wip: try to replace kalman filter statements in bytetrack Signed-off-by: yoshiri <[email protected]> * add config file for kalman filter Signed-off-by: yoshiri <[email protected]> * add actual kalman filter code Signed-off-by: yoshiri <[email protected]> * update readme Signed-off-by: yoshiri <[email protected]> * Update perception/bytetrack/config/bytetracker.param.yaml Co-authored-by: Shunsuke Miura <[email protected]> * docs(bytetrack): Update demo video on README.md Signed-off-by: Manato HIRABAYASHI <[email protected]> --------- Signed-off-by: yoshiri <[email protected]> Signed-off-by: Manato HIRABAYASHI <[email protected]> Co-authored-by: Shunsuke Miura <[email protected]> Co-authored-by: Manato Hirabayashi <[email protected]>
- Loading branch information
1 parent
bd4d973
commit 577892b
Showing
10 changed files
with
256 additions
and
321 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Kalman filter parameters for 2d tracking | ||
dt: 0.1 # time step[s] | ||
dim_x: 8 # tlbr + velocity | ||
dim_z: 4 # tlbr | ||
q_cov_x: 0.1 | ||
q_cov_y: 0.1 | ||
q_cov_vx: 0.1 | ||
q_cov_vy: 0.1 | ||
r_cov_x: 0.1 | ||
r_cov_y: 0.1 | ||
p0_cov_x: 100.0 | ||
p0_cov_y: 100.0 | ||
p0_cov_vx: 100.0 | ||
p0_cov_vy: 100.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.