Whate are the basic concepts for implementing anti-shock and anti-shake algorithms? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T23:30:17Z http://stackoverflow.com/feeds/question/929919 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/929919/whate-are-the-basic-concepts-for-implementing-anti-shock-and-anti-shake-algorithm 2 Whate are the basic concepts for implementing anti-shock and anti-shake algorithms? Thanks 2009-05-30T15:19:21Z 2009-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#929950 4 Answer by tvanfosson for Whate are the basic concepts for implementing anti-shock and anti-shake algorithms? tvanfosson 2009-05-30T15:32:57Z 2009-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#930496 0 Answer by Corey Floyd for Whate are the basic concepts for implementing anti-shock and anti-shake algorithms? Corey Floyd 2009-05-30T20:12:54Z 2009-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>