Low Pass Filter is not implemented?
yuhang-lin opened this issue · 4 comments
yuhang-lin commented
LowPassFilter is created but not implemented.
phishman3579 commented
Not sure what you mean, the implementation is here:
https://github.com/phishman3579/android-compass/blob/master/src/com/jwetherell/compass/common/LowPassFilter.java
yuhang-lin commented
There is a private function LowPassFilter(), but it's empty.
phishman3579 commented
It's a public static function.
public static float[] filter(float[] input, float[] prev)
yuhang-lin commented
Oh sorry I didn't realize that private function is actually the constructor of the class.