平滑 Android 设备上指南针的值
在我的 Android 应用程序中,有一个使用罗盘进行旋转的立方体,但罗盘有时会在很短的时间内返回一个与其他值完全不同的值。有没有办法解决这个问题,或者我必须编写一个方法来平滑这些值。
In my Android Application there's a cube which uses the compass to rotate, but the compass returns sometimes for a very small time a value which is completely different to the other values. Is there a way to solve it or must i write an Method to smooth the values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须实现 LowPassFilter,但如果您需要更高的精度,则必须使用 Sensor.TYPE_ROTATION_VECTOR。
you must implements a LowPassFilter, but if you need a more precision you must use a Sensor.TYPE_ROTATION_VECTOR.
香农-奈奎斯特
50-60Hz 电源可能会出现混叠问题。高采样率和事后过滤。
Shannon - Nyquist
You could have aliasing issues with 50-60Hz power. High sampling rates and filter afterwards.