Skip to content

Instantly share code, notes, and snippets.

@erica
Created May 14, 2015 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erica/900331e1d36a56814d35 to your computer and use it in GitHub Desktop.
Save erica/900331e1d36a56814d35 to your computer and use it in GitHub Desktop.
public func CreateConvolve(kernel : [Int16]) -> UIImage -> UIImage? {
return {(image : UIImage) -> UIImage? in
let data = DataFromInt16Kernel(kernel)
return Convolve(image, data)}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment