Jump to content

Gesture Signal Processing: Difference between revisions

From CCRMA Wiki
Eberdahl (talk | contribs)
mNo edit summary
Eberdahl (talk | contribs)
Line 1: Line 1:
== Gesture Signal Processing ==
== Interpolation ==


=== Interpolation ===




== Filtering ==


=== Filtering ===
While studying sensors, we discovered that often a particular sensor will measure the position '''x''', velocity '''v''', or acceleration '''a''' of an object.  However,  
 
While studying sensors, we discovered that often a particular sensor will measure the position '''x''', velocity, or acceleration of an object.  However,  


Simple integrator:
Simple integrator:
Line 24: Line 22:




=== Thresholding ===
== Thresholding ==

Revision as of 23:49, 10 October 2008

Interpolation

Filtering

While studying sensors, we discovered that often a particular sensor will measure the position x, velocity v, or acceleration a of an object. However,

Simple integrator:

y[n] = 0.1*x[n] + 0.9*y[n-1]

example of lp filter

Simple differentiator:

y[n] = x[n] - x[n-1]

example of hp filter

book on simple filter design


Thresholding