this is an other question about indoor tracking using inertial (smartphone + aceel + gyro) Firstly I would like to say that I have read almost every post on stackoverflow talking about this subject. And I know that to track a position We will have to integrate TWICE the accel and that is very useless in a real life application because of all the drift errors...
But it turned out that I don't need to build a plane or whatever And i don't need to developp an application that have to WORK to be sold or something . I just want to realize a simple Android App that use "theoretical" concept of an Indoor tracking-
- What's the possibilities?
- What do we need ?
Basically my phone is resting on a desk screen facing UP at a known position (0,0) if a push my phone to 2 or 3 meter and then i rotate it and i push it again for 2 or 3 meter I the to see after how many meter it becomes to inaccurate an so use a tag tu recalibrate the measurements <--- That's my main question
what do I need ? - the angle ? (ok integrating the the gyro) (i don't wanna use the compass) - the accel? (i have) - the velocity ? (integrating the accel) - and the position (double accel integration)
The thing that I would like to know is How can i put this number together? Is it the right way to do it? Is there an other solution (to resolve my problem not to track someone really accurately)?
I also looked at the theorie of the DCM ( If I undertood correctly it will give me the orientation of the phone in 6 axes right? But what the difference about getting the angle from the accel or the gyro (pitch, roll etc..) ?
Thank you