I would like to be able to write code that takes the signal from an accelerometer to do these things:

  • Measure acceleration
  • Detect bumps
  • Detect impact
  • Detect sitting/standing
  • and anything else it can possibly do...

I'm specifically interested in the accelerometers in Android phones, but I'm open to general information of all kinds about reading the signal from an accelerometer and making it useful. I have heard of a few good reads on DSP, but, I would really like a resource that is code-centric. Regardless of what programming language the examples are in, I just like to see things in code. Can anyone suggest something that fits the bill? I'm interested in exploiting other sensors on Android phones too, but, I'm mainly asking about accelerometers.

link|improve this question

feedback

4 Answers

up vote 11 down vote accepted

Really good gesture detection with accelerometers is much harder than I expected.

It's worse in a non-real-time system like Android. Be sure to timestamp your data coming in, and take a look at the histogram of this time data. You'll see that the timing is pretty erratic, and definitely not the 100Hz you're probably requesting.

This Bachelors thesis using Hidden Markov Models on the accel data coming from a WiMote can apparently detect complex gestures. It looks pretty strong, and most importantly has source code available. I've been wanting to dive into it and check it out but just haven't had time.

I also recommend looking directly at the app notes for the sensors themselves. The STMicro LIS331DLH is a popular sensor in phones and they have app notes on detecting tilt. The guys at Kionix have more technical application notes on orientation and tilt that I know include source code.

link|improve this answer
Don't worry about the lack of rep & spam anymore. – Tom Dignan Jul 2 '11 at 17:57
much appreciated. Tough question, as there's not much source code out there. I always thought it sounded like a good approach to create a recognition engine like these guys did: google.com/… – Rian Sanderson Jul 4 '11 at 22:06
feedback

A quick Google showed this: http://stuffthathappens.com/blog/2009/03/15/android-accelerometer/ and this: http://www.ibm.com/developerworks/opensource/library/os-android-sensor/

link|improve this answer
I have googled the basics of accelerometer usage. I am interested in receiving replies from people who have their own insights to share. Although thank you for the reply. Have an upvote. – Tom Dignan Jun 28 '11 at 6:39
You're welcome. Have fun. – sparkymat Jun 28 '11 at 6:41
feedback

here is best example for accelerometer.. developer.Android

link|improve this answer
Thanks, dude... – CapDroid Jun 28 '11 at 6:46
feedback

I would take a look at different manufactured segways or similar. Take a look at ballbot. In order to make calculations depending on the input values you need to pass the signals into a filter or several filters.

http://www.instructables.com/id/Angle-measurement-using-gyro-accelerometer-and-Ar/step3/Some-extra-information-before-we-proceed/ Take a look through different steps.

Mr Yamamoto has done a NXT Ballbot and there are really loads and loads of different versions out there. It's mostly for measuring if it's falling and how to get it to stay up but the basic principles about the signals can be good to read.

Other links that could be useful:

iOS: Accurately determining energy of a bump from accelerometer output

How to Count the Number of Steps Using the Accelerometer

Try to search different pedometer codes, is probably loads of different thesis from different schools publishing code and or just a paper. For example: http://code.google.com/p/armd-msc-thesis/source/browse/trunk/DEFirmware-2010/firmware/algorithms/pedometer.c?spec=svn126&r=126

Good luck!

link|improve this answer
Thanks for the links man – Tom Dignan Jul 7 '11 at 23:01
No problems, as I said good luck. I have spent some researching for a pedometer but not enough time to do a real good one. – David Olsson Jul 7 '11 at 23:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.