Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just started to realize an augmented reality based project, got GPS location, heading, and the two missing variable to manipulate virtual camera is Pitch/Roll.

I'm wondering if there is a ready-made formula I can merge into the project. Could spare me a lot of time. Thanks in advance.

share|improve this question

3 Answers

I think this post about the iphone accelerometer will answer most of your questions, including sample code.

share|improve this answer
Ohh, so simply pitch=acceleration.x, roll=acceleration.y. And the acceleration.z component tells me if the device is upside down somehow. Thisone will help me to create somehow the "360 degrees free camera". Thanks jilles. – Geri Jun 8 '10 at 9:33
up vote 0 down vote accepted

I've got into the problem since, so a realy detailed post about the solution can be read here:

Get pitch and roll angles from the iPhone's accelerometer vector at gotoandplay.freeblog.hu

share|improve this answer

You can access the device rotation through the CMMotionManager which computes the radians based on raw data (accelerometer, gyro etc.). Make sure you enable the sensor updates:


if (motionMng.deviceMotionAvailable && !motionMng.deviceMotionActive) {
    motionMng.deviceMotionUpdateInterval = 1.0 / 50.0;
    [motionMng startDeviceMotionUpdates];
}

Afterwards access rotation – pitch(x), roll(y) and yaw(z) – by querying the attitude object:


CMDeviceMotion *motion = [motionMng deviceMotion];

if (motion != NULL) {

    float pitch = motion.attitude.pitch;
    float roll = motion.attitude.roll;
    float yaw = motion.attitude.yaw;

    NSLog(@"ROTATION: x:%f y:%f z:%f", pitch, roll, yaw);
}
share|improve this answer
motionMng.deviceMotionAvailable returns NO on a 3GS, so this won't work. As far as I can tell, deviceMotion uses the accellerometer to aid the accuracy of the gyro rather than it simply using what's available. If the gyro isn't present then deviceMotion won't work. At least on 4.3. – Max Clarke Jul 14 '11 at 10:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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