其他分享
首页 > 其他分享> > android – 如何获得GPS手机的摄像头方向?

android – 如何获得GPS手机的摄像头方向?

作者:互联网

我发现有关GPS的全部内容是它只是告诉设备的位置,如何获得相机指向的方向,角度和设备的高度?如何使用支持GPS的手机制作指南针(2D,3D)?

手机中是否有内置的2D,3D指南针,或者只是通过GPS完成?

解决方法:

我是这样做的:

1 – 使用加速度和磁力削减器获得加速度和磁力值.

2 – 将这些值转换为方向:

    private float[] rMatrix = new float[9]; 
    private float[] outR = new float[9];

    SensorManager.getRotationMatrix(rMatrix, null, accelerometerValues, magneticValues);
    SensorManager.remapCoordinateSystem(rMatrix, SensorManager.AXIS_X, SensorManager.AXIS_Z, outR);
    SensorManager.getOrientation(outR, orientationValues);

这里的accelerometerValues和magneticValues浮动[3]数组,你在相应的监听器中初始化

3 – orientationValues [0]和orientationValues [1]值是水平和垂直角度.

标签:android,gps,augmented-reality
来源: https://codeday.me/bug/20190610/1211013.html