How to 'smooth' data and calculate line gradient? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:32:11Z http://stackoverflow.com/feeds/question/204184 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/204184/how-to-smooth-data-and-calculate-line-gradient 4 How to 'smooth' data and calculate line gradient? paul 2008-10-15T09:45:32Z 2009-11-07T03:02:18Z <p>I'm reading data from a device which measures distance. My sample rate is high so that I can measure large changes in distance (i.e. velocity) but this means that, when the velocity is low, the device delivers a number of measurements which are identical (due to the granularity of the device). This results in a 'stepped' curve.</p> <p>What I need to do is to smooth the curve in order to calculate the velocity. Following that I then need to calculate the acceleration.</p> <p>How to best go about this?</p> <p>(Sample rate up to 1000Hz, calculation rate of 10Hz would be ok. Using C# in VS2005)</p> http://stackoverflow.com/questions/204184/how-to-smooth-data-and-calculate-line-gradient/204195#204195 6 Answer by moogs for How to 'smooth' data and calculate line gradient? moogs 2008-10-15T09:52:41Z 2008-10-15T09:58:04Z <p>You need a smoothing filter, the simplest would be a "moving average": just calculate the average of the last n points.</p> <p>The question here is, how to determine n, can you tell us more about your application?</p> <p>(There are other, more complicated filters. They vary on how they preserve the input data. A good list is in <a href="http://en.wikipedia.org/wiki/Smoothing" rel="nofollow">Wikipedia</a>)</p> <p><strong>Edit!:</strong> For 10Hz, average the last 100 values.</p> http://stackoverflow.com/questions/204184/how-to-smooth-data-and-calculate-line-gradient/204199#204199 0 Answer by Lee for How to 'smooth' data and calculate line gradient? Lee 2008-10-15T09:53:32Z 2008-10-15T09:53:32Z <p>You could use a <a href="http://en.wikipedia.org/wiki/Moving_average" rel="nofollow">moving average</a> to smooth out the data.</p> http://stackoverflow.com/questions/204184/how-to-smooth-data-and-calculate-line-gradient/204229#204229 12 Answer by GvS for How to 'smooth' data and calculate line gradient? GvS 2008-10-15T10:09:50Z 2008-10-15T10:41:46Z <p>The wikipedia entry from moogs is a good starting point for smoothing the data. But it does not help you in making a decision.</p> <p>It all depends on your data, and the needed processing speed.</p> <p><strong>Moving Average</strong> Will flatten the top values. If you are interrested in the minimum and maximum value, don't use this. Also I think using the moving average will influence your measurement of the acceleration, since it will flatten your data (a bit), thereby acceleration will appear to be smaller. It all comes down to the needed accuracy.</p> <p><strong>Savitzky–Golay</strong> Fast algorithm. As fast as the moving average. That will preserve the heights of peaks. Somewhat harder to implement. And you need the correct coefficients. I would pick this one.</p> <p><strong>Kalman filters</strong> If you know the distribution, this can give you good results (it is used in GPS navigation systems). Maybe somewhat harder to implement. I mention this because I have used them in the past. But they are probably not a good choice for a starter in this kind of stuff.</p> <p>The above will reduce noise on your signal.</p> <p>Next you have to do is detect the start and end point of the "acceleration". You could do this by creating a <a href="http://en.wikipedia.org/wiki/Derivative" rel="nofollow">Derivative</a> of the original signal. The point(s) where the derivative crosses the Y-axis (zero) are probably the peaks in your signal, and might indicate the start and end of the acceleration.</p> <p>You can then create a second degree derivative to get the minium and maximum acceleration itself.</p> http://stackoverflow.com/questions/204184/how-to-smooth-data-and-calculate-line-gradient/204296#204296 0 Answer by James Fassett for How to 'smooth' data and calculate line gradient? James Fassett 2008-10-15T10:48:46Z 2008-10-15T10:48:46Z <p>In addition to the above articles, have a look at <a href="http://www.mvps.org/directx/articles/catmull/" rel="nofollow">Catmull-Rom Splines</a>.</p> http://stackoverflow.com/questions/204184/how-to-smooth-data-and-calculate-line-gradient/204297#204297 0 Answer by Shane MacLaughlin for How to 'smooth' data and calculate line gradient? Shane MacLaughlin 2008-10-15T10:49:01Z 2008-10-15T10:49:01Z <p>In addition to GvSs excellent answer above you could also consider smoothing / reducing the stepping effect of your averaged results using some general curve fitting such as cubic or quadratic splines.</p> http://stackoverflow.com/questions/204184/how-to-smooth-data-and-calculate-line-gradient/1678795#1678795 1 Answer by Paul for How to 'smooth' data and calculate line gradient? Paul 2009-11-05T07:00:53Z 2009-11-07T03:02:18Z <p>Moving averages are generally terrible - but work well for white noise. Both moving averages &amp; Savitzky-Golay both boil down to a correlation - and therefore are very fast and could be implemented in real time. If you need higher order information like first and second derivatives - SG is a good right choice. The magic of SG lies in the constant correlation coefficients needed for the filter - once you have decided the length and degree of polynomial to fit locally, the coefficients need only to be found once. You can compute them using R (sgolay) or Matlab.</p> <p>You can also estimate a noisy signal's first derivative via the Savitzky-Golay best-fit polynomials - these are sometimes called Savitzky-Golay derivatives - and typically give a good estimate of the first derivative. </p> <p>Kalman filtering can be very effective, but it's heavier computationally - it's hard to beat a short convolution for speed!</p> <p>Paul<br> CenterSpace Software </p>