rajat ghai
rajat ghai

Reputation: 153

explanation of matrix - augmented reality browser using android

I am developing augmented reality camera application in which nearby locations would be augmented on the camera screen. I need to find the orientation of device. I am using accelerometer sensor with magnetic sensor. And i am learning all these from the code which is on github.

This is the SensorActivity where this matrix class is used.

So, what is angleX and angleY. What are all these parameters?

Upvotes: 0

Views: 243

Answers (1)

Traian
Traian

Reputation: 3003

you should read this first: http://en.wikipedia.org/wiki/Rotation_matrix

go to Basic rotations in the above link to find exactly what you're looking for

in your specific example, if you compute the matrix you get the identity matrix http://en.wikipedia.org/wiki/Identity_matrix

Upvotes: 1

Related Questions