再次,我需要你的帮助,
我有良好的课程CustomSensorEventListener
(见下文)
方位角,民意调查,投球等所有数据都得到了正确的解决。
我在屏幕上有单个图像,根据传感器方向移动。
然而,传感器过于敏感,我的意思是在任何纳米变化时,我的图像会略微移动。
像颤抖的东西。如何在Android上将传感器级别降低为相机。
如您所知,相机在任何传感器更换时都不会颤抖。
谢谢,
public class CustomSensorEventListener implements SensorEventListener {
float[] inR = new float[16];
float[] I = new float[16];
float[] gravity = new float[3];
float[] geomag = new float[3];
float[] orientVals = new float[3];
public static double azimuth = 0;
public static double pitch = 0;
static double roll = 0;
private Display mDisplay;
public CustomSensorEventListener(Display display){
mDisplay = display;
}
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy) {
// TODO Auto-generated method stub
}
@Override
public void onSensorChanged(SensorEvent sensorEvent) {
// If the sensor data is unreliable return
if (sensorEvent.accuracy == SensorManager.SENSOR_STATUS_UNRELIABLE)
return;
// Gets the value of the sensor that has been changed
switch (sensorEvent.sensor.getType()) {
case Sensor.TYPE_ACCELEROMETER:
gravity = sensorEvent.values.clone();
break;
case Sensor.TYPE_MAGNETIC_FIELD:
geomag = sensorEvent.values.clone();
break;
}
// If gravity and geomag have values then find rotation matrix
if (gravity != null && geomag != null) {
// checks that the rotation matrix is found
boolean success = SensorManager.getRotationMatrix(inR, I,
gravity, geomag);
float[] outR = new float[16];
if (success) {
SensorManager.remapCoordinateSystem(inR, SensorManager.AXIS_Y, SensorManager.AXIS_MINUS_Z, outR);
// Display display = mContext.getWindowManager().getDefaultDisplay();
int deviceRot = mDisplay.getRotation();
switch (deviceRot)
{
// portrait - normal
case Surface.ROTATION_0: SensorManager.remapCoordinateSystem(inR,
SensorManager.AXIS_X, SensorManager.AXIS_Z,
outR);
break;
// rotated left (landscape - keys to bottom)
case Surface.ROTATION_90: SensorManager.remapCoordinateSystem(inR,
SensorManager.AXIS_Z, SensorManager.AXIS_MINUS_X,
outR);
break;
// upside down
case Surface.ROTATION_180: SensorManager.remapCoordinateSystem(inR,
SensorManager.AXIS_X, SensorManager.AXIS_Z,
outR);
break;
// rotated right
case Surface.ROTATION_270: SensorManager.remapCoordinateSystem(inR,
SensorManager.AXIS_MINUS_Z, SensorManager.AXIS_X,
outR);
break;
default: break;
}
SensorManager.getOrientation(outR, orientVals);
azimuth = Math.toDegrees(orientVals[0]);
pitch = Math.toDegrees(orientVals[1]);
roll = Math.toDegrees(orientVals[2]);
}
//Log.v("MA","Az: "+azimuth+", Pi: "+pitch+", Ro: "+roll);
}
}
};
答案 0 :(得分:12)
您可以使用低通滤波器来滤除抖动,振动和突然快速移动。滤波器允许较慢的移动,例如根据特定的截止频率改变旋转角度。
更多信息和实施细节:Low-Pass-Filter-To-Android-Sensors
Smoothing Sensor Data with a Low-Pass Filter
有关低通滤波器(维基百科)的更多信息:Low-pass filter