Skip to content

What motion model is used? #13

@r7vme

Description

@r7vme

Hello, thanks for nice repo. So far i believe motion model is incorrect.

For state matrix you use [[x], [y]], but state transition matrix is [[1, dt], [0, 1]], which is believe is for state matrix like [x, vx] (one dimentional constant velocity model). You're computing dot product between them here, which seems incorrect.

My suggestion would be to use two dimentional constant velocity model.

State matrix:

[[x],
 [y],
 [vx],
 [vy]]

Transition matrix:

[[1, 0, dt, 0],
 [0, 1, 0, dt],
 [0, 0, 1, 0],
 [0, 0, 0, 1]],

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions