Whate are the basic concepts for implementing anti-shock and anti-shake algorithms? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T23:30:17Zhttp://stackoverflow.com/feeds/question/929919http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/929919/whate-are-the-basic-concepts-for-implementing-anti-shock-and-anti-shake-algorithm2Whate are the basic concepts for implementing anti-shock and anti-shake algorithms?Thanks2009-05-30T15:19:21Z2009-05-30T20:12:54Z
<p>I have some animations happening upon fine acceleration detections. But when the user sits in a car or is walking it may get annoying.</p>
<p>Basically, all that stuff has to be disabled automatically as soon as there is too much vibration or shaking. Conceptually, I think that it's very hard to filter those vibrations out , since the "vibration phase" changes permanently. I woul define "unwanted vibration or shocks" as acceleration values that change very fast by an large interval of values, or, an permanently changing accumulated value that does not exceed an specified treshold range in an specified minimum period of time.</p>
<p>I am looking for "proven" concepts, before I start reinventing the wheel for a couple of days.</p>
http://stackoverflow.com/questions/929919/whate-are-the-basic-concepts-for-implementing-anti-shock-and-anti-shake-algorithm/929950#9299504Answer by tvanfosson for Whate are the basic concepts for implementing anti-shock and anti-shake algorithms?tvanfosson2009-05-30T15:32:57Z2009-05-30T15:32:57Z<p>I don't have any concrete answers for you, but you might want to Google band-pass filters or anti-aliasing filters for some ideas on how to approach this. Basically, if you can identify the frequency range of accelerations that you want to consider real, you can filter out frequencies that fall outside this range.</p>
http://stackoverflow.com/questions/929919/whate-are-the-basic-concepts-for-implementing-anti-shock-and-anti-shake-algorithm/930496#9304960Answer by Corey Floyd for Whate are the basic concepts for implementing anti-shock and anti-shake algorithms?Corey Floyd2009-05-30T20:12:54Z2009-05-30T20:12:54Z<p>Before you start doing too much pre-optimization, I think you should implement a low pass filter and see if that does the job. Most iPhone apps effectively use a variation of an LPF to get rid of unwanted accelerometer noise.</p>
<p>You could also go the other way and use a high pass filter. Once you get a certain power level passing through the HPF, stop processing data.</p>