connectInput

fun <P : ImageProcessor> P.connectInput(    context: Context,     file: File,     rotationDegrees: Int = Int.MIN_VALUE,     facingFront: Boolean = true,     horizontalFieldOfView: Float = DEFAULT_FIELD_OF_VIEW.width,     verticalFieldOfView: Float = DEFAULT_FIELD_OF_VIEW.height,     options: Set<ImageProcessor.Input.Option> = emptySet()): Closeable

Connects the provided file and associated optional parameters as a video based ImageProcessor.Input. Invoking Closeable.close on the returned Closeable stops the video playback and releases any resources associated with it.

Note: this is intended to be used only for testing purposes, full set of image processing features is supported only when using live camera input Source.