MBMrtdRecognizerResult

Objective-C


@interface MBMrtdRecognizerResult
    : MBTemplatingRecognizerResult <NSCopying, MBFullDocumentImageResult,
                                    MBEncodedFullDocumentImageResult>

Swift

class MBMrtdRecognizerResult : MBTemplatingRecognizerResult, NSCopying, MBFullDocumentImageResult, MBEncodedFullDocumentImageResult

Result of MBMrtdDetectorRecognizer

  • Returns the Data extracted from the machine readable zone.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) MBMrzResult *_Nonnull mrzResult;

    Swift

    var mrzResult: MBMrzResult { get }
  • Raw OCR layout from which the MRTD data was parsed.

    If allowUnparsedResults is used, you can use this property to implement your custom MRTD parsing algorithm

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) MBOcrLayout *rawOcrLayout;

    Swift

    var rawOcrLayout: MBOcrLayout? { get }