我正在使用CIPerspectiveCorrection Filter而我的问题是我的返回图像结果是镜像的,颠倒了,用于透视校正的点似乎是引用了错误的轴或轴方向。
为了解决问题,我一直在使用1024 x 1024的测试图像,并且我正在通过一个完美的矩形区域。我还是以垂直和水平方向翻转图像结束。
这是我的函数,它返回一个裁剪的CIImage实例给定一个图像和一组点:
private func _getCroppedImageWithImage(image:CIImage, topLeft:CGPoint, topRight:CGPoint, botLeft:CGPoint, botRight:CGPoint) -> CIImage {
var rectCoords = NSMutableDictionary(capacity: 4)
rectCoords["inputTopLeft"] = CIVector(CGPoint:topLeft)
rectCoords["inputTopRight"] = CIVector(CGPoint:topRight)
rectCoords["inputBottomLeft"] = CIVector(CGPoint:botLeft)
rectCoords["inputBottomRight"] = CIVector(CGPoint:botRight)
return image.imageByApplyingFilter("CIPerspectiveCorrection", withInputParameters: rectCoords)
}
这就是我调用此功能的地方:
func testCrop() {
let ciInputImage = CIImage(image:UIImage(named:"test-pattern.jpg")!)
println("source image is \(ciInputImage)") //<CIImage: 0x170212290 extent [0 0 1024 1024]>
let ptBotLeft = CGPointMake(32.0,992.0)
let ptBotRight = CGPointMake(992.0,992.0)
let ptTopRight = CGPointMake(992.0,32.0)
let ptTopLeft = CGPointMake(32.0,32.0)
let croppedImage = _getCroppedImageWithImage(ciInputImage, topLeft: ptTopLeft, topRight: ptTopRight, botLeft: ptBotLeft, botRight: ptBotRight)
println("cropped image \(croppedImage)") //<CIImage: 0x174204a60 extent [0 0 960 960]>
let croppedImageCG = CIContext(options: nil).createCGImage(croppedImage, fromRect: croppedImage.extent())
let imageVC = ImageViewController(image: UIImage(CGImage: croppedImageCG))
presentViewController(imageVC, animated: true, completion: nil)
}
之前有没有人遇到这样的问题?
这是源图像
这是在UIImageView中显示的最终图像,其中contentMode设置为scaleAspectFit
答案 0 :(得分:12)
好的,我的问题,我很确定,是CoreImage使用笛卡尔坐标系。 Y到了。 (零,零)位于左下角。