Android实现自定义方向盘-3添加平滑处理

2024-08-29 17:04

本文主要是介绍Android实现自定义方向盘-3添加平滑处理,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

为了使陀螺仪数据更加平滑和稳定,可以通过应用低通滤波器或使用滑动平均法来减少噪声。以下是如何在现有的代码基础上添加平滑处理的详细步骤。

1. 添加低通滤波器

低通滤波器是一种常用的平滑算法,用来过滤掉高频噪声,保留低频信号。我们可以在陀螺仪数据处理中使用低通滤波器来平滑旋转速度。

Step 1: 添加滤波器系数

GameActivity中添加一个低通滤波器系数。通常,alpha值在0到1之间,越接近1平滑效果越强。

private static final float ALPHA = 0.1f;
Step 2: 应用低通滤波器

onSensorChanged方法中应用低通滤波器:

private float[] gyroscopeRotationRate = new float[3];@Override
public void onSensorChanged(SensorEvent event) {if (event.sensor.getType() == Sensor.TYPE_GYROSCOPE) {// 低通滤波器:过滤旋转速率gyroscopeRotationRate[0] = lowPassFilter(event.values[0], gyroscopeRotationRate[0]);gyroscopeRotationRate[1] = lowPassFilter(event.values[1], gyroscopeRotationRate[1]);gyroscopeRotationRate[2] = lowPassFilter(event.values[2], gyroscopeRotationRate[2]);float rotationRateZ = gyroscopeRotationRate[2];// 使用过滤后的rotationRateZ更新方向盘角度float newAngle = steeringWheelView.getCurrentAngle() + rotationRateZ * 10;steeringWheelView.updateSteeringWheelAngle(newAngle);}
}private float lowPassFilter(float current, float previous) {return previous + ALPHA * (current - previous);
}

2. 添加滑动平均法

滑动平均法也是一种平滑数据的技术,可以通过记录一定数量的历史数据并计算其平均值来减少噪声。

Step 1: 初始化滑动窗口

GameActivity中使用一个队列来存储最近的陀螺仪数据:

private static final int WINDOW_SIZE = 10;
private LinkedList<Float> rotationRateZWindow = new LinkedList<>();
Step 2: 计算滑动平均值

onSensorChanged方法中,将每个新的陀螺仪数据添加到窗口中,并计算滑动平均值:

@Override
public void onSensorChanged(SensorEvent event) {if (event.sensor.getType() == Sensor.TYPE_GYROSCOPE) {float rotationRateZ = event.values[2];// 更新滑动窗口if (rotationRateZWindow.size() >= WINDOW_SIZE) {rotationRateZWindow.poll(); // 移除最早的数据}rotationRateZWindow.add(rotationRateZ);// 计算滑动平均值float averageRotationRateZ = calculateMovingAverage(rotationRateZWindow);// 使用平均值更新方向盘角度float newAngle = steeringWheelView.getCurrentAngle() + averageRotationRateZ * 10;steeringWheelView.updateSteeringWheelAngle(newAngle);}
}private float calculateMovingAverage(LinkedList<Float> window) {float sum = 0;for (float value : window) {sum += value;}return sum / window.size();
}

3. 结合低通滤波器和滑动平均法

你可以同时使用低通滤波器和平滑平均法,以便进一步平滑传感器数据。这将减少数据中的高频噪声,并使其更加稳定。

@Override
public void onSensorChanged(SensorEvent event) {if (event.sensor.getType() == Sensor.TYPE_GYROSCOPE) {// 低通滤波器:过滤旋转速率gyroscopeRotationRate[0] = lowPassFilter(event.values[0], gyroscopeRotationRate[0]);gyroscopeRotationRate[1] = lowPassFilter(event.values[1], gyroscopeRotationRate[1]);gyroscopeRotationRate[2] = lowPassFilter(event.values[2], gyroscopeRotationRate[2]);float rotationRateZ = gyroscopeRotationRate[2];// 更新滑动窗口if (rotationRateZWindow.size() >= WINDOW_SIZE) {rotationRateZWindow.poll();}rotationRateZWindow.add(rotationRateZ);// 计算滑动平均值float averageRotationRateZ = calculateMovingAverage(rotationRateZWindow);// 使用平滑处理后的平均值更新方向盘角度float newAngle = steeringWheelView.getCurrentAngle() + averageRotationRateZ * 10;steeringWheelView.updateSteeringWheelAngle(newAngle);}
}

4. 完整代码

以下是集成了低通滤波器和平滑平均法的完整GameActivity代码:

package com.example.gamecontrol;import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.os.Bundle;
import android.util.Log;
import androidx.appcompat.app.AppCompatActivity;
import java.util.LinkedList;public class GameActivity extends AppCompatActivity implements SensorEventListener {private static final float ALPHA = 0.1f; // 低通滤波器系数private static final int WINDOW_SIZE = 10; // 滑动窗口大小private SensorManager sensorManager;private Sensor gyroscopeSensor;private SteeringWheelView steeringWheelView;private float[] gyroscopeRotationRate = new float[3];private LinkedList<Float> rotationRateZWindow = new LinkedList<>();@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_game);steeringWheelView = findViewById(R.id.steeringWheelView);sensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);if (sensorManager != null) {gyroscopeSensor = sensorManager.getDefaultSensor(Sensor.TYPE_GYROSCOPE);if (gyroscopeSensor != null) {sensorManager.registerListener(this, gyroscopeSensor, SensorManager.SENSOR_DELAY_GAME);} else {Log.e("GameActivity", "Gyroscope sensor not available.");}}steeringWheelView.setOnSteeringWheelChangeListener(angle -> {Log.d("SteeringWheel", "Angle: " + angle);});}@Overrideprotected void onResume() {super.onResume();if (gyroscopeSensor != null) {sensorManager.registerListener(this, gyroscopeSensor, SensorManager.SENSOR_DELAY_GAME);}}@Overrideprotected void onPause() {super.onPause();sensorManager.unregisterListener(this);}@Overridepublic void onSensorChanged(SensorEvent event) {if (event.sensor.getType() == Sensor.TYPE_GYROSCOPE) {// 低通滤波器gyroscopeRotationRate[0] = lowPassFilter(event.values[0], gyroscopeRotationRate[0]);gyroscopeRotationRate[1] = lowPassFilter(event.values[1], gyroscopeRotationRate[1]);gyroscopeRotationRate[2] = lowPassFilter(event.values[2], gyroscopeRotationRate[2]);float rotationRateZ = gyroscopeRotationRate[2];// 更新滑动窗口if (rotationRateZWindow.size() >= WINDOW_SIZE) {rotationRateZWindow.poll();}rotationRateZWindow.add(rotationRateZ);// 计算滑动平均值float averageRotationRateZ = calculateMovingAverage(rotationRateZWindow);// 更新方向盘角度float newAngle = steeringWheelView.getCurrentAngle() + averageRotationRateZ * 10;steeringWheelView.updateSteeringWheelAngle(newAngle);}}@Overridepublic void onAccuracyChanged(Sensor sensor, int accuracy) {// 不需要处理精度变化}private float lowPassFilter(float current, float previous) {return previous + ALPHA * (current - previous);}private float calculateMovingAverage(LinkedList<Float> window) {float sum = 0;for (float value : window) {sum += value;}return sum / window.size();}
}

5. 测试与调整

运行项目,检查方向盘响应的平滑程度。如果方向盘移动太缓慢或不够稳定,可以根据实际情况调整ALPHA值和WINDOW_SIZE

通过这种方式,你可以显著提升陀螺仪控制的稳定性,使游戏中的方向盘控制更加流畅。

相关文章:
链接: Android实现自定义方向盘
链接: Android实现自定义方向盘-2添加陀螺仪
链接: Android实现自定义方向盘-3添加平滑处理
链接: Android实现自定义方向盘-4解决触摸时指针跳跃的问题
链接: Android实现自定义方向盘-5livedata实现

这篇关于Android实现自定义方向盘-3添加平滑处理的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1118448

相关文章

无人叉车3d激光slam多房间建图定位异常处理方案-墙体画线地图切分方案

墙体画线地图切分方案 针对问题:墙体两侧特征混淆误匹配,导致建图和定位偏差,表现为过门跳变、外月台走歪等 ·解决思路:预期的根治方案IGICP需要较长时间完成上线,先使用切分地图的工程化方案,即墙体两侧切分为不同地图,在某一侧只使用该侧地图进行定位 方案思路 切分原理:切分地图基于关键帧位置,而非点云。 理论基础:光照是直线的,一帧点云必定只能照射到墙的一侧,无法同时照到两侧实践考虑:关

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略 1. 特权模式限制2. 宿主机资源隔离3. 用户和组管理4. 权限提升控制5. SELinux配置 💖The Begin💖点点关注,收藏不迷路💖 Kubernetes的PodSecurityPolicy(PSP)是一个关键的安全特性,它在Pod创建之前实施安全策略,确保P