-1

I want to create a game which detect arm movement with accelerometer . The kind of arm movement are the movement which commonly found in fitness club like dumbell bicep curl and the others. my only concern is that I have no idea about the formula of swing movement and how to detect that with accelerometer.

maybe the best possible way is to detect the distance of swing movement from going up then start to going down. but still I have no idea how is the equation or formula .. any idea?

Fugogugo
  • 4,460
  • 10
  • 36
  • 50

1 Answers1

1

My best guess is: try dynamic time warping.

Community
  • 1
  • 1
Ali
  • 56,466
  • 29
  • 168
  • 265
  • what is that? I'm getting lost from the first paragraph :| – Fugogugo Apr 02 '12 at 10:38
  • There is no such formula or equation that you are looking for. Instead, you have to build a database of gestures first. Then you have to compare the user's motion to the gestures in the database. The answer linked above tells you how to do that. – Ali Apr 02 '12 at 10:52