17

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

Johnny
  • 171
  • 1
  • 1
  • 3
  • I think [it](https://stackoverflow.com/a/15657798/4832664) will be useful for implementation. – Y.E.S. Aug 23 '17 at 07:04

2 Answers2

9

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

Sebastian Hojas
  • 4,158
  • 2
  • 27
  • 38
nex
  • 685
  • 1
  • 9
  • 21
6

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

hara
  • 3,274
  • 4
  • 37
  • 55