2

我正在构建一个 Android 应用程序,我在其中使用前置摄像头进行一些图像处理。

知道相机的位置对我来说很重要。例如,在三星 S3 上,它位于设备的上部,而在 Galaxy Note 10 上 - 它位于侧面。

这很重要,因此我可以知道相机预览缓冲区的方向和屏幕本身的方向(我希望 UI 始终相对于相机保持纵向,即 - 所以相机始终位于顶部)。

有任何想法吗?

编辑:我可以使用 Android 4 及更高版本(无需支持较低版本)

谢谢!

4

2 回答 2

1

除了来自android本身的参考之外,我认为没有办法找出相机在设备上的位置:http: //developer.android.com/reference/android/graphics/Camera.html

于 2013-04-11T09:51:55.050 回答
0

正如其他人所说,位置本身并不重要,因为您只需获得方向等。

话虽如此,我之前从 StackOverflow 得到了这个方法(对开发它的人表示敬意),它就像一个魅力。只需在您的surfaceCreated回调中调用它。

    private void setCameraDisplayOrientation(Activity activity, int cameraId, android.hardware.Camera camera) {
            android.hardware.Camera.CameraInfo info = new android.hardware.Camera.CameraInfo();
            android.hardware.Camera.getCameraInfo(cameraId, info);
            int rotation = activity.getWindowManager().getDefaultDisplay().getRotation();
            int degrees = 0;
            switch (rotation) {
            case Surface.ROTATION_0:
                    degrees = 0;
                    break;
            case Surface.ROTATION_90:
                    degrees = 90;
                    break;
            case Surface.ROTATION_180:
                    degrees = 180;
                    break;
            case Surface.ROTATION_270:
                    degrees = 270;
                    break;
            }

            int result;
            if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
                    result = (info.orientation + degrees) % 360;
                    result = (360 - result) % 360; // compensate the mirror
            } else { // back-facing
                    result = (info.orientation - degrees + 360) % 360;
            }
            camera.setDisplayOrientation(result);
    }
于 2013-04-11T09:55:51.770 回答