我正在构建一个Android应用程序,我使用前置摄像头进行图像处理。
了解相机的位置非常重要。例如,在三星S3上,它位于设备的上部,与Galaxy Note 10一样 - 它就在侧面。
这很重要,所以我可以知道相机预览缓冲区的方向和屏幕本身的方向(我希望UI始终保持纵向相对于相机,即 - 所以相机总是在TOP上)。
有什么想法吗?
编辑:我可以使用Android 4及更高版本(无需支持更低版本)
谢谢!
答案 0 :(得分:1)
除了android本身的引用外,我认为没有办法弄清楚相机在设备上的位置: http://developer.android.com/reference/android/graphics/Camera.html
答案 1 :(得分: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);
}