I'm trying to obtain the orientation of an android device, and I need it to be in a quaternion structure (float[4] basically).

What I have now is this:

if (event.sensor.getType() == Sensor.TYPE_ACCELEROMETER){
    last_acc = (float[])event.values.clone();
}
else if (event.sensor.getType() == Sensor.TYPE_MAGNETIC_FIELD){
    last_mag = (float[])event.values.clone();
}
if (last_acc != null && last_mag != null){
    SensorManager.getRotationMatrix(rotation, inclination, last_acc, last_mag);
    SensorManager.getOrientation(rotation, orientation);

In "rotation", I have the 4x4 rotation matrix, and in orientation I have a float[3] vector where I have the azimuth, pitch and roll.

How can I get now the quaternion?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I wouldn't use Euler angles (roll, pitch, yaw), it pretty much screws up the stability of your app.

As for converting the rotation matrix to quaternion, Google says:

link|improve this answer
Thanx for the answer. I think this is what I need. Also, the google video that explains it is very clear. Thanx again :) – Alex Feb 16 at 1:36
@Alex Glad to hear it. Good luck! – Ali Feb 16 at 8:33
feedback

Your Answer

 
or
required, but never shown

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