欢迎来到天天文库
浏览记录
ID:23029104
大小:60.18 KB
页数:12页
时间:2018-11-03
《种软件滤波方法的示例程序(1)》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、10种软件滤波方法的示例程序10种软件滤波方法的示例程序1、限副滤波/*A值可根据实际情况调整value为有效值,new_value为当前采样值滤波程序返回有效的实际值*/#defineA10charvalue;charfilter(){charnew_value;new_value=get_ad();if((new_value-value>A)
2、
3、(value-new_value>A)returnvalue;returnnew_value;}2、中位值滤波法/*N值可根据实际情况调整排序采用冒泡法*/#defineN11charfilter(){charvalue_bu
4、f[N];charcount,i,j,temp;for(count=0;countvalue_buf[i+1]){temp=value_buf[i];value_buf[i]=value_buf[i+1];value_buf[i+1]=temp;}}}returnvalue_buf[(N-1)/2];}3、算术平均滤波法/**/#defineN12charfilter(){
5、intsum=0;for(count=0;count6、(又称防脉冲干扰平均滤波法)/**/#defineN12charfilter(){charcount,i,j;charvalue_buf[N];intsum=0;for(count=0;countvalue_buf[i+1]){temp=value_buf[i];value_buf[i]=value_buf[i+1];value_buf[i+1]=temp;}}}for(c7、ount=1;count8、,2,3,4,5,6,7,8,9,10,11,12};charcodesum_coe=1+2+3+4+5+6+7+8+9+10+11+12;charfilter(){charcount;charvalue_buf[N];intsum=0;for(count=0,count9、harfilter(){charcount=0;charnew_value;new_value=get_ad();while(value!=new_value);{count++;if(count>=N)returnnew_value;delay();new_value=get_ad();}returnvalue;}10、限幅消抖滤波法/**/略参考子程序1、91、限幅滤波法(又称程序判断滤波法)A、方法:根据经验判断,确定两次采样允许的最大偏差值(设为A)每次检测到新值时判断:如果本次值与上次值之差<=A,则本次值有效如果本
6、(又称防脉冲干扰平均滤波法)/**/#defineN12charfilter(){charcount,i,j;charvalue_buf[N];intsum=0;for(count=0;countvalue_buf[i+1]){temp=value_buf[i];value_buf[i]=value_buf[i+1];value_buf[i+1]=temp;}}}for(c
7、ount=1;count8、,2,3,4,5,6,7,8,9,10,11,12};charcodesum_coe=1+2+3+4+5+6+7+8+9+10+11+12;charfilter(){charcount;charvalue_buf[N];intsum=0;for(count=0,count9、harfilter(){charcount=0;charnew_value;new_value=get_ad();while(value!=new_value);{count++;if(count>=N)returnnew_value;delay();new_value=get_ad();}returnvalue;}10、限幅消抖滤波法/**/略参考子程序1、91、限幅滤波法(又称程序判断滤波法)A、方法:根据经验判断,确定两次采样允许的最大偏差值(设为A)每次检测到新值时判断:如果本次值与上次值之差<=A,则本次值有效如果本
8、,2,3,4,5,6,7,8,9,10,11,12};charcodesum_coe=1+2+3+4+5+6+7+8+9+10+11+12;charfilter(){charcount;charvalue_buf[N];intsum=0;for(count=0,count9、harfilter(){charcount=0;charnew_value;new_value=get_ad();while(value!=new_value);{count++;if(count>=N)returnnew_value;delay();new_value=get_ad();}returnvalue;}10、限幅消抖滤波法/**/略参考子程序1、91、限幅滤波法(又称程序判断滤波法)A、方法:根据经验判断,确定两次采样允许的最大偏差值(设为A)每次检测到新值时判断:如果本次值与上次值之差<=A,则本次值有效如果本
9、harfilter(){charcount=0;charnew_value;new_value=get_ad();while(value!=new_value);{count++;if(count>=N)returnnew_value;delay();new_value=get_ad();}returnvalue;}10、限幅消抖滤波法/**/略参考子程序1、91、限幅滤波法(又称程序判断滤波法)A、方法:根据经验判断,确定两次采样允许的最大偏差值(设为A)每次检测到新值时判断:如果本次值与上次值之差<=A,则本次值有效如果本
此文档下载收益归作者所有