SessionFilterGamma
open class SessionFilterGamma : SessionFilter
Applying the filter to an image:
let gammaFilter = SessionFilterGamma()
gammaFilter.normalizedIntensity = 0.6
session.image!.filters = [gammaFilter]
Applying the filter to a whole video:
let gammaFilter = SessionFilterGamma()
gammaFilter.normalizedIntensity = 0.6
session.video!.filters = [gammaFilter]
Applying the filter to the first segment of a video:
let gammaFilter = SessionFilterGamma()
gammaFilter.normalizedIntensity = 0.6
session.video!.videoSegments.first!.filters = [gammaFilter]
For more information about filters visit the super class SessionFilter
.
-
See super
normalizedIntensity
for more information.Default:
normalizedIntensityDefault
Declaration
Swift
public override var normalizedIntensity: Double { get set }
-
See super
normalizedIntensityDefault
for more information.Default:
0
Declaration
Swift
public override var normalizedIntensityDefault: Double { get }
-
See super
normalizedIntensityRange
for more information.Default:
(-1, 1)
Declaration
Swift
public override var normalizedIntensityRange: (Double, Double) { get set }
-
See super
actualIntensity
for more information.Default:
actualIntensityDefault
Declaration
Swift
public override var actualIntensity: Double { get }
-
See super
actualIntensityDefault
for more information.Default:
1
Declaration
Swift
public override var actualIntensityDefault: Double { get set }
-
See super
actualIntensityRange
for more information.Default:
(0.5, 2)
Declaration
Swift
public override var actualIntensityRange: (Double, Double) { get set }