DMSCaptureReader


@interface DMSCaptureReader : NSObject

Capture readers are a family of classes meant to be used directly with AVFoundation capture trees. DMSCaptureReader cannot be instantiated directly. Instead use one of the subclasses.

  • A capture output that can be added to an AVFoundation capture tree. Details about this capture output will depend on the subclass used.

    Declaration

    Objective-C

    @property (readonly, nonnull) AVCaptureOutput *captureOutput;

    Swift

    var captureOutput: AVCaptureOutput { get }
  • Enables or disables a capture reader. A disabled capture reader will stop processing frames and no longer output results. Defaults to yes.

    Declaration

    Objective-C

    @property BOOL enabled;

    Swift

    var enabled: Bool { get set }