gpt4 book ai didi

swift - Swift 中的 CIDetector 透视和裁剪

转载 作者:搜寻专家 更新时间:2023-10-30 22:34:26 27 4
gpt4 key购买 nike

我在我的应用程序中实现了一个 CIDetector 来检测图像上的矩形,但现在我如何使用返回的 CGPoint 来裁剪图像,以便我可以把它显示回来吗?

对于透视,我已经尝试应用 CIPerspectiveCorrection 过滤器,但无法让它工作。

我四处搜索并找到了一些线索,但无法在 Swift 中找到解决方案。

我如何使用 CIDetector 提供的数据(检测到的矩形)来修复透视和裁剪图像?

对于可能不熟悉 CIDetectorTypeRectangle 返回内容的任何人:它返回 4 CGPoint 的 bottomLeft、bottomRight、topLeft、topRight。

最佳答案

这是有效的:

func flattenImage(image: CIImage, topLeft: CGPoint, topRight: CGPoint,bottomLeft: CGPoint, bottomRight: CGPoint) -> CIImage {

return image.applyingFilter("CIPerspectiveCorrection", withInputParameters: [

"inputTopLeft": CIVector(cgPoint: topLeft),
"inputTopRight": CIVector(cgPoint: topRight),
"inputBottomLeft": CIVector(cgPoint: bottomLeft),
"inputBottomRight": CIVector(cgPoint: bottomRight)


])

}

无论你在哪里检测到你的矩形:

UIGraphicsBeginImageContext(CGSize(width: flattenedImage!.extent.size.height, height: flattenedImage!.extent.size.width))

UIImage(ciImage:resultImage!,scale:1.0,orientation:.right).draw(in: CGRect(x: 0, y: 0, width: resultImage!.extent.size.height, height: resultImage!.extent.size.width))

let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()

关于swift - Swift 中的 CIDetector 透视和裁剪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34920045/

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