What is the difference between a regular and adaptive low pass filter?

南楼画角 提交于 2019-12-09 18:25:37

问题


I've noticed in Apple's accelerometer sample code they use both regular and adaptive low pass filters, what is the difference?


回答1:


They are both IIR 1st order low pass filters (simple, and laggy in responsiveness when compared with other DSP techniques). The adaptive filter switches to a higher frequency roll-off (and thus becomes even less smoothing but more responsive) for larger accelerations.

There are other higher quality (and more complicated) DSP filtering techniques for motion sensing often used by portable game developers.




回答2:


In general, any adaptive filter will adjust itself based on the input signal. I'm not sure if you'll notice much difference in practice. Just try it out and see if one gives better response to what you're trying to do.




回答3:


IIR Adaptive has a flatter response curve which means you have a higher fidelity output. Or, in other words, what you put in is what you get out.



来源:https://stackoverflow.com/questions/4272259/what-is-the-difference-between-a-regular-and-adaptive-low-pass-filter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!