import Foundation
import VisionCamera

protocol IImagePreprocessor {
  func preprocessFrame(frame: Frame, options: ImagePreprocessingOptions)
    -> ProcessedImage?

  func preprocessImage(imageFile: URL, options: ImagePreprocessingOptions)
    -> ProcessedImage?
}
