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.
|
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. |
|||
|
|
|
Basic calculus behind this problem is in the expression
(and similar expressions for displacements in y and z) and basic geometry is the Pythagorean theorem
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...)
and similarly for dy and dz. Here
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
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. |
|||||||||||||
|
|
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:
Update (24 Feb 2013): @Simon Yes, if you know more about the movement, for example a person walking and the sensor is on his foot, then you can do a lot more. These are called domain specific assumptions. They break miserably if the assumptions do not hold and can be quite cumbersome to implement. Nevertheless, if they work, you can do fun things. See the links in my answer Android accelerometer accuracy (Inertial navigation) at indoor positioning. |
|||||||||||||
|
|
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. |
|||||||
|
|
Here is the answer. Somebody asked before. There is an app called RangeFinder doing the same thing ( available in App Store ) . |
|||
|
|