gpt4 book ai didi

Android 前置摄像头图像被颠倒保存

转载 作者:搜寻专家 更新时间:2023-11-01 08:35:20 24 4
gpt4 key购买 nike

我正在构建一个使用相机功能的 Android 应用程序。我遇到的问题是我从前置摄像头获得的图像数据 (byte[]) 在我的三星 s7 和 nexus 手机上倒过来了。它在预览中显示正确,但在我按原样保存数据然后在图库中显示图像后,它们都颠倒了。我知道我可以在保存之前翻转图像数据,但我已经在运行 4.4 (kitkat) 的 blu C 5.0 HD 上测试了代码,并且该手机上的图像数据以正确的方式定向。所以总是翻转图像会导致其他设备上的错误。有人告诉我这个问题是因为在制造新的三星和 Nexus 手机时,前置摄像头是倒置的,以节省空间。我不确定这是否正确,但如果是这样,如果我翻转所有图像,它会弄乱相机方向正确的手机。那么有没有办法在保存图像之前检测图像数据的方向呢?

这是我使用的代码:

mCamera.takePicture(null, null, mPicture);

回调:

private final Camera.PictureCallback mPictureCallback = new Camera.PictureCallback() {
@Override
public void onPictureTaken(byte[] data, Camera camera) {

processCameraCallback(data);
}
};

处理数据:

    public void processCameraCallback(byte[] data) {
confirmPhoto(true);
//Make a new empty picture file
try {
pictureFile = Utils.createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File
Log.e(TAG, "Failed to create photo file: " + ex.toString());
confirmPhoto(false);
return;
}

//Write the file to the storage
try {
FileOutputStream fos;
if (pictureFile != null) {

fos = new FileOutputStream(pictureFile);
fos.write(data);
fos.close();
}
} catch (FileNotFoundException e) {
Log.d(TAG, "File not found: " + e.getMessage());
confirmPhoto(false);
return;
} catch (IOException e) {
Log.d(TAG, "Error accessing file: " + e.getMessage());
confirmPhoto(false);
return;
}
}

最佳答案

使用此代码调整相机方向:

private  int detectCameraDisplayOrientation(Activity activity,
Camera.CameraInfo 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;
}
return result;
}

这是来自相机 api 示例,在 nexus 5x 上可以正常工作。(使用倒置相机)

之后就打电话camera.setDisplayOrientation(displayOrientation);它将正确保存图片。

关于Android 前置摄像头图像被颠倒保存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37103571/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com