-
Notifications
You must be signed in to change notification settings - Fork 366
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
dt paramter in kalman filter #15
Comments
Hi Anil, If your algorithm runs at 20fps, that means But if your main sensor (camera) runs at 30fps, I strongly advice you to go for Now you say, that your input comes from something a camera can see. In that case, please consider a model of constant acceleration: Greetings and good luck with your model! |
Thanks you for your valuable inputs. Im having input of image sensor only, for constant acceleration model, Do i need to have any inputs(such as velocity or acceleration) from other sensors as well ?? Or just image sensor input is fine.. |
The nice thing about Kalman filters is, that they interpolate, have a clue about the actual precision/reliability of the signal (deviation), and that they can cope with sensor fusion. If however you can come up with more sensors with reasonable effort, a Kalman filter helps you to "make the best of it" (in terms of minimized quadratic errors): e.g. the precision can be improved in most cases. Maybe take a look at some literature about filtering? |
Hi Author,
Currently Im tracking the object with constant velocity model.
The parameter "dt" is time interval as we know in kalman filer.
My query is how to compute or choose optimal value of dt??
Im detecting object using computer vision algorithm at frame rate of 20FPS...
So I have computed dt = 20/30 (MyAlgo_FPS/CameraCapture_FPS).
Is my computation is right ?
I eagerly wait for prompt response.
Thanks,
Anil.
The text was updated successfully, but these errors were encountered: