Swift 中的 CIDetector 透视和裁剪
Posted
技术标签:
【中文标题】Swift 中的 CIDetector 透视和裁剪【英文标题】:CIDetector Perspective And Crop in Swift 【发布时间】:2016-01-21 09:39:56 【问题描述】:我已经在我的应用程序中实现了一个CIDetector
来检测图像上的矩形,但是现在我如何使用返回的CGPoint
来裁剪图像以便将其显示回来?
对于透视图,我尝试应用 CIPerspectiveCorrection 过滤器,但无法正常工作。
我四处搜索并找到了一些线索,但在 Swift 中找不到解决方案。
如何使用CIDetector
(检测到的矩形)提供的数据来修复透视和裁剪图像?
对于可能不熟悉 CIDetectorTypeRectangle
返回的内容的任何人:它返回 4 CGPoint
's bottomLeft,bottomRight,topLeft,topRight。
【问题讨论】:
【参考方案1】:以下是有效的:
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 中的 CIDetector 透视和裁剪的主要内容,如果未能解决你的问题,请参考以下文章