2

使用谷歌视觉CameraSource.takephoto我想拍照来检测人脸,但照片被旋转了。我曾尝试使用我的遗留代码来旋转它

val ei = ExifInterface(imageUri.getPath())
val orientation = ei.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED)

Log.d("BitmapProcessor", "orientation $orientation")

when (orientation) {
    ExifInterface.ORIENTATION_ROTATE_90 -> rotateImage(img, 90f)
    ExifInterface.ORIENTATION_ROTATE_180 -> rotateImage(img, 180f)
    ExifInterface.ORIENTATION_ROTATE_270 -> rotateImage(img, 270f)
    else -> return
}

ExifInterface.getAttribureInt总是返回 0 所以图像保持错误的旋转

4

0 回答 0