开发者

Android Sensors

I have a very basic question about Sensors:

Do magnetic sensors return readings w.r.t the phone's initial orientation or w.r.t the world coordinates?

What about accelerometers? Do they return values w.r.t their previous readings or is each value an independent acceleration relative to the world coordinate system?

I know that gyros return readings relative to the phone's initial orientation. So, how do I convert the yaw, pitch and roll readings from a gyro into the azimuth, pitch and roll readings 开发者_如何学JAVAfrom a magnetic sensor of a smartphone (I'm using HTC hero)

Thanks!


As mentioned, the gyroscope measures the angular velocity. The third value returned (values[2]) is the angular velocity regarding the z axis. You can use this value together with the initial value from the magnetometer to calculate current heading: Theta(i+1) = Theta(i) + Wgyro*deltaT

You can receive initial heading orientation from 'Orientation' measurement (values[0]) This measurement is dependent only on the magnetometer. (you can put a magnet or a second phone close to the Smartphone and watch the output going crazy)

The second and third values of the 'Orientation' are dependent on the readings of the Accelerometer. Since the Accelerometer measures gravity, it is possible to calculate the pitch and roll angles from the Accelerometer readings in Axis Y and X.

Hope this helps

Ariel


Android Sensors (upto FroYo) provide the application with "raw" data.
There is bare minimum of "cooking" (ie processing) involved.

The accel & compass device provide absolute accel & magnetic data respectively.
The gyroscope provides relative angular velocity.

Gyroscopes do NOT provide relative data wrt any specific state/position.
What you need to understand is that gyroscopic data is angular-velocity.
Angular velocity is simply, how fast the phone is rotating (in degrees-per-second).
So once you hold it still, gyro says (0,0,0) &
as you rotate, you get how fast it is rotating.
This continues until u again hold it back still
when the gyro reading again becomes (0,0,0).

Theoretically the gyro can be used in "callibrate" the compass.
But to do so would require a lot of experimentation on your part.
The ideal place to fiddle around would be the sensor-HAL.

NOTE: You would need to turn-ON all the sensor h/w even if
ONLY compass data is reqd. As you will be cross-referencing
the gyro/accel data for that. This will mean larger power consumption &
extremely poor battery life. All the sensors turned on continuously can
drain the battery of a standard Android phone in 4-5hrs.

You can read more Android Sensors here.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜