我想在我的应用程序中使用 android 中的加速度计。在文档中给出如下:
final float alpha = 0.8;
// Isolate the force of gravity with the low-pass filter.
gravity[0] = alpha * gravity[0] + (1 - alpha) * event.values[0];
但低通滤波器的工作原理如下:
output = alpha*input + (1-alpha)*previousoutput;
我的问题是为什么我们将重力作为输入而将传感器事件作为先前的输出?它必须是其他方式。