CocoaPods trunk is moving to be read-only. Read more on the blog, there are 19 months to go.

LightRoom 0.9.9

LightRoom 0.9.9

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Feb 2016
SPMSupports SPM

Maintained by muukii0803, muukii, muukii.



LightRoom 0.9.9

  • By
  • muukii

LightRoom

Easy Chaining ImageFilter with CoreImage


Installation

Usage

First, create FilterComponents. Then create a FilterChain using them.

Chaining

image1 >>> colorControl --* addition
             blendImage >>> addition --* overlay
            image2 >>> colorControl2 >>> overlay

Multiple Chaining

You can connect FilterChains with each other using >>>

let colorControl = LightRoom.ColorAdjustment.ExposureAdjust(ev: 1)

let chain1 = FilterChain { (image: CIImage?) -> CIImage? in
    image >>> colorControl
    return colorControl.outputImage
}

let colorControl2 = LightRoom.ColorAdjustment.ColorControls(saturation: 0.3, brightness: 0, contrast: 1)
let chain2 = FilterChain { (image: CIImage?) -> CIImage? in
    image >>> colorControl2
    return colorControl2.outputImage
}

image1 >>> chain1 >>> chain2
chain2.outputImage

Performance

FilterComponent has a CIFilter, which is cached and will be created only once.

This structure is advantageous in performance, and is great for real-time filtering camera implementation.