各种软件滤波方法集合.doc

  1. 1、本文档共27页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
10种软件滤波方法? 出处:网络?作者:未知? 假定从8位AD中读取数据(如果是更高位的AD可定义数据类型为int),子程序为get_ad(); 1、限副滤波 /*?nbspA值可根据实际情况调整 ????value为有效值,new_value为当前采样值?? ????滤波程序返回有效的实际值??*/ #definenbspAnbsp10 char?value; charnbspfilter() { ??nbspchar?nbspnew_value; ??nbspnew_value?=nbspget_ad(); ??nbspif?(?(nbspnew_valuenbsp-?value?nbspA?)?||?(?valuenbsp-nbspnew_value?nbspA?) ?????nbspreturn?value; ??nbspreturnnbspnew_value; ????????? } 2、中位值滤波法 /*?nbspN值可根据实际情况调整 ????排序采用冒泡法*/ #definenbspN?nbsp11 charnbspfilter() { ??nbspchar?value_buf[N]; ??nbspcharnbspcount,i,j,temp; ??nbspfor?(nbspcount=0;countN;count++) ???{ ??????value_buf[count]?=nbspget_ad(); ?????nbspdelay(); ???} ??nbspfor?(j=0;jN-1;j++) ???{ ?????nbspfor?(i=0;iN-j;i++) ??????{ ????????nbspif?(?value_bufvalue_buf[i+1]?) ?????????{ ???????????nbsptemp?=?value_buf; ????????????value_buf?=?value_buf[i+1];? ?????????????value_buf[i+1]?=nbsptemp; ?????????} ??????} ???} ??nbspreturn?value_buf[(N-1)/2]; }????? 3、算术平均滤波法 /* */ #definenbspNnbsp12 charnbspfilter() { ??nbspint?nbspsum?=nbsp0; ??nbspfor?(nbspcount=0;countN;count++) ???{ ?????nbspsum?+?=nbspget_ad(); ?????nbspdelay(); ???} ??nbspreturn?(char)(sum/N); } 4、递推平均滤波法(又称滑动平均滤波法) /* */ #definenbspNnbsp12? char?value_buf[N]; charnbspi=0; charnbspfilter() { ??nbspcharnbspcount; ??nbspint?nbspsum=0; ???value_buf[i++]?=nbspget_ad(); ??nbspif?(nbspi?==nbspN?)??nbspi?=nbsp0; ??nbspfor?(nbspcount=0;countN,count++) ?????nbspsum?=?value_buf[count]; ??nbspreturn?(char)(sum/N); } 5、中位值平均滤波法(又称防脉冲干扰平均滤波法) /* */ #definenbspNnbsp12 charnbspfilter() { ??nbspcharnbspcount,i,j; ??nbspchar?value_buf[N]; ??nbspint?nbspsum=0; ??nbspfor??(count=0;countN;count++) ???{ ??????value_buf[count]?=nbspget_ad(); ?????nbspdelay(); ???} ??nbspfor?(j=0;jN-1;j++) ???{ ?????nbspfor?(i=0;iN-j;i++) ??????{ ????????nbspif?(?value_bufvalue_buf[i+1]?) ?????????{ ???????????nbsptemp?=?value_buf; ????????????value_buf?=?value_buf[i+1];? ?????????????value_buf[i+1]?=nbsptemp; ?????????} ??????} ???} ??nbspfor(count=1;count

文档评论(0)

shaoye348 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档