Skip to content
New issue

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

what does 'm' signify in the Kalman filter ? #3

Open
daraamer321 opened this issue Nov 23, 2016 · 1 comment
Open

what does 'm' signify in the Kalman filter ? #3

daraamer321 opened this issue Nov 23, 2016 · 1 comment

Comments

@daraamer321
Copy link

I am trying to employ the Kalman filter in project for object tracking in case of occlusion. Your implementation is very good and seems it will work for me, however I don't get the significance of variable 'm' and how will it change after every frame. I am not clear about its use. Can you clarify for me . Thanks.

@balzer82
Copy link
Owner

m is defined some lines before. It is simply the length of the measurement vector. For example, in the CTRV implementation of the Kalman Filter, you can see

# Lenth of the measurement
m = measurements.shape[1]

If you receive data continuously, you may write while True: and don't count anything.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants