I want to build an app that calculates accurate Distance travelled by iPhone (not long distance) using Gyro+Accelerometer.

No need for GPS here.

Can you help me here with some useful information or tutorial?

Thanks in advance.

link|improve this question

0% accept rate
feedback

4 Answers

Basic calculus behind this problem is in the expression

enter image description here

(and similar expressions for displacements in y and z) and basic geometry is the Pythagorean theorem

enter image description here

So, once you have your accelerometer signals passed through a low-pass filter and binned in time with sampling interval dt, you can find the displacement in x as (pardon my C...)

float dx=0.0f;
float vx=0.0f;
for (int i=1; i<n; i++)
 {
   vx+=(acceleration_x[i-1] + acceleration_x[i])/2.0f*dt;
   dx+=vx*dt;
 }

and similarly for dy and dz. Here

float acceleration_x[n];

contains x-acceleration values from start to end of measurement at times 0, dt, 2*dt, 3*dt, ... (n-1)*dt.

To find the total displacement, you just do

dl=sqrt(dx*dx + dy*dy + dz*dz);

Gyroscope is not necessary for this, but if you are measuring linear distances, you can use the gyroscope reading to control that rotation of the device was not too large. If rotation was too strong, make the user re-do the measurement.

link|improve this answer
Nice. I just saw that the questioner has never cast a vote nor accepted an answer, so +1 from me :-) In practice I ran into trouble after a few seconds because of error propagation even with Simpson rule for integration. – Kay Jul 11 '11 at 9:16
Thanks Kay, I had a suspicion that the devil is in the details, I am sure that it is not impossible to fix. Off the top of my head, accelerometer's response may be nonlinear in amplitude at high frequencies, or they may not be subtracting gravity accurately enough. In both cases, filtering out problem frequencies (probably, everything above 30 Hz must be suppressed) and runtime calibration (hold still for 1 second and measure drift to compensate for it) should help. I guess I have to try it on my Android now. – drlemon Jul 11 '11 at 22:44
It's still an unresolved problem to get accurate results i.e. something you can really use for a game or whatever. Like Ali said David Sachs has done some very research on Android (s. Ali's link to its Google Tech Talk). You might find useful ideas in the link I provided in my answer below. Be prepared to do some heavy maths (Kalman filter and derivatives). – Kay Jul 12 '11 at 8:21
feedback

You get position by integrating the linear acceleration twice but the error is horrible. It is useless in practice.

Here is an explanation why (Google Tech Talk) at 23:20. I highly recommend this video.

Similar questions:

track small movements of iphone with no GPS
What is the real world accuracy of phone accelerometers when used for positioning?
how to calculate phone's movement in the vertical direction from rest?
iOS: Movement Precision in 3D Space
How to use Accelerometer to measure distance for Android Application Development
Distance moved by Accelerometer

link|improve this answer
Do you know if anyone has tried to find the source of the horrible systematic errors? Does suppressing high frequencies or pre-measurement calibration help? – drlemon Jul 11 '11 at 22:45
Watch the video from 23:20, the Google Tech Talk I linked in my answer. It explains why you get that horrible error. Neither filtering nor calibration will help. – Ali Jul 12 '11 at 0:54
I don't think they explain anything. He says "There are some ways to improve the linear movement estimate... but any kind of orientation errors are really important, all sorts of error couple in, including things like the cross axis error between the accelerometer and the gyroscope". To me, it looks like they just don't know what is going on, because if they did, they could suggest something to make the results better. Thanks for the video, very informative! I'll have to play with that accelerometer now when I have time. – drlemon Jul 12 '11 at 16:54
feedback

You should use the Core Motion interface like described in Simple iPhone motion detect. Especially all rotations can be tracked very accurately. If you plan to do something related to linear movements this is very hard stuff. Have a look at Getting displacement from accelerometer data with Core Motion.

link|improve this answer
Upvoted. It's amazing how many times this question pops up and people keep re-inventing the wheel in the shape of a square... :( – Ali Jan 29 at 9:15
@Ali Yes, I plan to write a blog article within the next months about clearing this up and publishing my results (didn't find the solution but some nice workaround) and then post an abstract as FAQ here at SO. Off-topic: I don't know how to contact you by this chat thing :( Are you doing iPhone programming as well? I've got a request (via SO :) for contracting (Prague) but I am busy. Drop me an email via my web-site if you are interested. BTW: Congrats for hitting 2k rep :))) – Kay Jan 29 at 9:59
Thanks :) I just dropped you and e-mail, so you will have my e-mail address for future reference. I was also thinking about writing an article clearing this mess up. Unfortunately, I do not have the time to do so. :( Anyhow, please inform me when you are done with yours, so I can tell people about it! – Ali Jan 29 at 10:20
feedback

Here is the answer. Somebody asked before.

There is an app called RangeFinder doing the same thing ( available in App Store ) .

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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