SessionFilterShadows

open class SessionFilterShadows : SessionFilter

Original Image Filtered Image

Applying the filter to an image:

let shadowsFilter = SessionFilterShadows()
shadowsFilter.normalizedIntensity = 75
session.image!.filters = [shadowsFilter]

Applying the filter to a whole video:

let shadowsFilter = SessionFilterShadows()
shadowsFilter.normalizedIntensity = 75
session.video!.filters = [shadowsFilter]

Applying the filter to the first segment of a video:

let shadowsFilter = SessionFilterShadows()
shadowsFilter.normalizedIntensity = 75
session.video!.videoSegments.first!.filters = [shadowsFilter]

For more information about filters visit the super class SessionFilter.