十大滤波算法与卡尔曼滤波总结

本文介绍了十种滤波算法,包括限幅滤波法、中位值滤波法、算术平均滤波法、递推平均滤波法等,并给出了C#实现的示例代码,最后提到了卡尔曼滤波的应用。
摘要由CSDN通过智能技术生成

2018-01-1901:55:42

arduino滤波算法--转载至极客工坊  ----http://www.geek-workshop.com/thread-7694-1-1.html

 

卡尔曼滤波

  1 #include <Wire.h> // I2C library, gyroscope
  2 
  3 // Accelerometer ADXL345
  4 #define ACC (0x53)    //ADXL345 ACC address
  5 #define A_TO_READ (6)        //num of bytes we are going to read each time (two bytes for each axis)
  6 
  7 
  8 // Gyroscope ITG3200 
  9 #define GYRO 0x68 // gyro address, binary = 11101000 when AD0 is connected to Vcc (see schematics of your breakout board)
 10 #define G_SMPLRT_DIV 0x15   
 11 #define G_DLPF_FS 0x16   
 12 #define G_INT_CFG 0x17
 13 #define G_PWR_MGM 0x3E
 14 
 15 #define G_TO_READ 8 // 2 bytes for each axis x, y, z
 16 
 17 
 18 // offsets are chip specific. 
 19 int a_offx = 0;
 20 int a_offy = 0;
 21 int a_offz = 0;
 22 
 23 int g_offx = 0;
 24 int g_offy = 0;
 25 int g_offz = 0;
 26 
 27 
 28 
 29 char str[512]; 
 30 
 31 void initAcc() {
 32   //Turning on the ADXL345
 33   writeTo(ACC, 0x2D, 0);      
 34   writeTo(ACC, 0x2D, 16);
 35   writeTo(ACC, 0x2D, 8);
 36   //by default the device is in +-2g range reading
 37 }
 38 
 39 void getAccelerometerData(int* result) {
 40   int regAddress = 0x32;    //first axis-acceleration-data register on the ADXL345
 41   byte buff[A_TO_READ];
 42   
 43   readFrom(ACC, regAddress, A_TO_READ, buff); //read the acceleration data from the ADXL345
 44   
 45   //each axis reading comes in 10 bit resolution, ie 2 bytes.  Least Significat Byte first!!
 46   //thus we are converting both bytes in to one int
 47   result[0] = (((int)buff[1]) << 8) | buff[0] + a_offx;   
 48   result[1] = (((int)buff[3]) << 8) | buff[2] + a_offy;
 49   result[2] = (((int)buff[5]) << 8) | buff[4] + a_offz;
 50 }
 51 
 52 //initializes the gyroscope
 53 void initGyro()
 54 {
 55   /*****************************************
 56   * ITG 3200
 57   * power management set to:
 58   * clock select = internal oscillator
 59   *     no reset, no sleep mode
 60   *   no standby mode
 61   * sample rate to = 125Hz
 62   * parameter to +/- 2000 degrees/sec
 63   * low pass filter = 5Hz
 64   * no interrupt
 65   ******************************************/
 66   writeTo(GYRO, G_PWR_MGM, 0x00);
 67   writeTo(GYRO, G_SMPLRT_DIV, 0x07); // EB, 50, 80, 7F, DE, 23, 20, FF
 68   writeTo(GYRO, G_DLPF_FS, 0x1E); // +/- 2000 dgrs/sec, 1KHz, 1E, 19
 69   writeTo(GYRO, G_INT_CFG, 0x00);
 70 }
 71 
 72 
 73 void getGyroscopeData(int * result)
 74 {
 75   /**************************************
 76   Gyro ITG-3200 I2C
 77   registers:
 78   temp MSB = 1B, temp LSB = 1C
 79   x axis MSB = 1D, x axis LSB = 1E
 80   y axis MSB = 1F, y axis LSB = 20
 81   z axis MSB = 21, z axis LSB = 22
 82   *************************************/
 83 
 84   int regAddress = 0x1B;
 85   int temp, x, y, z;
 86   byte buff[G_TO_READ];
 87   
 88   readFrom(GYRO, regAddress, G_TO_READ, buff); //read the gyro data from the ITG3200
 89   
 90   result[0] = ((buff[2] << 8) | buff[3]) + g_offx;
 91   result[1] = ((buff[4] << 8) | buff[5]) + g_offy;
 92   result[2] = ((buff[6] << 8) | buff[7]) + g_offz;
 93   result[3] = (buff[0] << 8) | buff[1]; // temperature
 94   
 95 }
 96 
 97 
 98 float xz=0,yx=0,yz=0;
 99 float p_xz=1,p_yx=1,p_yz=1;
100 float q_xz=0.0025,q_yx=0.0025,q_yz=0.0025;
101 float k_xz=0,k_yx=0,k_yz=0;
102 float r_xz=0.25,r_yx=0.25,r_yz=0.25;
103   //int acc_temp[3];
104   //float acc[3];
105   int acc[3];
106   int gyro[4];
107   float Axz;
108   float Ayx;
109   float Ayz;
110   float t=0.025;
111 void setup()
112 {
113   Serial.begin(9600);
114   Wire.begin();
115   initAcc();
116   initGyro();
117   
118 }
119 
120 //unsigned long timer = 0;
121 //float o;
122 void loop()
123 {
124   
125   getAccelerometerData(acc);
126   getGyroscopeData(gyro);
127   //timer = millis();
128   sprintf(str, "%d,%d,%d,%d,%d,%d", acc[0],acc[1],acc[2],gyro[0],gyro[1],gyro[2]);
129   
130   //acc[0]=acc[0];
131   //acc[2]=acc[2];
132   //acc[1]=acc[1];
133   //r=sqrt(acc[0]*acc[0]+acc[1]*acc[1]+acc[2]*acc[2]);
134   gyro[0]=gyro[0]/ 14.375;
135   gyro[1]=gyro[1]/ (-14.375);
136   gyro[2]=gyro[2]/ 14.375;
137   
138    
139   Axz=(atan2(acc[0],acc[2]))*180/PI;
140   Ayx=(atan2(acc[0],acc[1]))*180/PI;
141   /*if((acc[0]!=0)&&(acc[1]!=0))
142     {
143       Ayx=(atan2(acc[0],acc[1]))*180/PI;
144     }
145     else
146     {
147       Ayx=t*gyro[2];
148     }*/
149   Ayz=(atan2(acc[1],acc[2]))*180/PI;
150   
151   
152  //kalman filter
153   calculate_xz();
154   calculate_yx();
155   calculate_yz();
156   
157   //sprintf(str, "%d,%d,%d", xz_1, xy_1, x_1);
158   //Serial.print(xz);Serial.print(",");
159   //Serial.print(yx);Serial.print(",");
160   //Serial.print(yz);Serial.print(",");
161   //sprintf(str, "%d,%d,%d,%d,%d,%d", acc[0],acc[1],acc[2],gyro[0],gyro[1],gyro[2]);
162   //sprintf(str, "%d,%d,%d",gyro[0],gyro[1],gyro[2]);
163     Serial.print(Axz);Serial.print(",");
164     //Serial.print(Ayx);Serial.print(",");
165     //Serial.print(Ayz);Serial.print(",");
166   //Serial.print(str);
167   //o=gyro[2];//w=acc[2];
168   //Serial.print(o);Serial.print(",");
169   //Serial.print(w);Serial.print(",");
170   Serial.print("\n");
171 
172   
173   //delay(50);
174 }
175 void calculate_xz()
176 {
177 
178  xz=xz+t*gyro[1];
179  p_xz=p_xz+q_xz;
180  k_xz=p_xz/(p_xz+r_xz);
181  xz=xz+k_xz*(Axz-xz);
182  p_xz=(1-k_xz)*p_xz;
183 }
184 void calculate_yx()
185 {
186   
187   yx=yx+t*gyro[2];
188   p_yx=p_yx+q_yx;
189   k_yx=p_yx/(p_yx+r_yx);
190   yx=yx+k_yx*(Ayx-yx);
191   p_yx=(1-k_yx)*p_yx;
192 
193 }
194 void calculate_yz()
195 {
196   yz=yz+t*gyro[0];
197   p_yz=p_yz+q_yz;
198   k_yz=p_yz/(p_yz+r_yz);
199   yz=yz+k_yz*(Ayz-yz);
200   p_yz=(1-k_yz)*p_yz;
201  
202 }
203 
204 
205 //---------------- Functions
206 //Writes val to address register on ACC
207 void writeTo(int DEVICE, byte address, byte val) {
208    Wire.beginTransmission(DEVICE); //start transmission to ACC 
209    Wire.write(address);        // send register address
210    Wire.write(val);        // send value to write
211    Wire.endTransmission(); //end transmission
212 }
213 
214 
215 //reads num bytes starting from address register on ACC in to buff array
216 void readFrom(int DEVICE, byte address, int num, byte buff[]) {
217   Wire.beginTransmission(DEVICE); //start transmission to ACC 
218   Wire.write(address);        //sends address to read from
219   Wire.endTransmission(); //end transmission
220   
221   Wire.beginTransmission(DEVICE); //start transmission to ACC
222   Wire.requestFrom(DEVICE, num);    // request 6 bytes from ACC
223   
224   int i = 0;
225   while(Wire.available())    //ACC may send less than requested (abnormal)
226   { 
227     buff[i] = Wire.read(); // receive a byte
228     i++;
229   }
230   Wire.endTransmission(); //end transmission
231 }

十大滤波算法

1、限幅滤波法(又称程序判断滤波法)

2、中位值滤波法
3、算术平均滤波法
4、递推平均滤波法(又称滑动平均滤波法)
5、中位值平均滤波法(又称防脉冲干扰平均滤波法)
6、限幅平均滤波法
7、一阶滞后滤波法
8、加权递推平均滤波法
9、消抖滤波法
10、限幅消抖滤波法
11、新增加 卡尔曼滤波(非扩展卡尔曼),代码在17楼(点击这里)感谢zhangzhe0617分享

程序默认对int类型数据进行滤波,如需要对其他类型进行滤波,只需要把程序中所有int替换成long、float或者double即可。



1、限幅滤波法(又称程序判断滤波法)
ARDUINO 代码复制打印
/*
A、名称:限幅滤波法(又称程序判断滤波法)
B、方法:
    根据经验判断,确定两次采样允许的最大偏差值(设为A),
    每次检测到新值时判断:
    如果本次值与上次值之差<=A,则本次值有效,
    如果本次值与上次值之差>A,则本次值无效,放弃本次值,用上次值代替本次值。
C、优点:
    能有效克服因偶然因素引起的脉冲干扰。
D、缺点:
    无法抑制那种周期性的干扰。
    平滑度差。
E、整理:shenhaiyu 2013-11-01
*/
 
int Filter_Value;
int Value;
 
void setup() {
  Serial.begin(9600);       // 初始化串口通信
  randomSeed(analogRead(0)); // 产生随机种子
  Value = 300;
}
 
void loop() {
  Filter_Value = Filter();       // 获得滤波器输出值
  Value = Filter_Value;          // 最近一次有效采样的值,该变量为全局变量
  Serial.println(Filter_Value); // 串口输出
  delay(50);
}
 
// 用于随机产生一个300左右的当前值
int Get_AD() {
  return random(295, 305);
}
 
// 限幅滤波法(又称程序判断滤波法)
#define FILTER_A 1
int Filter() {
  int NewValue;
  NewValue = Get_AD();
  if(((NewValue - Value) > FILTER_A) || ((Value - NewValue) > FILTER_A))
    return Value;
  else
    return NewValue;
}





2、中位值滤波法
ARDUINO 代码复制打印
/*
A、名称:中位值滤波法
B、方法:
    连续采样N次(N取奇数),把N次采样值按大小排列,
    取中间值为本次有效值。
C、优点:
    能有效克服因偶然因素引起的波动干扰;
    对温度、液位的变化缓慢的被测参数有良好的滤波效果。
D、缺点:
    对流量、速度等快速变化的参数不宜。
E、整理:shenhaiyu 2013-11-01
*/
 
int Filter_Value;
 
void setup() {
  Serial.begin(9600);       // 初始化串口通信
  randomSeed(analogRead(0)); // 产生随机种子
}
 
void loop() {
  Filter_Value = Filter();       // 获得滤波器输出值
  Serial.println(Filter_Value); // 串口输出
  delay(50);
}
 
// 用于随机产生一个300左右的当前值
int Get_AD() {
  return random(295, 305);
}
 
// 中位值滤波法
#define FILTER_N 101
int Filter() {
  int filter_buf[FILTER_N];
  int i, j;
  int filter_temp;
  for(i = 0; i < FILTER_N; i++) {
    filter_buf[i] = Get_AD();
    delay(1);
  }
  // 采样值从小到大排列(冒泡法)
  for(j = 0; j < FILTER_N - 1; j++) {
    for(i = 0; i < FILTER_N - 1 - j; i++) {
      if(filter_buf[i] > filter_buf[i + 1]) {
        filter_temp = filter_buf[i];
        filter_buf[i] = filter_buf[i + 1];
        filter_buf[i + 1] = filter_temp;
      }
    }
  }
  return filter_buf[(FILTER_N - 1) / 2];
}





3、算术平均滤波法
ARDUINO 代码复制打印
/*
A、名称:算术平均滤波法
B、方法:
    连续取N个采样值进行算术平均运算:
    N值较大时:信号平滑度较高,但灵敏度较低;
    N值较小时:信号平滑度较低,但灵敏度较高;
    N值的选取:一般流量,N=12;压力:N=4。
C、优点:
    适用于对一般具有随机干扰的信号进行滤波;
    这种信号的特点是有一个平均值,信号在某一数值范围附近上下波动。
D、缺点:
    对于测量速度较慢或要求数据计算速度较快的实时控制不适用;
    比较浪费RAM。
E、整理:shenhaiyu 2013-11-01
*/
 
int Filter_Value;
 
void setup() {
  Serial.begin(9600);       // 初始化串口通信
  randomSeed(analogRead(0)); // 产生随机种子
}
 
void loop() {
  Filter_Value = Filter();       // 获得滤波器输出值
  Serial.println(Filter_Value); // 串口输出
  delay(50);
}
 
// 用于随机产生一个300左右的当前值
int Get_AD() {
  return random(295, 305);
}
 
// 算术平均滤波法
#define FILTER_N 12
int Filter() {
  int i;
  int filter_sum = 0;
  for(i = 0; i < FILTER_N; i++) {
    filter_sum += Get_AD();
    delay(1);
  }
  return (int)(filter_sum / FILTER_N);
}





4、递推平均滤波法(又称滑动平均滤波法)
ARDUINO 代码复制打印
/*
A、名称:递推平均滤波法(又称滑动平均滤波法)
B、方法:
    把连续取得的N个采样值看成一个队列,队列的长度固定为N,
    每次采样到一个新数据放入队尾,并扔掉原来队首的一次数据(先进先出原则),
    把队列中的N个数据进行算术平均运算,获得新的滤波结果。
    N值的选取:流量,N=12;压力,N=4;液面,N=4-12;温度,N=1-4。
C、优点:
    对周期性干扰有良好的抑制作用,平滑度高;
    适用于高频振荡的系统。
D、缺点:
    灵敏度低,对偶然出现的脉冲性干扰的抑制作用较差;
    不易消除由于脉冲干扰所引起的采样值偏差;
    不适用于脉冲干扰比较严重的场合;
    比较浪费RAM。
E、整理:shenhaiyu 2013-11-01
*/
 
int Filter_Value;
 
void setup() {
  Serial.begin(9600);       // 初始化串口通信
  randomSeed(analogRead(0)); // 产生随机种子
}
 
void loop() {
  Filter_Value = Filter();       // 获得滤波器输出值
  Serial.println(Filter_Value); // 串口输出
  delay(50);
}
 
// 用于随机产生一个300左右的当前值
int Get_AD() {
  return random(295, 305);
}
 
// 递推平均滤波法(又称滑动平均滤波法)
#define FILTER_N 12
int filter_buf[FILTER_N + 1];
int Filter() {
  int i;
  int filter_sum = 0;
  filter_buf[FILTER_N] = Get_AD();
  for(i = 0; i < FILTER_N; i++) {
    filter_buf[i] = filter_buf[i + 1]; // 所有数据左移,低位仍掉
    filter_sum += filter_buf[i];
  }
  return (int)(filter_sum / FILTER_N);
}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值