Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am doing an Opengl appln in which i have to rotate the camera, if the android device is rotated/tilted along Z axis.

I tried the SensorManager.getOrientation(R, orientVals); using the magnetic and accelerometer sensors. But the values are very much fluctuating. Gyroscope is also available in my device.

Since I am animating (rotate) the camera, I need a smooth rotation values

Please guide me in this regard.

share|improve this question
2  
As you have the gyroscope, use that. the magnetic/acceleration sensor causes lots of noise (which you can compensate for, but gyrscope is loads better). Here's a video that explains a bit more: youtube.com/watch?v=s19W-MG-whE – Jave Dec 13 '11 at 12:40
Gyroscopes produce excellent, reliable values but aren't terribly ubiquitous. If you want your app to run on lots of devices, you'll want to stick with the way you're doing it now. I found that a simple moving average was the best way to fix the values. It incurs a slight delay but is far smoother. – Jonba Jan 23 '12 at 22:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.