通过相机会话拍摄的图像

问题描述 投票:0回答:2

我正在尝试裁剪具有特定关注区域的相机拍摄的图像。为了找到比例作物矩形,我正在使用previewLayer.metadataOutputRectConverted方法。但是裁剪后我得到了错误的比率。

调试示例:

(lldb) po rectOfInterest.width / rectOfInterest.height
0.7941176470588235

(lldb) po image.size.width / image.size.height
0.75

(lldb) po outputRect.width / outputRect.height
0.9444444444444444

(lldb) po Double(cropped.width) / Double(cropped.height)
0.7080152671755725

Debug

如您所见,我期望裁剪后的图像比例将是~0.79,即我正在裁剪时使用的rectOfInterest

方法:

private func makeImageCroppedToRectOfInterest(from image: UIImage) -> UIImage {
    let previewLayer = cameraController.previewLayer
    let rectOfInterest = layoutLayer.layoutRect

    let outputRect = previewLayer.metadataOutputRectConverted(fromLayerRect: rectOfInterest)

    guard let cgImage = image.cgImage else {
        return image
    }

    let width = CGFloat(cgImage.width)
    let height = CGFloat(cgImage.height)

    let cropRect = CGRect(x: outputRect.origin.x * width,
                          y: outputRect.origin.y * height ,
                          width: outputRect.size.width * width,
                          height: outputRect.size.height * height)

    guard let cropped = cgImage.cropping(to: cropRect) else {
        return image
    }

    return UIImage(cgImage: cropped, scale: image.scale, orientation: image.imageOrientation)
}

目标矩形:enter image description here

ios swift image camera crop
2个回答
1
投票

我不是专家,但是我认为您误解了metadataOutputRectConverted方法的用法。您的代码无法以相同的长宽比返回裁剪后的图像,因为您要相互相乘([我认为是无关的数字彼此相乘。

您可以尝试此方法

previewLayer.layerRectConverted(fromMetadataOutputRect: CGRect(x: 0, y: 0, width: 1, height: 1))

[了解从metadataOututRectConverted进行的实际计算是什么。

我认为您可以更好地解释您想要实现的目标,或者如果您愿意的话,可以提供一个示例项目(或者至少提供一些关于您正在使用的实际图像/矩形的更多上下文)来帮助我们进行调试。在这方面有更多帮助。


0
投票
感谢@Enricoza,我知道如何解决我的问题。这是代码:

private func makeImageCroppedToRectOfInterest(from image: UIImage) -> UIImage { let previewLayer = cameraController.previewLayer let rectOfInterest = layoutLayer.layoutRect let metadataOutputRect = CGRect(x: 0, y: 0, width: 1, height: 1) let outputRect = previewLayer.layerRectConverted(fromMetadataOutputRect: metadataOutputRect) guard let cgImage = image.cgImage else { return image } let width = image.size.width let height = image.size.height let factorX = width / outputRect.width let factorY = height / outputRect.height let factor = max(factorX, factorY) let cropRect = CGRect(x: (rectOfInterest.origin.x - outputRect.origin.x) * factor, y: (rectOfInterest.origin.y - outputRect.origin.y) * factor, width: rectOfInterest.size.width * factor, height: rectOfInterest.size.height * factor) guard let cropped = cgImage.cropping(to: cropRect) else { return image } return UIImage(cgImage: cropped, scale: image.scale, orientation: image.imageOrientation) }

© www.soinside.com 2019 - 2024. All rights reserved.