MBPPdf417Recognizer

Deprecated

Use MBPBarcodeRecognizer.

Objective-C


@interface MBPPdf417Recognizer : MBPRecognizer <NSCopying>

Swift

class MBPPdf417Recognizer : MBPRecognizer, NSCopying

A recognizer that can scan PDF417 2D barcodes.

  • Deprecated

    Use MBPBarcodeRecognizer.

    PDF417 recognizer results

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) MBPPdf417RecognizerResult *_Nonnull result;

    Swift

    var result: MBPPdf417RecognizerResult { get }
  • Deprecated

    Use MBPBarcodeRecognizer.

    Set this to YES to scan even barcode not compliant with standards For example, malformed PDF417 barcodes which were incorrectly encoded

    Use only if necessary because it slows down the recognition process

    Default: YES

    Declaration

    Objective-C

    @property (nonatomic) BOOL scanUncertain;

    Swift

    var scanUncertain: Bool { get set }
  • Deprecated

    Use MBPBarcodeRecognizer.

    Set this to YES to scan barcodes which don’t have quiet zone (white area) around it

    Use only if necessary because it slows down the recognition process

    Default: NO

    Declaration

    Objective-C

    @property (nonatomic) BOOL nullQuietZoneAllowed;

    Swift

    var nullQuietZoneAllowed: Bool { get set }
  • Deprecated

    Use MBPBarcodeRecognizer.

    Set this to YES to allow scanning barcodes with inverted intensities (i.e. white barcodes on black background)

    NOTE: this options doubles the frame processing time

    Default: NO

    Declaration

    Objective-C

    @property (nonatomic) BOOL scanInverse;

    Swift

    var scanInverse: Bool { get set }