Si quieres hacer pruebas por ti mismo y aprender en el camino, te sugiero que sigas este artículo que encontré en Medium. This approach is using native Swift code to extract camera frame, then you can process that frame with your own code.
- import UIKit
- import AVFoundation
- protocol FrameExtractorDelegate: class {
- func captured(image: UIImage)
- }
- clase FrameExtractor: NSObject, AVCaptureVideoDataOutputSampleBufferDelegate {