我在我的应用中实现了CIDetector
以检测图像上的矩形,但现在我如何使用返回的CGPoint
来裁剪图像以便我可以显示回来吗?
对于我尝试应用CIPerspectiveCorrection过滤器的观点,但无法使其发挥作用。
我已经四处寻找并发现了一些线索,但无法在Swift中找到解决方案。
如何使用CIDetector
(检测到的矩形)提供的数据来修复透视并裁剪图像?
对于那些可能不熟悉CIDetectorTypeRectangle
返回内容的人:它会返回4 CGPoint
的bottomLeft,bottomRight,topLeft,topRight。
答案 0 :(得分:8)
这是有效的:
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()