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

I'm trying to transform the negative Z-axis of the device's coordinate system [0,0,-1] to the worlds coordinate system for the purpose of adjusting the pan and tilt of a camera. Once I have this vector I can find the pan and tilt with some simple trigonometry. According to the API description I should be able to take my [0,0,-1] vector and transform it to the world coordinate system with the rotation matrix returned by getRotationMatrix(), but the world vector I get back does not behave as it should. For example the x component of the world vector (cos(pan)) should have a range [-1,1] for one complete spin of the phone around one of its axes but this is not observed in the log data. Has anyone done anything similar to this? I'm very stumped.

public void onSensorChanged(SensorEvent event) {
        switch(event.sensor.getType()){
        case Sensor.TYPE_ACCELEROMETER:
            //grab the accelerometer values and change the strings at each sensor event
            AccelerometerValues = event.values.clone();
            break;
        case Sensor.TYPE_MAGNETIC_FIELD:
            MagneticValues = event.values.clone();
            break;
        }

        //update rotation matrices
        boolean newRotationMatrix = SensorManager.getRotationMatrix(RrotationMatrix,IrotationMatrix,AccelerometerValues,MagneticValues);    
        //Log.d(s_TAG,String.valueOf("rotation matrix returns: " + sMan));
        //get orientation matrix
        if(newRotationMatrix){
            SensorManager.remapCoordinateSystem(RrotationMatrix,SensorManager.AXIS_Y, SensorManager.AXIS_X, RrotationMatrix);
            SensorManager.getOrientation(RrotationMatrix, OrientationValues);

            double calcPan, calcTilt;
            float[] worldVector = {-1*RrotationMatrix[2],-1*RrotationMatrix[6],-1*RrotationMatrix[10]};

            Log.d(s_TAG,String.format("rotation matrix: [%+1.3f , %+1.3f, %+1.3f ]\n", worldVector[0],worldVector[1],worldVector[2]));

            //fill up moving average buffers, write over the oldest value, low pass filter 
            calcPanBuffer[bufferCount%MOVING_AVERAGE_LENGTH] = worldVector[1];
            calcTiltBuffer[bufferCount%MOVING_AVERAGE_LENGTH] = worldVector[0];
            //increment buffercount
            bufferCount += 1;
            double panAverage = averageArray(calcPanBuffer);
            double tiltAverage = averageArray(calcTiltBuffer);

            calcPan = Math.acos(panAverage);
            calcTilt = Math.acos(tiltAverage/Math.sin(calcPan));
            }
share|improve this question

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.