We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is indeed supposed to be np.matrix([[1.0, 0.0], [1.0, 0.0]]) and not np.matrix([[1.0, 0.0], [0.0, 1.0]])?
The text was updated successfully, but these errors were encountered:
Thanks for pointing it out, we've made corrections
Sorry, something went wrong.
Maybe it was correct before? If so, sorry for the confusion.
State: [angle, angle_velocity] based on this line: https://github.com/megvii-research/MCTrack/blob/main/kalmanfilter/extend_kalman.py#L31
Measurement: [angle from detection, angle from velocity] based on the paper.
If so, then H = [[1, 0], [1, 0]] makes sense, i.e., both detection and velocity measurement yaws == state yaw.
No branches or pull requests
This is indeed supposed to be np.matrix([[1.0, 0.0], [1.0, 0.0]]) and not np.matrix([[1.0, 0.0], [0.0, 1.0]])?
The text was updated successfully, but these errors were encountered: