The yaw pitch and roll we get from the android's SensorManager.getOrientation() are all for the Y axis of the phone. By this i mean, the yaw and pitch say where the Y-axis points, and the roll is about the Y axis. (and my screen orientation is fixed to landsape, so the Y axis doesnt change). But what i want is the yaw pitch and roll of the negative Z axis (points into the phone), more like if my phone screen is a landscape window in a cockpit of a plane, what would the yaw pitch and roll be?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

If I understand what you're saying, you are seeing the current yaw pitch and roll being return as if the +y axis were the default 'front' vector and the +z axis were the default 'up' vector. You would like to do a coordinate transform such that your yaw, pitch, and roll are calculated with the -z axis as the default 'front' vector and the +x vector as the default 'up' vector.

First, you'll need to compute the current front and up vectors from your yaw, pitch and roll in the current configuration. This can be done using 3D rotation matrices: http://en.wikipedia.org/wiki/Rotation_matrix#Rotations_in_three_dimensions

Use the yaw angle to rotate about z, pitch as a rotation about x, and roll as a rotation about y. Multiply these matrices together, then multiply the front vector (0, 1, 0) and up vector (0, 0, 1) by the result to get your new front and up vectors.

Next you'll need to compute the new yaw, pitch, and roll angles. Yaw is the angle between the front vector projected into the yz plane (set x value to 0) and the -z vector (0, 0, -1), pitch is the angle between the front vector projected onto the xz plane and the -z vector, and roll is the angle between the up vector projected onto the xy plane and the +x vector (1, 0, 0). If we let Fx = the x component of the front vector, Fy be the y component, and so on, we get:

yaw   = acos ( -z dot (0,  Fy, Fz) ) / sqrt(Fy*Fy + Fz*Fz)
pitch = acos ( -z dot (Fx, 0,  Fz) ) / sqrt(Fx*Fx + Fz*Fz)
roll  = acos ( +x dot (Ux, Uy, 0 ) ) / sqrt(Ux*Ux + Uy*Uy)

You should be able to do this for other vectors if I've chosen the wrong ones.

link|improve this answer
Thanks for the response. But i'm still a bit confused, probably because of the multiple x,y,z axes that are floating around. When you say 'multiply the front vector (0, 1, 0) and up vector (0, 0, 1) by the result to get your new front and up vectors.' you are still using the old definition of the front and up. Shouldnt it be the new front (0,0,-1) and up (0,1,0) (ok, my up vector is the +y axis and not the +x). And the Fx, Fy etc are components on the old xyz before the rotation right? – sudP Jan 26 at 9:35
I am still using the old definition in the first part, because that's that the default of the phone that we need to convert from. If we rotate the default front and up by the yaw-pitch-roll reported by the phone, we'll get the absolute front and up vectors. The Fx, Fy, etc are the components of those vectors after rotation, because at that point we are converting the absolute front and up to yaw-pitch-roll with your new front and up, -z and +y. – redneckjedi Jan 26 at 16:46
'Yaw is the angle between the front vector projected into the yz plane (set x value to 0) and the -z vector (0, 0, -1)' shouldnt yaw be an angle in the old xy plane and not yz? – sudP Jan 26 at 17:17
If front is -z and up is +x, yaw is your rotation about the x axis, and can most easily be calculated as the angle between -z (which is in the yz plane by definition) and the projection of your front vector onto the yz plane. – redneckjedi Jan 26 at 17:28
Oh! I think i'm getting the hang of it now!.... Just for confirmation: If my up vector is +y, then the second part changes to: yaw = acos ( -z dot (Fx, 0, Fz) ) / sqrt(Fx*Fx + Fz*Fz); pitch = acos ( -z dot (0, Fy, Fz) ) / sqrt(Fy*Fy + Fz*Fz); roll = acos ( +y dot (Ux, 0, Uz ) ) / sqrt(Ux*Ux + Uz*Uz). Correct? – sudP Jan 26 at 17:46
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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