我正在开发一个简单的计数器应用程序,当用户将手机沿x轴(正或负)移动约90度时进行计数。使用加速计测量加速度原因,通过移动打电话并用它来计算。 但是有一个问题,准确性不好,有时它不算数,有时它算两次。 这是我的代码,我想知道是否有办法获得良好的准确性?
@Override
protected void onResume() {
super.onResume();
SnManager.registerListener(this,acc,SensorManager.SENSOR_DELAY_NORMAL);
}
@Override
public void onSensorChanged(SensorEvent event) {
if(!stop) {
if (event.values[0] > 14) {
Count++;
txt_count.setText("" + Count);
values.add("OK");
}
values.add(""+event.values[0]);
lst.invalidate();
}
}
答案 0 :(得分:0)
您可以检查事件时间戳以确定它是否已经是测量值,但我建议您实现一种平滑,例如最后3-5个值的滚动平均值。这使您的价值更加顺畅,更好地处理。 这是一个带有double值的示例,您可以更改为您想要的任何内容: '
public class Rolling {
private int size;
private double total = 0d;
private int index = 0;
private double samples[];
public Rolling(int size) {
this.size = size;
samples = new double[size];
for (int i = 0; i < size; i++) samples[i] = 0d;
}
public void add(double x) {
total -= samples[index];
samples[index] = x;
total += x;
if (++index == size) index = 0;
}
public double getAverage() {
return total / size;
}
}
您需要进一步的帮助吗?