Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kalman Filter for Android

Is there a Kalman filter implementation I can use to fliter my gyroscope and acceleration data from an Android Phone?

like image 292
Johnny Avatar asked May 15 '10 05:05

Johnny


2 Answers

Have a look at this project: http://library.rl-community.org/wiki/Helicopter_(Java)

They are using kalman filters for gyrosensors etc and it's java too ... you can download the source and probably use some of it pretty easy in android.

You should also check out rsbweb.nih.gov/ij/plugins/kalman.html and www.vni.com/products/imsl/jmsl/v30/api/com/imsl/stat/KalmanFilterEx1.html

Happy hacking

like image 163
nex Avatar answered Nov 16 '22 14:11

nex


This is an open source java implementation of Kalman filter. Maybe you could try to use it in your android project.

like image 25
hara Avatar answered Nov 16 '22 13:11

hara