diff --git a/CHANGELOG.md b/CHANGELOG.md index 58d613ee..cbaa1edb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,20 @@ # Release notes +## 5.1.1 + +- Bugfixes: + - fixed memory leaks that could cause crashes in some cases + +- Minor API changes: + - `MBBlinkIdRecognizer` and `MBBlinkIdCombinedRecognizer` + - methods `setDewarpedImageDelegate` and `setClassifierDelegate` are now properties `dewarpedImageDelegate` and `classifierDelegate` + ## 5.1.0 - Updates and additions: - - added 38 new documents for `MBBlinkIdRecognizer` and `MBBlinkIdCombinedRecognizer`. Please check out complete list of supported documents [here](https://github.com/BlinkID/blinkid-ios/blob/master/documentation/BlinkIDRecognizer.md) + - added 38 new documents for `MBBlinkIdRecognizer` and `MBBlinkIdCombinedRecognizer` + - Algeria ID, Argentina DL, Australia Victoria DL, Australia Queensland DL, Australia Western Australia DL, Belgium Resident ID, Canada British Columbia DL, Canada Ontario DL, Canada Quebec DL, Cyprus ID, Czechia DL, Czechia ID, Egypt ID, Greece DL, India ID, India Pan Card, Israel DL, Malaysia MyKid, Malaysia MyTentera, Maldives ID, Morocco ID, Nigeria DL, Paraguay ID, Portugal DL, Puerto Rico DL, Qatar DL, Russia DL, Singapore Fin Card, Singapore Resident ID, Slovakia DL, Slovenia DL, South Africa DL, South Africa ID, Thailand ID, Tunisia ID, UAE DL, Uganda ID, Vietnam ID + - details on each new document and the complete list of the supported documents is [here](https://github.com/BlinkID/blinkid-ios/blob/master/documentation/BlinkIDRecognizer.md) - Improvements in ID scanning performance: - **reduced overall size impact on application for approximately 50%** when BlinkID SDK v5.1 is used, relative to size impact of the previous version (v5.0) @@ -11,7 +22,7 @@ - `sanitizedDocumentCode` - `sanitizedDocumentNumber` - improved `MBBlinkIdRecognizer` and `MBBlinkIdCombinedRecognizer`: - - introduced blur filter that discards blurred frames and prevents reading data from them, this option is enabled by default, it can be turned off by setting `allowBlurFilter` to `NO/false` + - introduced blur filter that discards blurred frames and prevents reading data from them, this option is enabled by default, it can be disabled by setting `allowBlurFilter` to `NO/false` - Bugfixes: - fixed bug when scanning would not resume after doment sides would not match on `MBBlinkIdOverlayViewController` diff --git a/Microblink.bundle/BlinkID_BlurClassifier_general_6.0.0.strop b/Microblink.bundle/BlinkID_BlurClassifier_general_6.0.0.strop index 287fea28..d9b87614 100644 Binary files a/Microblink.bundle/BlinkID_BlurClassifier_general_6.0.0.strop and b/Microblink.bundle/BlinkID_BlurClassifier_general_6.0.0.strop differ diff --git a/Microblink.bundle/BlinkID_Classifier_general_6.6.0.strop b/Microblink.bundle/BlinkID_Classifier_general_6.6.0.strop index 633be127..55c3b1ea 100644 Binary files a/Microblink.bundle/BlinkID_Classifier_general_6.6.0.strop and b/Microblink.bundle/BlinkID_Classifier_general_6.6.0.strop differ diff --git a/Microblink.bundle/BlinkID_Detector_general_6.3.1.strop b/Microblink.bundle/BlinkID_Detector_general_6.3.1.strop index 2ecf064a..e418b656 100644 Binary files a/Microblink.bundle/BlinkID_Detector_general_6.3.1.strop and b/Microblink.bundle/BlinkID_Detector_general_6.3.1.strop differ diff --git a/Microblink.bundle/BlinkID_Ocr_general_6.4.1.strop b/Microblink.bundle/BlinkID_Ocr_general_6.4.1.strop index 3628cd98..fcbe74ad 100644 Binary files a/Microblink.bundle/BlinkID_Ocr_general_6.4.1.strop and b/Microblink.bundle/BlinkID_Ocr_general_6.4.1.strop differ diff --git a/Microblink.bundle/BlinkID_Ocr_mrz_6.2.0.strop b/Microblink.bundle/BlinkID_Ocr_mrz_6.2.0.strop index 6c052ea8..cba26518 100644 Binary files a/Microblink.bundle/BlinkID_Ocr_mrz_6.2.0.strop and b/Microblink.bundle/BlinkID_Ocr_mrz_6.2.0.strop differ diff --git a/Microblink.bundle/BlinkID_RotationClassifier_general_6.0.0.strop b/Microblink.bundle/BlinkID_RotationClassifier_general_6.0.0.strop index 17d8b66e..c90316a4 100644 Binary files a/Microblink.bundle/BlinkID_RotationClassifier_general_6.0.0.strop and b/Microblink.bundle/BlinkID_RotationClassifier_general_6.0.0.strop differ diff --git a/Microblink.bundle/BlinkID_Segmentator_general_6.4.0.strop b/Microblink.bundle/BlinkID_Segmentator_general_6.4.0.strop index 97595100..9a0728ab 100644 Binary files a/Microblink.bundle/BlinkID_Segmentator_general_6.4.0.strop and b/Microblink.bundle/BlinkID_Segmentator_general_6.4.0.strop differ diff --git a/Microblink.bundle/Info.plist b/Microblink.bundle/Info.plist index 15ab4087..0318a098 100644 Binary files a/Microblink.bundle/Info.plist and b/Microblink.bundle/Info.plist differ diff --git a/Microblink.framework/Headers/MBBlinkIdCombinedRecognizer.h b/Microblink.framework/Headers/MBBlinkIdCombinedRecognizer.h index 2a317479..e45d3e62 100644 --- a/Microblink.framework/Headers/MBBlinkIdCombinedRecognizer.h +++ b/Microblink.framework/Headers/MBBlinkIdCombinedRecognizer.h @@ -36,14 +36,14 @@ MB_INIT @property (nonatomic, strong, readonly) MBBlinkIdCombinedRecognizerResult *result; /** - * Called with dewarped full document image - */ -- (void)setDewarpedImageDelegate:(nullable id)delegate; +* Full document dewarped imagedelegate +*/ +@property (nonatomic, nullable, weak) id dewarpedImageDelegate; /** - * Called when document is not supported - */ -- (void)setClassifierDelegate:(nullable id)delegate; +* Document not supported classifier delegate +*/ +@property (nonatomic, nullable, weak) id classifierDelegate; /** * Defines whether blured frames filtering is allowed diff --git a/Microblink.framework/Headers/MBBlinkIdRecognizer.h b/Microblink.framework/Headers/MBBlinkIdRecognizer.h index 8efe61ab..1a0f1f09 100644 --- a/Microblink.framework/Headers/MBBlinkIdRecognizer.h +++ b/Microblink.framework/Headers/MBBlinkIdRecognizer.h @@ -34,14 +34,14 @@ MB_INIT @property (nonatomic, strong, readonly) MBBlinkIdRecognizerResult *result; /** - * Called with dewarped full document image - */ -- (void)setDewarpedImageDelegate:(nullable id)delegate; +* Full document dewarped imagedelegate +*/ +@property (nonatomic, nullable, weak) id dewarpedImageDelegate; /** - * Called when document is not supported - */ -- (void)setClassifierDelegate:(nullable id)delegate; +* Document not supported classifier delegate +*/ +@property (nonatomic, nullable, weak) id classifierDelegate; /** * Defines whether blured frames filtering is allowed diff --git a/Microblink.framework/Headers/MBMrtdRecognizer.h b/Microblink.framework/Headers/MBMrtdRecognizer.h index 32861c88..8329f4de 100644 --- a/Microblink.framework/Headers/MBMrtdRecognizer.h +++ b/Microblink.framework/Headers/MBMrtdRecognizer.h @@ -77,10 +77,10 @@ MB_INIT @property (nonatomic, nullable, strong, readonly) NSArray<__kindof MBMrtdSpecification *> *mrtdSpecifications; /** - * Filter for MRTDs (Machine Readable Travel Documents) that is used to determine which documents - * will be processed. If document is filtered out by this filter, its data cannot be returned as recognition result. - */ -- (void)setMrzFilter:(nullable id)mrzFilter; +* Filter for MRTDs (Machine Readable Travel Documents) that is used to determine which documents +* will be processed. If document is filtered out by this filter, its data cannot be returned as recognition result. +*/ +@property (nonatomic, nullable, weak) id mrzFilterDelegate; @end diff --git a/Microblink.framework/Info.plist b/Microblink.framework/Info.plist index 9f4f415a..2b801640 100644 Binary files a/Microblink.framework/Info.plist and b/Microblink.framework/Info.plist differ diff --git a/Microblink.framework/Microblink b/Microblink.framework/Microblink index 7ea1a565..31b09f50 100755 --- a/Microblink.framework/Microblink +++ b/Microblink.framework/Microblink @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:474474a33248afc44c8ab2551852f58088ec7c01b9675d441a450065766b5e98 -size 71140000 +oid sha256:ec7bcbab9b090fae8798c690248e9c82095f7911fa4ade6080698921053a08b0 +size 78872784 diff --git a/Microblink.framework/_CodeSignature/CodeResources b/Microblink.framework/_CodeSignature/CodeResources index 0670892e..851cbfe8 100644 --- a/Microblink.framework/_CodeSignature/CodeResources +++ b/Microblink.framework/_CodeSignature/CodeResources @@ -26,7 +26,7 @@ Headers/MBBlinkIdCombinedRecognizer.h - B86XWMAnSlk3tm44Q6ZLQ1Fei+s= + XAts11eIuz+mrcM3eqgrSK1jA2E= Headers/MBBlinkIdCombinedRecognizerResult.h @@ -46,7 +46,7 @@ Headers/MBBlinkIdRecognizer.h - QhR0enDESM5l7c9oeYGgGvNg7Mg= + P/TtGtuuBxHVOhzIQocTH4iESug= Headers/MBBlinkIdRecognizerResult.h @@ -354,7 +354,7 @@ Headers/MBMrtdRecognizer.h - UGAziX6rNXp98vf3KkQW9J40J0Y= + V7ilwFYwjV+Eid7xQASSOrYYoh0= Headers/MBMrtdRecognizerResult.h @@ -590,7 +590,7 @@ Info.plist - KWitnZyXizDqKc0sEf7xcKy8PEs= + p6jaJjlT+5n47tGHwYbjKdt5z7Y= Modules/module.modulemap @@ -658,11 +658,11 @@ hash - B86XWMAnSlk3tm44Q6ZLQ1Fei+s= + XAts11eIuz+mrcM3eqgrSK1jA2E= hash2 - wX1C9+GfNTL0e0oWrJN1A+bcpNkw5t8epe9rupH/Nxg= + LSCwMFkKPcH//GO+Kkl0WwBeESuTjluPeeh/Tj0EKH0= Headers/MBBlinkIdCombinedRecognizerResult.h @@ -713,11 +713,11 @@ hash - QhR0enDESM5l7c9oeYGgGvNg7Mg= + P/TtGtuuBxHVOhzIQocTH4iESug= hash2 - JH85AwzUPuV2L8ULDS67DqZnv72bfQj6O/xrBy7GvU8= + Ne+MYgmx4XbFz7ZE0tK0TggQi8hFrnfrNOWWe5wF3rI= Headers/MBBlinkIdRecognizerResult.h @@ -1560,11 +1560,11 @@ hash - UGAziX6rNXp98vf3KkQW9J40J0Y= + V7ilwFYwjV+Eid7xQASSOrYYoh0= hash2 - 2Qv94t75GZiW9Kl0h0Wug0Xb1xgrGEkPbhiS1pm5miY= + QhY+zfOV/PGaoZSuPlYuqmhmPXc0V37hs9wPL3715VI= Headers/MBMrtdRecognizerResult.h diff --git a/PPBlinkID.podspec b/PPBlinkID.podspec index 2c2459f5..6bdeb03c 100644 --- a/PPBlinkID.podspec +++ b/PPBlinkID.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "PPBlinkID" - s.version = "5.1.0" + s.version = "5.1.1" s.summary = "A delightful component for barcode scanning" s.homepage = "http://microblink.com" @@ -31,7 +31,7 @@ Pod::Spec.new do |s| } s.source = { - :http => 'https://github.com/BlinkID/blinkid-ios/releases/download/v5.1.0/blinkid-ios_v5.1.0.tar.gz' + :http => 'https://github.com/BlinkID/blinkid-ios/releases/download/v5.1.1/blinkid-ios_v5.1.1.tar.gz' } s.platform = :ios diff --git a/README.md b/README.md index 68a27ab8..b87816b9 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ pod init ```ruby platform :ios, '8.0' target 'Your-App-Name' do - pod 'PPBlinkID', '~> 5.1.0' + pod 'PPBlinkID', '~> 5.1.1' end ``` @@ -160,13 +160,13 @@ In files in which you want to use scanning functionality place import directive. Swift ```swift -import Microblink +import MicroBlink ``` Objective-C ```objective-c -#import +#import ``` ### 3. Initiating the scanning process @@ -628,7 +628,7 @@ The [`MBDocumentFaceRecognizer`](http://blinkid.github.io/blinkid-ios/Classes/MB You can find information about usage context at the beginning of [this section](#blinkid_recognizers). ### BlinkID Recognizer -The [`MBBlinkIdRecognizer`](http://blinkid.github.io/blinkid-ios/Classes/MBBlinkIdRecognizer.html) scans and extracts data from the front side of supported document. +The [`MBBlinkIdRecognizer`](http://blinkid.github.io/blinkid-ios/Classes/MBBlinkIdRecognizer.html) scans and extracts data from the front side of the supported document. You can find the list of the currently supported documents [`here`](https://github.com/BlinkID/blinkid-ios/tree/master/documentation/BlinkIDRecognizer.md). We will continue expanding this recognizer by adding support for new document types in the future. Star this repo to stay updated. @@ -657,18 +657,18 @@ When you have determine what is the licence-relate problem or you simply do not * exact Bundle ID of your app (from your `info.plist` file) * licence that is causing problems -* please stress out that you are reporting problem related to iOS version of BlinkID SDK +* please stress out that you are reporting problem related to iOS version of PDF417.mobi SDK * if unsure about the problem, you should also provide excerpt from console containing licence error ### Other problems -If you are having problems with scanning certain items, undesired behaviour on specific device(s), crashes inside BlinkID SDK or anything unmentioned, please do as follows: +If you are having problems with scanning certain items, undesired behaviour on specific device(s), crashes inside PDF417.mobi SDK or anything unmentioned, please do as follows: * Contact us at [help.microblink.com](http://help.microblink.com) describing your problem and provide following information: * log file obtained in previous step * high resolution scan/photo of the item that you are trying to scan * information about device that you are using - * please stress out that you are reporting problem related to iOS version of BlinkID SDK + * please stress out that you are reporting problem related to iOS version of PDF417.mobi SDK ## Frequently asked questions and known problems Here is a list of frequently asked questions and solutions for them and also a list of known problems in the SDK and how to work around them. diff --git a/Release notes.md b/Release notes.md index 0fa07a43..cbaa1edb 100644 --- a/Release notes.md +++ b/Release notes.md @@ -1,5 +1,14 @@ # Release notes +## 5.1.1 + +- Bugfixes: + - fixed memory leaks that could cause crashes in some cases + +- Minor API changes: + - `MBBlinkIdRecognizer` and `MBBlinkIdCombinedRecognizer` + - methods `setDewarpedImageDelegate` and `setClassifierDelegate` are now properties `dewarpedImageDelegate` and `classifierDelegate` + ## 5.1.0 - Updates and additions: @@ -8,7 +17,7 @@ - details on each new document and the complete list of the supported documents is [here](https://github.com/BlinkID/blinkid-ios/blob/master/documentation/BlinkIDRecognizer.md) - Improvements in ID scanning performance: - - **reduced overall size impact on application for approximately 40%** when BlinkID SDK v5.1 is used, relative to size impact of the previous version (v5.0) + - **reduced overall size impact on application for approximately 50%** when BlinkID SDK v5.1 is used, relative to size impact of the previous version (v5.0) - new fields in `MBMrzResult`: - `sanitizedDocumentCode` - `sanitizedDocumentNumber` diff --git a/Samples/BlinkID-sample-Swift/BlinkID-sample-Swift/License/blinkid-license.txt b/Samples/BlinkID-sample-Swift/BlinkID-sample-Swift/License/blinkid-license.txt index d2c5b765..bdadb932 100644 Binary files a/Samples/BlinkID-sample-Swift/BlinkID-sample-Swift/License/blinkid-license.txt and b/Samples/BlinkID-sample-Swift/BlinkID-sample-Swift/License/blinkid-license.txt differ diff --git a/Transition guide.md b/Transition guide.md index 926283cf..47d8a6c7 100644 --- a/Transition guide.md +++ b/Transition guide.md @@ -1,3 +1,9 @@ +## 5.1.1 + +- Minor API changes: + - `MBBlinkIdRecognizer` and `MBBlinkIdCombinedRecognizer` + - methods `setDewarpedImageDelegate` and `setClassifierDelegate` are now properties `dewarpedImageDelegate` and `classifierDelegate` + ## 5.1.0 - No changes diff --git a/buildCommit.txt b/buildCommit.txt index 5b74f67e..56c0dfd8 100644 --- a/buildCommit.txt +++ b/buildCommit.txt @@ -1 +1 @@ -Built from core repository commit d2e139ebdbaab4c1aa3c181edf3dcf4d0abd04ec +Built from core repository commit 4caa8d48c1aa2d282a210bb8f8ca50acc63c0dcc diff --git a/docs/Classes.html b/docs/Classes.html index 996c8e03..5d26d95f 100644 --- a/docs/Classes.html +++ b/docs/Classes.html @@ -4252,7 +4252,7 @@

Declaration

diff --git a/docs/Classes/MBBaseOcrOverlaySettings.html b/docs/Classes/MBBaseOcrOverlaySettings.html index abc2507b..99ad0485 100644 --- a/docs/Classes/MBBaseOcrOverlaySettings.html +++ b/docs/Classes/MBBaseOcrOverlaySettings.html @@ -756,7 +756,7 @@

Declaration

diff --git a/docs/Classes/MBBaseOverlaySettings.html b/docs/Classes/MBBaseOverlaySettings.html index aef0b5e2..666f548a 100644 --- a/docs/Classes/MBBaseOverlaySettings.html +++ b/docs/Classes/MBBaseOverlaySettings.html @@ -922,7 +922,7 @@

Declaration

diff --git a/docs/Classes/MBBaseOverlayViewController.html b/docs/Classes/MBBaseOverlayViewController.html index 42f91e1b..7ae42895 100644 --- a/docs/Classes/MBBaseOverlayViewController.html +++ b/docs/Classes/MBBaseOverlayViewController.html @@ -755,7 +755,7 @@

Declaration

diff --git a/docs/Classes/MBBlinkIdCombinedRecognizer.html b/docs/Classes/MBBlinkIdCombinedRecognizer.html index be45997b..e72d6c7a 100644 --- a/docs/Classes/MBBlinkIdCombinedRecognizer.html +++ b/docs/Classes/MBBlinkIdCombinedRecognizer.html @@ -786,9 +786,9 @@

Declaration

  • @@ -796,20 +796,21 @@

    Declaration

    -

    Called with dewarped full document image

    +

    Full document dewarped imagedelegate

    Declaration

    Objective-C

    -
    - (void)setDewarpedImageDelegate:
    -    (nullable id<MBBlinkIdCombinedRecognizerDelegate>)delegate;
    +
    @property (readwrite, nonatomic, nullable)
    +    id<MBBlinkIdCombinedRecognizerDelegate>
    +        dewarpedImageDelegate;

    Swift

    -
    func setDewarpedImageDelegate(_ delegate: MBBlinkIdCombinedRecognizerDelegate?)
    +
    weak var dewarpedImageDelegate: MBBlinkIdCombinedRecognizerDelegate? { get set }
    @@ -819,9 +820,9 @@

    Declaration

  • @@ -829,20 +830,21 @@

    Declaration

    -

    Called when document is not supported

    +

    Document not supported classifier delegate

    Declaration

    Objective-C

    -
    - (void)setClassifierDelegate:
    -    (nullable id<MBBlinkIdCombinedRecognizerDelegate>)delegate;
    +
    @property (readwrite, nonatomic, nullable)
    +    id<MBBlinkIdCombinedRecognizerDelegate>
    +        classifierDelegate;

    Swift

    -
    func setClassifierDelegate(_ delegate: MBBlinkIdCombinedRecognizerDelegate?)
    +
    weak var classifierDelegate: MBBlinkIdCombinedRecognizerDelegate? { get set }
    @@ -891,7 +893,7 @@

    Declaration

    diff --git a/docs/Classes/MBBlinkIdCombinedRecognizerResult.html b/docs/Classes/MBBlinkIdCombinedRecognizerResult.html index 8b584967..a28f0174 100644 --- a/docs/Classes/MBBlinkIdCombinedRecognizerResult.html +++ b/docs/Classes/MBBlinkIdCombinedRecognizerResult.html @@ -1554,7 +1554,7 @@

    Declaration

  • diff --git a/docs/Classes/MBBlinkIdOverlaySettings.html b/docs/Classes/MBBlinkIdOverlaySettings.html index 7f4d4040..318c56ce 100644 --- a/docs/Classes/MBBlinkIdOverlaySettings.html +++ b/docs/Classes/MBBlinkIdOverlaySettings.html @@ -860,7 +860,7 @@

    Return Value

    diff --git a/docs/Classes/MBBlinkIdOverlayViewController.html b/docs/Classes/MBBlinkIdOverlayViewController.html index 316929c9..3af16e84 100644 --- a/docs/Classes/MBBlinkIdOverlayViewController.html +++ b/docs/Classes/MBBlinkIdOverlayViewController.html @@ -848,7 +848,7 @@

    Return Value

    diff --git a/docs/Classes/MBBlinkIdRecognizer.html b/docs/Classes/MBBlinkIdRecognizer.html index 31768e8e..ce9f9261 100644 --- a/docs/Classes/MBBlinkIdRecognizer.html +++ b/docs/Classes/MBBlinkIdRecognizer.html @@ -785,9 +785,9 @@

    Declaration

  • @@ -795,20 +795,20 @@

    Declaration

    -

    Called with dewarped full document image

    +

    Full document dewarped imagedelegate

    Declaration

    Objective-C

    -
    - (void)setDewarpedImageDelegate:
    -    (nullable id<MBBlinkIdRecognizerDelegate>)delegate;
    +
    @property (readwrite, nonatomic, nullable) id<MBBlinkIdRecognizerDelegate>
    +    dewarpedImageDelegate;

    Swift

    -
    func setDewarpedImageDelegate(_ delegate: MBBlinkIdRecognizerDelegate?)
    +
    weak var dewarpedImageDelegate: MBBlinkIdRecognizerDelegate? { get set }
    @@ -818,9 +818,9 @@

    Declaration

  • @@ -828,20 +828,20 @@

    Declaration

    -

    Called when document is not supported

    +

    Document not supported classifier delegate

    Declaration

    Objective-C

    -
    - (void)setClassifierDelegate:
    -    (nullable id<MBBlinkIdRecognizerDelegate>)delegate;
    +
    @property (readwrite, nonatomic, nullable) id<MBBlinkIdRecognizerDelegate>
    +    classifierDelegate;

    Swift

    -
    func setClassifierDelegate(_ delegate: MBBlinkIdRecognizerDelegate?)
    +
    weak var classifierDelegate: MBBlinkIdRecognizerDelegate? { get set }
    @@ -890,7 +890,7 @@

    Declaration

    diff --git a/docs/Classes/MBBlinkIdRecognizerResult.html b/docs/Classes/MBBlinkIdRecognizerResult.html index f0b7116b..c34ab010 100644 --- a/docs/Classes/MBBlinkIdRecognizerResult.html +++ b/docs/Classes/MBBlinkIdRecognizerResult.html @@ -1553,7 +1553,7 @@

    Declaration

  • diff --git a/docs/Classes/MBCameraReticle.html b/docs/Classes/MBCameraReticle.html index 0a123a1b..a8ef6087 100644 --- a/docs/Classes/MBCameraReticle.html +++ b/docs/Classes/MBCameraReticle.html @@ -1043,7 +1043,7 @@

    Declaration

    diff --git a/docs/Classes/MBCameraSettings.html b/docs/Classes/MBCameraSettings.html index 29ad2326..49c6da4b 100644 --- a/docs/Classes/MBCameraSettings.html +++ b/docs/Classes/MBCameraSettings.html @@ -1109,7 +1109,7 @@

    Return Value

    diff --git a/docs/Classes/MBCharWithVariants.html b/docs/Classes/MBCharWithVariants.html index 652feb19..7a0a6ceb 100644 --- a/docs/Classes/MBCharWithVariants.html +++ b/docs/Classes/MBCharWithVariants.html @@ -904,7 +904,7 @@

    Return Value

    diff --git a/docs/Classes/MBCustomOverlayViewController.html b/docs/Classes/MBCustomOverlayViewController.html index da3c2496..c5a3cad9 100644 --- a/docs/Classes/MBCustomOverlayViewController.html +++ b/docs/Classes/MBCustomOverlayViewController.html @@ -1128,7 +1128,7 @@

    Declaration

    diff --git a/docs/Classes/MBDPIBasedDewarpPolicy.html b/docs/Classes/MBDPIBasedDewarpPolicy.html index bc99478d..f4d78b34 100644 --- a/docs/Classes/MBDPIBasedDewarpPolicy.html +++ b/docs/Classes/MBDPIBasedDewarpPolicy.html @@ -843,7 +843,7 @@

    Declaration

    diff --git a/docs/Classes/MBDateResult.html b/docs/Classes/MBDateResult.html index 3d002cc2..32dc0cad 100644 --- a/docs/Classes/MBDateResult.html +++ b/docs/Classes/MBDateResult.html @@ -1096,7 +1096,7 @@

    Return Value

    diff --git a/docs/Classes/MBDewarpPolicy.html b/docs/Classes/MBDewarpPolicy.html index 89e17596..8e47fdb2 100644 --- a/docs/Classes/MBDewarpPolicy.html +++ b/docs/Classes/MBDewarpPolicy.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/Classes/MBDisplayableDetection.html b/docs/Classes/MBDisplayableDetection.html index 7f106d7e..2309bb6e 100644 --- a/docs/Classes/MBDisplayableDetection.html +++ b/docs/Classes/MBDisplayableDetection.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/Classes/MBDisplayableObject.html b/docs/Classes/MBDisplayableObject.html index 33c52155..b1ae7ce0 100644 --- a/docs/Classes/MBDisplayableObject.html +++ b/docs/Classes/MBDisplayableObject.html @@ -755,7 +755,7 @@

    Declaration

    diff --git a/docs/Classes/MBDisplayablePointsDetection.html b/docs/Classes/MBDisplayablePointsDetection.html index b5850347..039ace23 100644 --- a/docs/Classes/MBDisplayablePointsDetection.html +++ b/docs/Classes/MBDisplayablePointsDetection.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/Classes/MBDisplayableQuadDetection.html b/docs/Classes/MBDisplayableQuadDetection.html index 37e94551..f2ea851b 100644 --- a/docs/Classes/MBDisplayableQuadDetection.html +++ b/docs/Classes/MBDisplayableQuadDetection.html @@ -756,7 +756,7 @@

    Declaration

    diff --git a/docs/Classes/MBDocumentFaceRecognizer.html b/docs/Classes/MBDocumentFaceRecognizer.html index fafc8e72..41551969 100644 --- a/docs/Classes/MBDocumentFaceRecognizer.html +++ b/docs/Classes/MBDocumentFaceRecognizer.html @@ -863,7 +863,7 @@

    Declaration

    diff --git a/docs/Classes/MBDocumentFaceRecognizerResult.html b/docs/Classes/MBDocumentFaceRecognizerResult.html index 70a45620..02df5963 100644 --- a/docs/Classes/MBDocumentFaceRecognizerResult.html +++ b/docs/Classes/MBDocumentFaceRecognizerResult.html @@ -815,7 +815,7 @@

    Declaration

    diff --git a/docs/Classes/MBDocumentOverlaySettings.html b/docs/Classes/MBDocumentOverlaySettings.html index 33f7dde4..b62fa416 100644 --- a/docs/Classes/MBDocumentOverlaySettings.html +++ b/docs/Classes/MBDocumentOverlaySettings.html @@ -859,7 +859,7 @@

    Declaration

    diff --git a/docs/Classes/MBDocumentOverlayViewController.html b/docs/Classes/MBDocumentOverlayViewController.html index 4f2fb8b9..95be746c 100644 --- a/docs/Classes/MBDocumentOverlayViewController.html +++ b/docs/Classes/MBDocumentOverlayViewController.html @@ -849,7 +849,7 @@

    Return Value

    diff --git a/docs/Classes/MBDocumentSubview.html b/docs/Classes/MBDocumentSubview.html index d392c827..1b1e0354 100644 --- a/docs/Classes/MBDocumentSubview.html +++ b/docs/Classes/MBDocumentSubview.html @@ -941,7 +941,7 @@

    Return Value

    diff --git a/docs/Classes/MBDocumentVerificationInstructionsSubview.html b/docs/Classes/MBDocumentVerificationInstructionsSubview.html index 27866cba..67511532 100644 --- a/docs/Classes/MBDocumentVerificationInstructionsSubview.html +++ b/docs/Classes/MBDocumentVerificationInstructionsSubview.html @@ -786,7 +786,7 @@

    Declaration

    diff --git a/docs/Classes/MBDocumentVerificationOverlaySettings.html b/docs/Classes/MBDocumentVerificationOverlaySettings.html index c66ed008..73ed0749 100644 --- a/docs/Classes/MBDocumentVerificationOverlaySettings.html +++ b/docs/Classes/MBDocumentVerificationOverlaySettings.html @@ -1110,7 +1110,7 @@

    Declaration

    diff --git a/docs/Classes/MBDocumentVerificationOverlayViewController.html b/docs/Classes/MBDocumentVerificationOverlayViewController.html index b27ad5ca..9f66927e 100644 --- a/docs/Classes/MBDocumentVerificationOverlayViewController.html +++ b/docs/Classes/MBDocumentVerificationOverlayViewController.html @@ -853,7 +853,7 @@

    Return Value

    diff --git a/docs/Classes/MBDocumentVerificationSubview.html b/docs/Classes/MBDocumentVerificationSubview.html index 5d27d39f..f9187c03 100644 --- a/docs/Classes/MBDocumentVerificationSubview.html +++ b/docs/Classes/MBDocumentVerificationSubview.html @@ -850,7 +850,7 @@

    Declaration

    diff --git a/docs/Classes/MBDotsResultSubview.html b/docs/Classes/MBDotsResultSubview.html index c28d263f..2505af66 100644 --- a/docs/Classes/MBDotsResultSubview.html +++ b/docs/Classes/MBDotsResultSubview.html @@ -888,7 +888,7 @@

    Declaration

    diff --git a/docs/Classes/MBDotsSubview.html b/docs/Classes/MBDotsSubview.html index ba37db47..2e178437 100644 --- a/docs/Classes/MBDotsSubview.html +++ b/docs/Classes/MBDotsSubview.html @@ -975,7 +975,7 @@

    Declaration

    diff --git a/docs/Classes/MBDriverLicenseDetailedInfo.html b/docs/Classes/MBDriverLicenseDetailedInfo.html index 0a17ad0f..4007f036 100644 --- a/docs/Classes/MBDriverLicenseDetailedInfo.html +++ b/docs/Classes/MBDriverLicenseDetailedInfo.html @@ -863,7 +863,7 @@

    Declaration

    diff --git a/docs/Classes/MBFixedDewarpPolicy.html b/docs/Classes/MBFixedDewarpPolicy.html index adac2e0a..6e8e6c54 100644 --- a/docs/Classes/MBFixedDewarpPolicy.html +++ b/docs/Classes/MBFixedDewarpPolicy.html @@ -841,7 +841,7 @@

    Declaration

    diff --git a/docs/Classes/MBFrameGrabberRecognizer.html b/docs/Classes/MBFrameGrabberRecognizer.html index 8320ae6b..9e5c8c28 100644 --- a/docs/Classes/MBFrameGrabberRecognizer.html +++ b/docs/Classes/MBFrameGrabberRecognizer.html @@ -849,7 +849,7 @@

    Declaration

    diff --git a/docs/Classes/MBGlareStatusSubview.html b/docs/Classes/MBGlareStatusSubview.html index 68b6d94b..c4842c1b 100644 --- a/docs/Classes/MBGlareStatusSubview.html +++ b/docs/Classes/MBGlareStatusSubview.html @@ -873,7 +873,7 @@

    Declaration

    diff --git a/docs/Classes/MBImage.html b/docs/Classes/MBImage.html index 8fc02b99..ce7f426c 100644 --- a/docs/Classes/MBImage.html +++ b/docs/Classes/MBImage.html @@ -1055,7 +1055,7 @@

    Declaration

    diff --git a/docs/Classes/MBImageReturnProcessor.html b/docs/Classes/MBImageReturnProcessor.html index 2949dc23..772f9104 100644 --- a/docs/Classes/MBImageReturnProcessor.html +++ b/docs/Classes/MBImageReturnProcessor.html @@ -822,7 +822,7 @@

    Declaration

    diff --git a/docs/Classes/MBImageReturnProcessorResult.html b/docs/Classes/MBImageReturnProcessorResult.html index 11f2a685..293a7c47 100644 --- a/docs/Classes/MBImageReturnProcessorResult.html +++ b/docs/Classes/MBImageReturnProcessorResult.html @@ -814,7 +814,7 @@

    Declaration

    diff --git a/docs/Classes/MBMicroblinkApp.html b/docs/Classes/MBMicroblinkApp.html index 36eafe7a..d61467d0 100644 --- a/docs/Classes/MBMicroblinkApp.html +++ b/docs/Classes/MBMicroblinkApp.html @@ -1147,7 +1147,7 @@

    Declaration

    diff --git a/docs/Classes/MBMicroblinkSDK.html b/docs/Classes/MBMicroblinkSDK.html index 4ec2f9d7..93e6e4e2 100644 --- a/docs/Classes/MBMicroblinkSDK.html +++ b/docs/Classes/MBMicroblinkSDK.html @@ -1363,7 +1363,7 @@

    Return Value

    diff --git a/docs/Classes/MBMrtdCombinedRecognizer.html b/docs/Classes/MBMrtdCombinedRecognizer.html index 699075a0..79e62d79 100644 --- a/docs/Classes/MBMrtdCombinedRecognizer.html +++ b/docs/Classes/MBMrtdCombinedRecognizer.html @@ -967,7 +967,7 @@

    Declaration

    diff --git a/docs/Classes/MBMrtdCombinedRecognizerResult.html b/docs/Classes/MBMrtdCombinedRecognizerResult.html index 4ca02b17..87e61914 100644 --- a/docs/Classes/MBMrtdCombinedRecognizerResult.html +++ b/docs/Classes/MBMrtdCombinedRecognizerResult.html @@ -785,7 +785,7 @@

    Declaration

    diff --git a/docs/Classes/MBMrtdRecognizer.html b/docs/Classes/MBMrtdRecognizer.html index 1ca97767..762c6945 100644 --- a/docs/Classes/MBMrtdRecognizer.html +++ b/docs/Classes/MBMrtdRecognizer.html @@ -921,9 +921,9 @@

    Declaration

  • @@ -939,12 +939,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (void)setMrzFilter:(nullable id<MBMrzFilter>)mrzFilter;
    +
    @property (readwrite, nonatomic, nullable) id<MBMrzFilter> mrzFilterDelegate;

    Swift

    -
    func setMrzFilter(_ mrzFilter: MBMrzFilter?)
    +
    weak var mrzFilterDelegate: MBMrzFilter? { get set }
    @@ -959,7 +959,7 @@

    Declaration

    diff --git a/docs/Classes/MBMrtdRecognizerResult.html b/docs/Classes/MBMrtdRecognizerResult.html index 3a073990..7b633527 100644 --- a/docs/Classes/MBMrtdRecognizerResult.html +++ b/docs/Classes/MBMrtdRecognizerResult.html @@ -818,7 +818,7 @@

    Declaration

    diff --git a/docs/Classes/MBMrtdSpecification.html b/docs/Classes/MBMrtdSpecification.html index dd01735e..5fa9ed7a 100644 --- a/docs/Classes/MBMrtdSpecification.html +++ b/docs/Classes/MBMrtdSpecification.html @@ -805,7 +805,7 @@

    Return Value

    diff --git a/docs/Classes/MBMrzResult.html b/docs/Classes/MBMrzResult.html index b34aa790..1bd7afaf 100644 --- a/docs/Classes/MBMrzResult.html +++ b/docs/Classes/MBMrzResult.html @@ -1682,7 +1682,7 @@

    Declaration

    diff --git a/docs/Classes/MBNoUpScalingDewarpPolicy.html b/docs/Classes/MBNoUpScalingDewarpPolicy.html index 3198971b..73d7e28a 100644 --- a/docs/Classes/MBNoUpScalingDewarpPolicy.html +++ b/docs/Classes/MBNoUpScalingDewarpPolicy.html @@ -846,7 +846,7 @@

    Declaration

    diff --git a/docs/Classes/MBOcrBlock.html b/docs/Classes/MBOcrBlock.html index 575bd716..6ae67c46 100644 --- a/docs/Classes/MBOcrBlock.html +++ b/docs/Classes/MBOcrBlock.html @@ -923,7 +923,7 @@

    Return Value

    diff --git a/docs/Classes/MBOcrChar.html b/docs/Classes/MBOcrChar.html index 093eeb5a..972cbda4 100644 --- a/docs/Classes/MBOcrChar.html +++ b/docs/Classes/MBOcrChar.html @@ -1022,7 +1022,7 @@

    Return Value

    diff --git a/docs/Classes/MBOcrLayout.html b/docs/Classes/MBOcrLayout.html index b6617bfb..8e712a81 100644 --- a/docs/Classes/MBOcrLayout.html +++ b/docs/Classes/MBOcrLayout.html @@ -1128,7 +1128,7 @@

    Return Value

    diff --git a/docs/Classes/MBOcrLine.html b/docs/Classes/MBOcrLine.html index 41997b79..200db0e9 100644 --- a/docs/Classes/MBOcrLine.html +++ b/docs/Classes/MBOcrLine.html @@ -924,7 +924,7 @@

    Return Value

    diff --git a/docs/Classes/MBOverlaySettings.html b/docs/Classes/MBOverlaySettings.html index a5e166d8..5dfc0348 100644 --- a/docs/Classes/MBOverlaySettings.html +++ b/docs/Classes/MBOverlaySettings.html @@ -825,7 +825,7 @@

    Return Value

    diff --git a/docs/Classes/MBOverlayViewController.html b/docs/Classes/MBOverlayViewController.html index 40b01161..b3148d55 100644 --- a/docs/Classes/MBOverlayViewController.html +++ b/docs/Classes/MBOverlayViewController.html @@ -843,7 +843,7 @@

    Declaration

    diff --git a/docs/Classes/MBParserGroupProcessor.html b/docs/Classes/MBParserGroupProcessor.html index b3173c53..9d81f166 100644 --- a/docs/Classes/MBParserGroupProcessor.html +++ b/docs/Classes/MBParserGroupProcessor.html @@ -881,7 +881,7 @@

    Declaration

    diff --git a/docs/Classes/MBParserGroupProcessorResult.html b/docs/Classes/MBParserGroupProcessorResult.html index 037f8d91..05e23557 100644 --- a/docs/Classes/MBParserGroupProcessorResult.html +++ b/docs/Classes/MBParserGroupProcessorResult.html @@ -781,7 +781,7 @@

    Declaration

    diff --git a/docs/Classes/MBPassportRecognizer.html b/docs/Classes/MBPassportRecognizer.html index 632807d7..816e9706 100644 --- a/docs/Classes/MBPassportRecognizer.html +++ b/docs/Classes/MBPassportRecognizer.html @@ -791,7 +791,7 @@

    Declaration

    diff --git a/docs/Classes/MBPassportRecognizerResult.html b/docs/Classes/MBPassportRecognizerResult.html index a8a7f22c..7e83b648 100644 --- a/docs/Classes/MBPassportRecognizerResult.html +++ b/docs/Classes/MBPassportRecognizerResult.html @@ -784,7 +784,7 @@

    Declaration

    diff --git a/docs/Classes/MBPosition.html b/docs/Classes/MBPosition.html index 4541a004..ac05820f 100644 --- a/docs/Classes/MBPosition.html +++ b/docs/Classes/MBPosition.html @@ -1136,7 +1136,7 @@

    Return Value

    diff --git a/docs/Classes/MBProcessor.html b/docs/Classes/MBProcessor.html index 27e58333..d8950c77 100644 --- a/docs/Classes/MBProcessor.html +++ b/docs/Classes/MBProcessor.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/Classes/MBProcessorGroup.html b/docs/Classes/MBProcessorGroup.html index 2fd4a707..9ba758bb 100644 --- a/docs/Classes/MBProcessorGroup.html +++ b/docs/Classes/MBProcessorGroup.html @@ -861,7 +861,7 @@

    Declaration

    diff --git a/docs/Classes/MBProcessorResult.html b/docs/Classes/MBProcessorResult.html index 6c58fc68..10eaf200 100644 --- a/docs/Classes/MBProcessorResult.html +++ b/docs/Classes/MBProcessorResult.html @@ -781,7 +781,7 @@

    Declaration

    diff --git a/docs/Classes/MBQuadrangle.html b/docs/Classes/MBQuadrangle.html index ab1ff924..9f5e9d0f 100644 --- a/docs/Classes/MBQuadrangle.html +++ b/docs/Classes/MBQuadrangle.html @@ -1055,7 +1055,7 @@

    Return Value

    diff --git a/docs/Classes/MBRecognizer.html b/docs/Classes/MBRecognizer.html index 3ea0b3af..e5c6a3b0 100644 --- a/docs/Classes/MBRecognizer.html +++ b/docs/Classes/MBRecognizer.html @@ -786,7 +786,7 @@

    Declaration

    diff --git a/docs/Classes/MBRecognizerCollection.html b/docs/Classes/MBRecognizerCollection.html index 7150b8ad..8d7e9c92 100644 --- a/docs/Classes/MBRecognizerCollection.html +++ b/docs/Classes/MBRecognizerCollection.html @@ -964,7 +964,7 @@

    Declaration

    diff --git a/docs/Classes/MBRecognizerResult.html b/docs/Classes/MBRecognizerResult.html index ce7e19ea..ee865a04 100644 --- a/docs/Classes/MBRecognizerResult.html +++ b/docs/Classes/MBRecognizerResult.html @@ -781,7 +781,7 @@

    Declaration

    diff --git a/docs/Classes/MBRecognizerRunner.html b/docs/Classes/MBRecognizerRunner.html index a0cfb56e..33599a4e 100644 --- a/docs/Classes/MBRecognizerRunner.html +++ b/docs/Classes/MBRecognizerRunner.html @@ -1184,7 +1184,7 @@

    Declaration

    diff --git a/docs/Classes/MBRecognizerRunnerMetadataDelegates.html b/docs/Classes/MBRecognizerRunnerMetadataDelegates.html index 1a9024ef..0059b581 100644 --- a/docs/Classes/MBRecognizerRunnerMetadataDelegates.html +++ b/docs/Classes/MBRecognizerRunnerMetadataDelegates.html @@ -882,7 +882,7 @@

    Declaration

    diff --git a/docs/Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html b/docs/Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html index ef283c4a..62a9d45e 100644 --- a/docs/Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html +++ b/docs/Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html @@ -882,7 +882,7 @@

    Declaration

    diff --git a/docs/Classes/MBSubview.html b/docs/Classes/MBSubview.html index 1b034383..f8862371 100644 --- a/docs/Classes/MBSubview.html +++ b/docs/Classes/MBSubview.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/Classes/MBSuccessFrameGrabberRecognizer.html b/docs/Classes/MBSuccessFrameGrabberRecognizer.html index fd41f2f7..fbd6cb2b 100644 --- a/docs/Classes/MBSuccessFrameGrabberRecognizer.html +++ b/docs/Classes/MBSuccessFrameGrabberRecognizer.html @@ -846,7 +846,7 @@

    Declaration

    diff --git a/docs/Classes/MBSuccessFrameGrabberRecognizerResult.html b/docs/Classes/MBSuccessFrameGrabberRecognizerResult.html index 4e8717f2..d0361303 100644 --- a/docs/Classes/MBSuccessFrameGrabberRecognizerResult.html +++ b/docs/Classes/MBSuccessFrameGrabberRecognizerResult.html @@ -782,7 +782,7 @@

    Declaration

    diff --git a/docs/Classes/MBTapToFocusSubview.html b/docs/Classes/MBTapToFocusSubview.html index 924da94c..8fcff892 100644 --- a/docs/Classes/MBTapToFocusSubview.html +++ b/docs/Classes/MBTapToFocusSubview.html @@ -832,7 +832,7 @@

    Declaration

    diff --git a/docs/Classes/MBTemplatingClass.html b/docs/Classes/MBTemplatingClass.html index 655c19df..03f7accd 100644 --- a/docs/Classes/MBTemplatingClass.html +++ b/docs/Classes/MBTemplatingClass.html @@ -986,7 +986,7 @@

    Parameters

    diff --git a/docs/Classes/MBTemplatingRecognizer.html b/docs/Classes/MBTemplatingRecognizer.html index dfaf4be2..0ce0ede5 100644 --- a/docs/Classes/MBTemplatingRecognizer.html +++ b/docs/Classes/MBTemplatingRecognizer.html @@ -849,7 +849,7 @@

    Declaration

    diff --git a/docs/Classes/MBTemplatingRecognizerResult.html b/docs/Classes/MBTemplatingRecognizerResult.html index e459fa01..446a6566 100644 --- a/docs/Classes/MBTemplatingRecognizerResult.html +++ b/docs/Classes/MBTemplatingRecognizerResult.html @@ -783,7 +783,7 @@

    Declaration

    diff --git a/docs/Classes/MBUsdlCombinedRecognizer.html b/docs/Classes/MBUsdlCombinedRecognizer.html index b16eed7d..7af44bfc 100644 --- a/docs/Classes/MBUsdlCombinedRecognizer.html +++ b/docs/Classes/MBUsdlCombinedRecognizer.html @@ -937,7 +937,7 @@

    Declaration

    diff --git a/docs/Classes/MBUsdlCombinedRecognizerResult.html b/docs/Classes/MBUsdlCombinedRecognizerResult.html index 9695ab83..1e4b73df 100644 --- a/docs/Classes/MBUsdlCombinedRecognizerResult.html +++ b/docs/Classes/MBUsdlCombinedRecognizerResult.html @@ -1295,7 +1295,7 @@

    Declaration

    diff --git a/docs/Classes/MBUsdlRecognizer.html b/docs/Classes/MBUsdlRecognizer.html index 7c9d2883..5481cde5 100644 --- a/docs/Classes/MBUsdlRecognizer.html +++ b/docs/Classes/MBUsdlRecognizer.html @@ -859,7 +859,7 @@

    Declaration

    diff --git a/docs/Classes/MBUsdlRecognizerResult.html b/docs/Classes/MBUsdlRecognizerResult.html index d8087907..3f8384b5 100644 --- a/docs/Classes/MBUsdlRecognizerResult.html +++ b/docs/Classes/MBUsdlRecognizerResult.html @@ -1291,7 +1291,7 @@

    Declaration

    diff --git a/docs/Classes/MBViewControllerFactory.html b/docs/Classes/MBViewControllerFactory.html index e9b3dfab..1d58260a 100644 --- a/docs/Classes/MBViewControllerFactory.html +++ b/docs/Classes/MBViewControllerFactory.html @@ -791,7 +791,7 @@

    Return Value

    diff --git a/docs/Classes/MBVisaRecognizer.html b/docs/Classes/MBVisaRecognizer.html index ab6edf8a..44c3641c 100644 --- a/docs/Classes/MBVisaRecognizer.html +++ b/docs/Classes/MBVisaRecognizer.html @@ -790,7 +790,7 @@

    Declaration

    diff --git a/docs/Classes/MBVisaRecognizerResult.html b/docs/Classes/MBVisaRecognizerResult.html index dd8e7420..d9ea71fc 100644 --- a/docs/Classes/MBVisaRecognizerResult.html +++ b/docs/Classes/MBVisaRecognizerResult.html @@ -784,7 +784,7 @@

    Declaration

    diff --git a/docs/Constants.html b/docs/Constants.html index c50781bf..bf6459c9 100644 --- a/docs/Constants.html +++ b/docs/Constants.html @@ -939,7 +939,7 @@

    Declaration

    diff --git a/docs/Enums.html b/docs/Enums.html index 4a6998ff..454e9b91 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -1269,7 +1269,7 @@

    Declaration

    diff --git a/docs/Enums/MBCameraAutofocusRestriction.html b/docs/Enums/MBCameraAutofocusRestriction.html index 84b3af5b..630fac97 100644 --- a/docs/Enums/MBCameraAutofocusRestriction.html +++ b/docs/Enums/MBCameraAutofocusRestriction.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/Enums/MBCameraPreset.html b/docs/Enums/MBCameraPreset.html index 5b0d8c88..a8159dd9 100644 --- a/docs/Enums/MBCameraPreset.html +++ b/docs/Enums/MBCameraPreset.html @@ -881,7 +881,7 @@

    Declaration

    diff --git a/docs/Enums/MBCameraType.html b/docs/Enums/MBCameraType.html index d5efdd6f..81198407 100644 --- a/docs/Enums/MBCameraType.html +++ b/docs/Enums/MBCameraType.html @@ -785,7 +785,7 @@

    Declaration

    diff --git a/docs/Enums/MBDataMatchResult.html b/docs/Enums/MBDataMatchResult.html index 97b40a37..cd113772 100644 --- a/docs/Enums/MBDataMatchResult.html +++ b/docs/Enums/MBDataMatchResult.html @@ -802,7 +802,7 @@

    Declaration

    diff --git a/docs/Enums/MBDetectionStatus.html b/docs/Enums/MBDetectionStatus.html index 77c7d355..6b42f661 100644 --- a/docs/Enums/MBDetectionStatus.html +++ b/docs/Enums/MBDetectionStatus.html @@ -991,7 +991,7 @@

    Declaration

    diff --git a/docs/Enums/MBDocumentFaceDetectorType.html b/docs/Enums/MBDocumentFaceDetectorType.html index 1062db28..4a57e618 100644 --- a/docs/Enums/MBDocumentFaceDetectorType.html +++ b/docs/Enums/MBDocumentFaceDetectorType.html @@ -802,7 +802,7 @@

    Declaration

    diff --git a/docs/Enums/MBDocumentVerificationHighResImageState.html b/docs/Enums/MBDocumentVerificationHighResImageState.html index e47df165..90242e8d 100644 --- a/docs/Enums/MBDocumentVerificationHighResImageState.html +++ b/docs/Enums/MBDocumentVerificationHighResImageState.html @@ -788,7 +788,7 @@

    Declaration

    diff --git a/docs/Enums/MBFrameQualityEstimationMode.html b/docs/Enums/MBFrameQualityEstimationMode.html index 55443c19..84554278 100644 --- a/docs/Enums/MBFrameQualityEstimationMode.html +++ b/docs/Enums/MBFrameQualityEstimationMode.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/Enums/MBMrtdDocumentType.html b/docs/Enums/MBMrtdDocumentType.html index 6e83bb7d..8c445413 100644 --- a/docs/Enums/MBMrtdDocumentType.html +++ b/docs/Enums/MBMrtdDocumentType.html @@ -881,7 +881,7 @@

    Declaration

    diff --git a/docs/Enums/MBMrtdSpecificationPreset.html b/docs/Enums/MBMrtdSpecificationPreset.html index c131426d..4ce4c9c3 100644 --- a/docs/Enums/MBMrtdSpecificationPreset.html +++ b/docs/Enums/MBMrtdSpecificationPreset.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/Enums/MBOcrFont.html b/docs/Enums/MBOcrFont.html index d326c342..a4da25db 100644 --- a/docs/Enums/MBOcrFont.html +++ b/docs/Enums/MBOcrFont.html @@ -3002,7 +3002,7 @@

    Declaration

    diff --git a/docs/Enums/MBProcessingOrientation.html b/docs/Enums/MBProcessingOrientation.html index b59f4e00..e8c18f75 100644 --- a/docs/Enums/MBProcessingOrientation.html +++ b/docs/Enums/MBProcessingOrientation.html @@ -849,7 +849,7 @@

    Declaration

    diff --git a/docs/Enums/MBProcessorResultState.html b/docs/Enums/MBProcessorResultState.html index 98f801fe..8441bf6b 100644 --- a/docs/Enums/MBProcessorResultState.html +++ b/docs/Enums/MBProcessorResultState.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/Enums/MBRecognitionMode.html b/docs/Enums/MBRecognitionMode.html index fa4f5541..864d3604 100644 --- a/docs/Enums/MBRecognitionMode.html +++ b/docs/Enums/MBRecognitionMode.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/Enums/MBRecognizerResultState.html b/docs/Enums/MBRecognizerResultState.html index 72de7e49..f4b66211 100644 --- a/docs/Enums/MBRecognizerResultState.html +++ b/docs/Enums/MBRecognizerResultState.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/Enums/MBUsdlKeys.html b/docs/Enums/MBUsdlKeys.html index 17bc52b9..caff972a 100644 --- a/docs/Enums/MBUsdlKeys.html +++ b/docs/Enums/MBUsdlKeys.html @@ -3490,7 +3490,7 @@

    Declaration

    diff --git a/docs/Functions.html b/docs/Functions.html index 94de235c..1aa3e95e 100644 --- a/docs/Functions.html +++ b/docs/Functions.html @@ -1732,7 +1732,7 @@

    Declaration

    diff --git a/docs/Protocols.html b/docs/Protocols.html index 42d86b50..38d429f3 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -3308,7 +3308,7 @@

    Declaration

    diff --git a/docs/Protocols/MBBlinkIdCombinedRecognizerDelegate.html b/docs/Protocols/MBBlinkIdCombinedRecognizerDelegate.html index 1f12d749..cbd39281 100644 --- a/docs/Protocols/MBBlinkIdCombinedRecognizerDelegate.html +++ b/docs/Protocols/MBBlinkIdCombinedRecognizerDelegate.html @@ -789,7 +789,7 @@

    Declaration

    diff --git a/docs/Protocols/MBBlinkIdOverlayViewControllerDelegate.html b/docs/Protocols/MBBlinkIdOverlayViewControllerDelegate.html index ff2bb1ae..71ac8b0b 100644 --- a/docs/Protocols/MBBlinkIdOverlayViewControllerDelegate.html +++ b/docs/Protocols/MBBlinkIdOverlayViewControllerDelegate.html @@ -905,7 +905,7 @@

    Parameters

    diff --git a/docs/Protocols/MBBlinkIdRecognizerDelegate.html b/docs/Protocols/MBBlinkIdRecognizerDelegate.html index d136d4f2..5588fa12 100644 --- a/docs/Protocols/MBBlinkIdRecognizerDelegate.html +++ b/docs/Protocols/MBBlinkIdRecognizerDelegate.html @@ -789,7 +789,7 @@

    Declaration

    diff --git a/docs/Protocols/MBCombinedFullDocumentImageResult.html b/docs/Protocols/MBCombinedFullDocumentImageResult.html index 2c4dbbaf..5f5a783f 100644 --- a/docs/Protocols/MBCombinedFullDocumentImageResult.html +++ b/docs/Protocols/MBCombinedFullDocumentImageResult.html @@ -801,7 +801,7 @@

    Declaration

    diff --git a/docs/Protocols/MBCombinedRecognizer.html b/docs/Protocols/MBCombinedRecognizer.html index 067b6bcb..fdd2b269 100644 --- a/docs/Protocols/MBCombinedRecognizer.html +++ b/docs/Protocols/MBCombinedRecognizer.html @@ -759,7 +759,7 @@

    Declaration

    diff --git a/docs/Protocols/MBCombinedRecognizerResult.html b/docs/Protocols/MBCombinedRecognizerResult.html index 7ca3cb9d..b2d8db99 100644 --- a/docs/Protocols/MBCombinedRecognizerResult.html +++ b/docs/Protocols/MBCombinedRecognizerResult.html @@ -809,7 +809,7 @@

    Declaration

    diff --git a/docs/Protocols/MBDebugRecognizerRunnerDelegate.html b/docs/Protocols/MBDebugRecognizerRunnerDelegate.html index dc0854b7..8c3721ae 100644 --- a/docs/Protocols/MBDebugRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBDebugRecognizerRunnerDelegate.html @@ -789,7 +789,7 @@

    Declaration

    diff --git a/docs/Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html b/docs/Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html index 40782cce..e7fd9e11 100644 --- a/docs/Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html +++ b/docs/Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html @@ -793,7 +793,7 @@

    Declaration

    diff --git a/docs/Protocols/MBDetectionRecognizerRunnerDelegate.html b/docs/Protocols/MBDetectionRecognizerRunnerDelegate.html index 3b27c9fc..65fc0b11 100644 --- a/docs/Protocols/MBDetectionRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBDetectionRecognizerRunnerDelegate.html @@ -919,7 +919,7 @@

    Parameters

    diff --git a/docs/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html b/docs/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html index 041af03c..1ecaaa2c 100644 --- a/docs/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html +++ b/docs/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html @@ -924,7 +924,7 @@

    Parameters

    diff --git a/docs/Protocols/MBDigitalSignature.html b/docs/Protocols/MBDigitalSignature.html index 5af5bd45..a4865e85 100644 --- a/docs/Protocols/MBDigitalSignature.html +++ b/docs/Protocols/MBDigitalSignature.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBDigitalSignatureResult.html b/docs/Protocols/MBDigitalSignatureResult.html index a5724312..1fb53f9c 100644 --- a/docs/Protocols/MBDigitalSignatureResult.html +++ b/docs/Protocols/MBDigitalSignatureResult.html @@ -801,7 +801,7 @@

    Declaration

    diff --git a/docs/Protocols/MBDocumentOverlayViewControllerDelegate.html b/docs/Protocols/MBDocumentOverlayViewControllerDelegate.html index c866c9d0..d9c3cbc7 100644 --- a/docs/Protocols/MBDocumentOverlayViewControllerDelegate.html +++ b/docs/Protocols/MBDocumentOverlayViewControllerDelegate.html @@ -925,7 +925,7 @@

    Parameters

    diff --git a/docs/Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html b/docs/Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html index ec6b1f56..6e1159bd 100644 --- a/docs/Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html +++ b/docs/Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html @@ -987,7 +987,7 @@

    Parameters

    diff --git a/docs/Protocols/MBDocumentVerificationSubviewDelegate.html b/docs/Protocols/MBDocumentVerificationSubviewDelegate.html index d3364e84..8c259886 100644 --- a/docs/Protocols/MBDocumentVerificationSubviewDelegate.html +++ b/docs/Protocols/MBDocumentVerificationSubviewDelegate.html @@ -757,7 +757,7 @@

    Declaration

    diff --git a/docs/Protocols/MBEncodeFaceImage.html b/docs/Protocols/MBEncodeFaceImage.html index db2ff8da..a45890ea 100644 --- a/docs/Protocols/MBEncodeFaceImage.html +++ b/docs/Protocols/MBEncodeFaceImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBEncodeFullDocumentImage.html b/docs/Protocols/MBEncodeFullDocumentImage.html index d49275a5..bdc003fc 100644 --- a/docs/Protocols/MBEncodeFullDocumentImage.html +++ b/docs/Protocols/MBEncodeFullDocumentImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBEncodeMrzImage.html b/docs/Protocols/MBEncodeMrzImage.html index 1e6b4b99..8efca6ab 100644 --- a/docs/Protocols/MBEncodeMrzImage.html +++ b/docs/Protocols/MBEncodeMrzImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBEncodeSignatureImage.html b/docs/Protocols/MBEncodeSignatureImage.html index 42574bec..dd9e6df6 100644 --- a/docs/Protocols/MBEncodeSignatureImage.html +++ b/docs/Protocols/MBEncodeSignatureImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBEncodedCombinedFullDocumentImageResult.html b/docs/Protocols/MBEncodedCombinedFullDocumentImageResult.html index f8757755..d82ee280 100644 --- a/docs/Protocols/MBEncodedCombinedFullDocumentImageResult.html +++ b/docs/Protocols/MBEncodedCombinedFullDocumentImageResult.html @@ -801,7 +801,7 @@

    Declaration

    diff --git a/docs/Protocols/MBEncodedFaceImageResult.html b/docs/Protocols/MBEncodedFaceImageResult.html index aae4ca09..42091c58 100644 --- a/docs/Protocols/MBEncodedFaceImageResult.html +++ b/docs/Protocols/MBEncodedFaceImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/Protocols/MBEncodedFullDocumentImageResult.html b/docs/Protocols/MBEncodedFullDocumentImageResult.html index cf395ee7..e5a0123e 100644 --- a/docs/Protocols/MBEncodedFullDocumentImageResult.html +++ b/docs/Protocols/MBEncodedFullDocumentImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/Protocols/MBEncodedMrzImageResult.html b/docs/Protocols/MBEncodedMrzImageResult.html index fcbdc561..388e06bd 100644 --- a/docs/Protocols/MBEncodedMrzImageResult.html +++ b/docs/Protocols/MBEncodedMrzImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/Protocols/MBEncodedSignatureImageResult.html b/docs/Protocols/MBEncodedSignatureImageResult.html index 3bdbbc01..4d7e7021 100644 --- a/docs/Protocols/MBEncodedSignatureImageResult.html +++ b/docs/Protocols/MBEncodedSignatureImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/Protocols/MBFaceImage.html b/docs/Protocols/MBFaceImage.html index f0b5e03d..d65e1295 100644 --- a/docs/Protocols/MBFaceImage.html +++ b/docs/Protocols/MBFaceImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBFaceImageDpi.html b/docs/Protocols/MBFaceImageDpi.html index be99c10e..4780f36e 100644 --- a/docs/Protocols/MBFaceImageDpi.html +++ b/docs/Protocols/MBFaceImageDpi.html @@ -769,7 +769,7 @@

    Declaration

    diff --git a/docs/Protocols/MBFaceImageResult.html b/docs/Protocols/MBFaceImageResult.html index 0ce7859b..f411d1c4 100644 --- a/docs/Protocols/MBFaceImageResult.html +++ b/docs/Protocols/MBFaceImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html b/docs/Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html index ca22ceaa..8bad6a34 100644 --- a/docs/Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html @@ -764,7 +764,7 @@

    Declaration

    diff --git a/docs/Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html b/docs/Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html index d4cf29b4..9c600d51 100644 --- a/docs/Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html +++ b/docs/Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html @@ -765,7 +765,7 @@

    Declaration

    diff --git a/docs/Protocols/MBFrameGrabberRecognizerDelegate.html b/docs/Protocols/MBFrameGrabberRecognizerDelegate.html index 6c17caa9..e8058d2d 100644 --- a/docs/Protocols/MBFrameGrabberRecognizerDelegate.html +++ b/docs/Protocols/MBFrameGrabberRecognizerDelegate.html @@ -822,7 +822,7 @@

    Parameters

    diff --git a/docs/Protocols/MBFullDocumentImage.html b/docs/Protocols/MBFullDocumentImage.html index 61c4d9c7..1338ce2e 100644 --- a/docs/Protocols/MBFullDocumentImage.html +++ b/docs/Protocols/MBFullDocumentImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBFullDocumentImageDpi.html b/docs/Protocols/MBFullDocumentImageDpi.html index f1c4315a..e595c356 100644 --- a/docs/Protocols/MBFullDocumentImageDpi.html +++ b/docs/Protocols/MBFullDocumentImageDpi.html @@ -769,7 +769,7 @@

    Declaration

    diff --git a/docs/Protocols/MBFullDocumentImageExtensionFactors.html b/docs/Protocols/MBFullDocumentImageExtensionFactors.html index 79d698ab..faa83049 100644 --- a/docs/Protocols/MBFullDocumentImageExtensionFactors.html +++ b/docs/Protocols/MBFullDocumentImageExtensionFactors.html @@ -768,7 +768,7 @@

    Declaration

    diff --git a/docs/Protocols/MBFullDocumentImageResult.html b/docs/Protocols/MBFullDocumentImageResult.html index 034d6c16..ef42d4ac 100644 --- a/docs/Protocols/MBFullDocumentImageResult.html +++ b/docs/Protocols/MBFullDocumentImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/Protocols/MBGlareDetection.html b/docs/Protocols/MBGlareDetection.html index 75d5884c..ef3a3430 100644 --- a/docs/Protocols/MBGlareDetection.html +++ b/docs/Protocols/MBGlareDetection.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBGlareRecognizerRunnerDelegate.html b/docs/Protocols/MBGlareRecognizerRunnerDelegate.html index 2fb2e599..f549cafc 100644 --- a/docs/Protocols/MBGlareRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBGlareRecognizerRunnerDelegate.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html b/docs/Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html index 0ec08c47..3e5e9c6b 100644 --- a/docs/Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html +++ b/docs/Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html @@ -765,7 +765,7 @@

    Declaration

    diff --git a/docs/Protocols/MBImageProcessingRecognizerRunnerDelegate.html b/docs/Protocols/MBImageProcessingRecognizerRunnerDelegate.html index 21ba49d1..ebc239e7 100644 --- a/docs/Protocols/MBImageProcessingRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBImageProcessingRecognizerRunnerDelegate.html @@ -764,7 +764,7 @@

    Declaration

    diff --git a/docs/Protocols/MBMrzFilter.html b/docs/Protocols/MBMrzFilter.html index feeea9a9..88a8b353 100644 --- a/docs/Protocols/MBMrzFilter.html +++ b/docs/Protocols/MBMrzFilter.html @@ -766,7 +766,7 @@

    Return Value

    diff --git a/docs/Protocols/MBMrzImage.html b/docs/Protocols/MBMrzImage.html index 252184a6..9005f159 100644 --- a/docs/Protocols/MBMrzImage.html +++ b/docs/Protocols/MBMrzImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBMrzImageDpi.html b/docs/Protocols/MBMrzImageDpi.html index f01cc05f..b4034b43 100644 --- a/docs/Protocols/MBMrzImageDpi.html +++ b/docs/Protocols/MBMrzImageDpi.html @@ -769,7 +769,7 @@

    Declaration

    diff --git a/docs/Protocols/MBMrzImageResult.html b/docs/Protocols/MBMrzImageResult.html index 6122aae2..a7fe9356 100644 --- a/docs/Protocols/MBMrzImageResult.html +++ b/docs/Protocols/MBMrzImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/Protocols/MBNativeResult.html b/docs/Protocols/MBNativeResult.html index 41412a8b..2d3e05ca 100644 --- a/docs/Protocols/MBNativeResult.html +++ b/docs/Protocols/MBNativeResult.html @@ -801,7 +801,7 @@

    Declaration

    diff --git a/docs/Protocols/MBOcrRecognizerRunnerDelegate.html b/docs/Protocols/MBOcrRecognizerRunnerDelegate.html index ed55fbb6..7b177219 100644 --- a/docs/Protocols/MBOcrRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBOcrRecognizerRunnerDelegate.html @@ -756,7 +756,7 @@

    Declaration

    diff --git a/docs/Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html b/docs/Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html index ca12b51c..0e70c8f9 100644 --- a/docs/Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html +++ b/docs/Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html @@ -758,7 +758,7 @@

    Declaration

    diff --git a/docs/Protocols/MBOverlayContainerViewController.html b/docs/Protocols/MBOverlayContainerViewController.html index 5470e231..3455443e 100644 --- a/docs/Protocols/MBOverlayContainerViewController.html +++ b/docs/Protocols/MBOverlayContainerViewController.html @@ -958,7 +958,7 @@

    Declaration

    diff --git a/docs/Protocols/MBPointDetectorSubview.html b/docs/Protocols/MBPointDetectorSubview.html index 0649b1a5..55546205 100644 --- a/docs/Protocols/MBPointDetectorSubview.html +++ b/docs/Protocols/MBPointDetectorSubview.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/Protocols/MBQuadDetectorSubview.html b/docs/Protocols/MBQuadDetectorSubview.html index 385b398f..270522a3 100644 --- a/docs/Protocols/MBQuadDetectorSubview.html +++ b/docs/Protocols/MBQuadDetectorSubview.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/Protocols/MBRecognizerRunnerViewController.html b/docs/Protocols/MBRecognizerRunnerViewController.html index c211913e..9b32a198 100644 --- a/docs/Protocols/MBRecognizerRunnerViewController.html +++ b/docs/Protocols/MBRecognizerRunnerViewController.html @@ -1173,7 +1173,7 @@

    Declaration

    diff --git a/docs/Protocols/MBRecognizerRunnerViewControllerDelegate.html b/docs/Protocols/MBRecognizerRunnerViewControllerDelegate.html index b1edaa62..9be744cd 100644 --- a/docs/Protocols/MBRecognizerRunnerViewControllerDelegate.html +++ b/docs/Protocols/MBRecognizerRunnerViewControllerDelegate.html @@ -1067,7 +1067,7 @@

    Parameters

    diff --git a/docs/Protocols/MBResultSubview.html b/docs/Protocols/MBResultSubview.html index a076f68f..f4d97817 100644 --- a/docs/Protocols/MBResultSubview.html +++ b/docs/Protocols/MBResultSubview.html @@ -753,7 +753,7 @@

    Declaration

    diff --git a/docs/Protocols/MBScanningRecognizerRunnerDelegate.html b/docs/Protocols/MBScanningRecognizerRunnerDelegate.html index 1c53896a..cc194b49 100644 --- a/docs/Protocols/MBScanningRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBScanningRecognizerRunnerDelegate.html @@ -799,7 +799,7 @@

    Parameters

    diff --git a/docs/Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html b/docs/Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html index c9ee0207..1ece83a5 100644 --- a/docs/Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html +++ b/docs/Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html @@ -801,7 +801,7 @@

    Parameters

    diff --git a/docs/Protocols/MBSignatureImage.html b/docs/Protocols/MBSignatureImage.html index 8bff303b..e9d82ab8 100644 --- a/docs/Protocols/MBSignatureImage.html +++ b/docs/Protocols/MBSignatureImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/Protocols/MBSignatureImageDpi.html b/docs/Protocols/MBSignatureImageDpi.html index 83ffb894..20022d2b 100644 --- a/docs/Protocols/MBSignatureImageDpi.html +++ b/docs/Protocols/MBSignatureImageDpi.html @@ -769,7 +769,7 @@

    Declaration

    diff --git a/docs/Protocols/MBSignatureImageResult.html b/docs/Protocols/MBSignatureImageResult.html index 3465f2b8..ed02ca27 100644 --- a/docs/Protocols/MBSignatureImageResult.html +++ b/docs/Protocols/MBSignatureImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/Protocols/MBStringProcessingRecognizerRunnerDelegate.html b/docs/Protocols/MBStringProcessingRecognizerRunnerDelegate.html index f736f599..7472b09a 100644 --- a/docs/Protocols/MBStringProcessingRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBStringProcessingRecognizerRunnerDelegate.html @@ -764,7 +764,7 @@

    Declaration

    diff --git a/docs/Protocols/MBSubviewDelegate.html b/docs/Protocols/MBSubviewDelegate.html index fb92dbbc..81469e64 100644 --- a/docs/Protocols/MBSubviewDelegate.html +++ b/docs/Protocols/MBSubviewDelegate.html @@ -785,7 +785,7 @@

    Declaration

    diff --git a/docs/Protocols/MBTemplatingClassifier.html b/docs/Protocols/MBTemplatingClassifier.html index a80a3a26..64f48fbe 100644 --- a/docs/Protocols/MBTemplatingClassifier.html +++ b/docs/Protocols/MBTemplatingClassifier.html @@ -757,7 +757,7 @@

    Declaration

    diff --git a/docs/Structs.html b/docs/Structs.html index 1a8bf0b2..62ee8d1a 100644 --- a/docs/Structs.html +++ b/docs/Structs.html @@ -750,7 +750,7 @@

    Declaration

    diff --git a/docs/Structs/_MBImageExtensionFactors.html b/docs/Structs/_MBImageExtensionFactors.html index fd9b9523..6cafc1ec 100644 --- a/docs/Structs/_MBImageExtensionFactors.html +++ b/docs/Structs/_MBImageExtensionFactors.html @@ -851,7 +851,7 @@

    Declaration

    diff --git a/docs/Type Definitions.html b/docs/Type Definitions.html index ff2a5adf..168f57f9 100644 --- a/docs/Type Definitions.html +++ b/docs/Type Definitions.html @@ -887,7 +887,7 @@

    Declaration

    diff --git a/docs/Type Definitions/CGLine.html b/docs/Type Definitions/CGLine.html index f7edbcb8..1444f556 100644 --- a/docs/Type Definitions/CGLine.html +++ b/docs/Type Definitions/CGLine.html @@ -760,7 +760,7 @@

    Declaration

    diff --git a/docs/Type Definitions/CGLine/.html b/docs/Type Definitions/CGLine/.html index 91802e81..89be8dfb 100644 --- a/docs/Type Definitions/CGLine/.html +++ b/docs/Type Definitions/CGLine/.html @@ -788,7 +788,7 @@

    Declaration

    diff --git a/docs/Type Definitions/MBImageExtensionFactors.html b/docs/Type Definitions/MBImageExtensionFactors.html index 5e5fa8b5..d791f360 100644 --- a/docs/Type Definitions/MBImageExtensionFactors.html +++ b/docs/Type Definitions/MBImageExtensionFactors.html @@ -756,7 +756,7 @@

    Declaration

    diff --git a/docs/Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html b/docs/Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html index e6cd3cdc..4c9b81cb 100644 --- a/docs/Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html +++ b/docs/Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html @@ -851,7 +851,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes.html index 996c8e03..5d26d95f 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes.html @@ -4252,7 +4252,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOcrOverlaySettings.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOcrOverlaySettings.html index abc2507b..99ad0485 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOcrOverlaySettings.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOcrOverlaySettings.html @@ -756,7 +756,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOverlaySettings.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOverlaySettings.html index aef0b5e2..666f548a 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOverlaySettings.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOverlaySettings.html @@ -922,7 +922,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOverlayViewController.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOverlayViewController.html index 42f91e1b..7ae42895 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOverlayViewController.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBaseOverlayViewController.html @@ -755,7 +755,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdCombinedRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdCombinedRecognizer.html index be45997b..e72d6c7a 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdCombinedRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdCombinedRecognizer.html @@ -786,9 +786,9 @@

    Declaration

  • @@ -796,20 +796,21 @@

    Declaration

    -

    Called with dewarped full document image

    +

    Full document dewarped imagedelegate

    Declaration

    Objective-C

    -
    - (void)setDewarpedImageDelegate:
    -    (nullable id<MBBlinkIdCombinedRecognizerDelegate>)delegate;
    +
    @property (readwrite, nonatomic, nullable)
    +    id<MBBlinkIdCombinedRecognizerDelegate>
    +        dewarpedImageDelegate;

    Swift

    -
    func setDewarpedImageDelegate(_ delegate: MBBlinkIdCombinedRecognizerDelegate?)
    +
    weak var dewarpedImageDelegate: MBBlinkIdCombinedRecognizerDelegate? { get set }
    @@ -819,9 +820,9 @@

    Declaration

  • @@ -829,20 +830,21 @@

    Declaration

    -

    Called when document is not supported

    +

    Document not supported classifier delegate

    Declaration

    Objective-C

    -
    - (void)setClassifierDelegate:
    -    (nullable id<MBBlinkIdCombinedRecognizerDelegate>)delegate;
    +
    @property (readwrite, nonatomic, nullable)
    +    id<MBBlinkIdCombinedRecognizerDelegate>
    +        classifierDelegate;

    Swift

    -
    func setClassifierDelegate(_ delegate: MBBlinkIdCombinedRecognizerDelegate?)
    +
    weak var classifierDelegate: MBBlinkIdCombinedRecognizerDelegate? { get set }
    @@ -891,7 +893,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdCombinedRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdCombinedRecognizerResult.html index 8b584967..a28f0174 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdCombinedRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdCombinedRecognizerResult.html @@ -1554,7 +1554,7 @@

    Declaration

  • diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdOverlaySettings.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdOverlaySettings.html index 7f4d4040..318c56ce 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdOverlaySettings.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdOverlaySettings.html @@ -860,7 +860,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdOverlayViewController.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdOverlayViewController.html index 316929c9..3af16e84 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdOverlayViewController.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdOverlayViewController.html @@ -848,7 +848,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdRecognizer.html index 31768e8e..ce9f9261 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdRecognizer.html @@ -785,9 +785,9 @@

    Declaration

  • @@ -795,20 +795,20 @@

    Declaration

    -

    Called with dewarped full document image

    +

    Full document dewarped imagedelegate

    Declaration

    Objective-C

    -
    - (void)setDewarpedImageDelegate:
    -    (nullable id<MBBlinkIdRecognizerDelegate>)delegate;
    +
    @property (readwrite, nonatomic, nullable) id<MBBlinkIdRecognizerDelegate>
    +    dewarpedImageDelegate;

    Swift

    -
    func setDewarpedImageDelegate(_ delegate: MBBlinkIdRecognizerDelegate?)
    +
    weak var dewarpedImageDelegate: MBBlinkIdRecognizerDelegate? { get set }
    @@ -818,9 +818,9 @@

    Declaration

  • @@ -828,20 +828,20 @@

    Declaration

    -

    Called when document is not supported

    +

    Document not supported classifier delegate

    Declaration

    Objective-C

    -
    - (void)setClassifierDelegate:
    -    (nullable id<MBBlinkIdRecognizerDelegate>)delegate;
    +
    @property (readwrite, nonatomic, nullable) id<MBBlinkIdRecognizerDelegate>
    +    classifierDelegate;

    Swift

    -
    func setClassifierDelegate(_ delegate: MBBlinkIdRecognizerDelegate?)
    +
    weak var classifierDelegate: MBBlinkIdRecognizerDelegate? { get set }
    @@ -890,7 +890,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdRecognizerResult.html index f0b7116b..c34ab010 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBBlinkIdRecognizerResult.html @@ -1553,7 +1553,7 @@

    Declaration

  • diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCameraReticle.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCameraReticle.html index 0a123a1b..a8ef6087 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCameraReticle.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCameraReticle.html @@ -1043,7 +1043,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCameraSettings.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCameraSettings.html index 29ad2326..49c6da4b 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCameraSettings.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCameraSettings.html @@ -1109,7 +1109,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCharWithVariants.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCharWithVariants.html index 652feb19..7a0a6ceb 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCharWithVariants.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCharWithVariants.html @@ -904,7 +904,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCustomOverlayViewController.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCustomOverlayViewController.html index da3c2496..c5a3cad9 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCustomOverlayViewController.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBCustomOverlayViewController.html @@ -1128,7 +1128,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDPIBasedDewarpPolicy.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDPIBasedDewarpPolicy.html index bc99478d..f4d78b34 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDPIBasedDewarpPolicy.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDPIBasedDewarpPolicy.html @@ -843,7 +843,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDateResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDateResult.html index 3d002cc2..32dc0cad 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDateResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDateResult.html @@ -1096,7 +1096,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDewarpPolicy.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDewarpPolicy.html index 89e17596..8e47fdb2 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDewarpPolicy.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDewarpPolicy.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableDetection.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableDetection.html index 7f106d7e..2309bb6e 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableDetection.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableDetection.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableObject.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableObject.html index 33c52155..b1ae7ce0 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableObject.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableObject.html @@ -755,7 +755,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayablePointsDetection.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayablePointsDetection.html index b5850347..039ace23 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayablePointsDetection.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayablePointsDetection.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableQuadDetection.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableQuadDetection.html index 37e94551..f2ea851b 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableQuadDetection.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDisplayableQuadDetection.html @@ -756,7 +756,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentFaceRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentFaceRecognizer.html index fafc8e72..41551969 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentFaceRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentFaceRecognizer.html @@ -863,7 +863,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentFaceRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentFaceRecognizerResult.html index 70a45620..02df5963 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentFaceRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentFaceRecognizerResult.html @@ -815,7 +815,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentOverlaySettings.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentOverlaySettings.html index 33f7dde4..b62fa416 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentOverlaySettings.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentOverlaySettings.html @@ -859,7 +859,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentOverlayViewController.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentOverlayViewController.html index 4f2fb8b9..95be746c 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentOverlayViewController.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentOverlayViewController.html @@ -849,7 +849,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentSubview.html index d392c827..1b1e0354 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentSubview.html @@ -941,7 +941,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationInstructionsSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationInstructionsSubview.html index 27866cba..67511532 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationInstructionsSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationInstructionsSubview.html @@ -786,7 +786,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationOverlaySettings.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationOverlaySettings.html index c66ed008..73ed0749 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationOverlaySettings.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationOverlaySettings.html @@ -1110,7 +1110,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationOverlayViewController.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationOverlayViewController.html index b27ad5ca..9f66927e 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationOverlayViewController.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationOverlayViewController.html @@ -853,7 +853,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationSubview.html index 5d27d39f..f9187c03 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDocumentVerificationSubview.html @@ -850,7 +850,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDotsResultSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDotsResultSubview.html index c28d263f..2505af66 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDotsResultSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDotsResultSubview.html @@ -888,7 +888,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDotsSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDotsSubview.html index ba37db47..2e178437 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDotsSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDotsSubview.html @@ -975,7 +975,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDriverLicenseDetailedInfo.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDriverLicenseDetailedInfo.html index 0a17ad0f..4007f036 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDriverLicenseDetailedInfo.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBDriverLicenseDetailedInfo.html @@ -863,7 +863,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBFixedDewarpPolicy.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBFixedDewarpPolicy.html index adac2e0a..6e8e6c54 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBFixedDewarpPolicy.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBFixedDewarpPolicy.html @@ -841,7 +841,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBFrameGrabberRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBFrameGrabberRecognizer.html index 8320ae6b..9e5c8c28 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBFrameGrabberRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBFrameGrabberRecognizer.html @@ -849,7 +849,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBGlareStatusSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBGlareStatusSubview.html index 68b6d94b..c4842c1b 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBGlareStatusSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBGlareStatusSubview.html @@ -873,7 +873,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImage.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImage.html index 8fc02b99..ce7f426c 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImage.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImage.html @@ -1055,7 +1055,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessor.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessor.html index 2949dc23..772f9104 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessor.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessor.html @@ -822,7 +822,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessorResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessorResult.html index 11f2a685..293a7c47 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessorResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessorResult.html @@ -814,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMicroblinkApp.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMicroblinkApp.html index 36eafe7a..d61467d0 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMicroblinkApp.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMicroblinkApp.html @@ -1147,7 +1147,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMicroblinkSDK.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMicroblinkSDK.html index 4ec2f9d7..93e6e4e2 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMicroblinkSDK.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMicroblinkSDK.html @@ -1363,7 +1363,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdCombinedRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdCombinedRecognizer.html index 699075a0..79e62d79 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdCombinedRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdCombinedRecognizer.html @@ -967,7 +967,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdCombinedRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdCombinedRecognizerResult.html index 4ca02b17..87e61914 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdCombinedRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdCombinedRecognizerResult.html @@ -785,7 +785,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdRecognizer.html index 1ca97767..762c6945 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdRecognizer.html @@ -921,9 +921,9 @@

    Declaration

  • @@ -939,12 +939,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (void)setMrzFilter:(nullable id<MBMrzFilter>)mrzFilter;
    +
    @property (readwrite, nonatomic, nullable) id<MBMrzFilter> mrzFilterDelegate;

    Swift

    -
    func setMrzFilter(_ mrzFilter: MBMrzFilter?)
    +
    weak var mrzFilterDelegate: MBMrzFilter? { get set }
    @@ -959,7 +959,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdRecognizerResult.html index 3a073990..7b633527 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdRecognizerResult.html @@ -818,7 +818,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdSpecification.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdSpecification.html index dd01735e..5fa9ed7a 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdSpecification.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrtdSpecification.html @@ -805,7 +805,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrzResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrzResult.html index b34aa790..1bd7afaf 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrzResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBMrzResult.html @@ -1682,7 +1682,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBNoUpScalingDewarpPolicy.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBNoUpScalingDewarpPolicy.html index 3198971b..73d7e28a 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBNoUpScalingDewarpPolicy.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBNoUpScalingDewarpPolicy.html @@ -846,7 +846,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrBlock.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrBlock.html index 575bd716..6ae67c46 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrBlock.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrBlock.html @@ -923,7 +923,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrChar.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrChar.html index 093eeb5a..972cbda4 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrChar.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrChar.html @@ -1022,7 +1022,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrLayout.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrLayout.html index b6617bfb..8e712a81 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrLayout.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrLayout.html @@ -1128,7 +1128,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrLine.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrLine.html index 41997b79..200db0e9 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrLine.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOcrLine.html @@ -924,7 +924,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOverlaySettings.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOverlaySettings.html index a5e166d8..5dfc0348 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOverlaySettings.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOverlaySettings.html @@ -825,7 +825,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOverlayViewController.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOverlayViewController.html index 40b01161..b3148d55 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOverlayViewController.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBOverlayViewController.html @@ -843,7 +843,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessor.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessor.html index b3173c53..9d81f166 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessor.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessor.html @@ -881,7 +881,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessorResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessorResult.html index 037f8d91..05e23557 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessorResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessorResult.html @@ -781,7 +781,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPassportRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPassportRecognizer.html index 632807d7..816e9706 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPassportRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPassportRecognizer.html @@ -791,7 +791,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPassportRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPassportRecognizerResult.html index a8a7f22c..7e83b648 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPassportRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPassportRecognizerResult.html @@ -784,7 +784,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPosition.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPosition.html index 4541a004..ac05820f 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPosition.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBPosition.html @@ -1136,7 +1136,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessor.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessor.html index 27e58333..d8950c77 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessor.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessor.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessorGroup.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessorGroup.html index 2fd4a707..9ba758bb 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessorGroup.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessorGroup.html @@ -861,7 +861,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessorResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessorResult.html index 6c58fc68..10eaf200 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessorResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBProcessorResult.html @@ -781,7 +781,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBQuadrangle.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBQuadrangle.html index ab1ff924..9f5e9d0f 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBQuadrangle.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBQuadrangle.html @@ -1055,7 +1055,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizer.html index 3ea0b3af..e5c6a3b0 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizer.html @@ -786,7 +786,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerCollection.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerCollection.html index 7150b8ad..8d7e9c92 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerCollection.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerCollection.html @@ -964,7 +964,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerResult.html index ce7e19ea..ee865a04 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerResult.html @@ -781,7 +781,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunner.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunner.html index a0cfb56e..33599a4e 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunner.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunner.html @@ -1184,7 +1184,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerMetadataDelegates.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerMetadataDelegates.html index 1a9024ef..0059b581 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerMetadataDelegates.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerMetadataDelegates.html @@ -882,7 +882,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html index ef283c4a..62a9d45e 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html @@ -882,7 +882,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSubview.html index 1b034383..f8862371 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSubview.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizer.html index fd41f2f7..fbd6cb2b 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizer.html @@ -846,7 +846,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizerResult.html index 4e8717f2..d0361303 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizerResult.html @@ -782,7 +782,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTapToFocusSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTapToFocusSubview.html index 924da94c..8fcff892 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTapToFocusSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTapToFocusSubview.html @@ -832,7 +832,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingClass.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingClass.html index 655c19df..03f7accd 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingClass.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingClass.html @@ -986,7 +986,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizer.html index dfaf4be2..0ce0ede5 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizer.html @@ -849,7 +849,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizerResult.html index e459fa01..446a6566 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizerResult.html @@ -783,7 +783,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlCombinedRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlCombinedRecognizer.html index b16eed7d..7af44bfc 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlCombinedRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlCombinedRecognizer.html @@ -937,7 +937,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlCombinedRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlCombinedRecognizerResult.html index 9695ab83..1e4b73df 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlCombinedRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlCombinedRecognizerResult.html @@ -1295,7 +1295,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlRecognizer.html index 7c9d2883..5481cde5 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlRecognizer.html @@ -859,7 +859,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlRecognizerResult.html index d8087907..3f8384b5 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBUsdlRecognizerResult.html @@ -1291,7 +1291,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBViewControllerFactory.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBViewControllerFactory.html index e9b3dfab..1d58260a 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBViewControllerFactory.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBViewControllerFactory.html @@ -791,7 +791,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBVisaRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBVisaRecognizer.html index ab6edf8a..44c3641c 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBVisaRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBVisaRecognizer.html @@ -790,7 +790,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBVisaRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBVisaRecognizerResult.html index dd8e7420..d9ea71fc 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBVisaRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Classes/MBVisaRecognizerResult.html @@ -784,7 +784,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Constants.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Constants.html index c50781bf..bf6459c9 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Constants.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Constants.html @@ -939,7 +939,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums.html index 4a6998ff..454e9b91 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums.html @@ -1269,7 +1269,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraAutofocusRestriction.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraAutofocusRestriction.html index 84b3af5b..630fac97 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraAutofocusRestriction.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraAutofocusRestriction.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraPreset.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraPreset.html index 5b0d8c88..a8159dd9 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraPreset.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraPreset.html @@ -881,7 +881,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraType.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraType.html index d5efdd6f..81198407 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraType.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBCameraType.html @@ -785,7 +785,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDataMatchResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDataMatchResult.html index 97b40a37..cd113772 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDataMatchResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDataMatchResult.html @@ -802,7 +802,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDetectionStatus.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDetectionStatus.html index 77c7d355..6b42f661 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDetectionStatus.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDetectionStatus.html @@ -991,7 +991,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDocumentFaceDetectorType.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDocumentFaceDetectorType.html index 1062db28..4a57e618 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDocumentFaceDetectorType.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDocumentFaceDetectorType.html @@ -802,7 +802,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDocumentVerificationHighResImageState.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDocumentVerificationHighResImageState.html index e47df165..90242e8d 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDocumentVerificationHighResImageState.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBDocumentVerificationHighResImageState.html @@ -788,7 +788,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBFrameQualityEstimationMode.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBFrameQualityEstimationMode.html index 55443c19..84554278 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBFrameQualityEstimationMode.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBFrameQualityEstimationMode.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBMrtdDocumentType.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBMrtdDocumentType.html index 6e83bb7d..8c445413 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBMrtdDocumentType.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBMrtdDocumentType.html @@ -881,7 +881,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBMrtdSpecificationPreset.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBMrtdSpecificationPreset.html index c131426d..4ce4c9c3 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBMrtdSpecificationPreset.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBMrtdSpecificationPreset.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBOcrFont.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBOcrFont.html index d326c342..a4da25db 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBOcrFont.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBOcrFont.html @@ -3002,7 +3002,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBProcessingOrientation.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBProcessingOrientation.html index b59f4e00..e8c18f75 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBProcessingOrientation.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBProcessingOrientation.html @@ -849,7 +849,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBProcessorResultState.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBProcessorResultState.html index 98f801fe..8441bf6b 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBProcessorResultState.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBProcessorResultState.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBRecognitionMode.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBRecognitionMode.html index fa4f5541..864d3604 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBRecognitionMode.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBRecognitionMode.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBRecognizerResultState.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBRecognizerResultState.html index 72de7e49..f4b66211 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBRecognizerResultState.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBRecognizerResultState.html @@ -817,7 +817,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBUsdlKeys.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBUsdlKeys.html index 17bc52b9..caff972a 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBUsdlKeys.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Enums/MBUsdlKeys.html @@ -3490,7 +3490,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Functions.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Functions.html index 94de235c..1aa3e95e 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Functions.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Functions.html @@ -1732,7 +1732,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols.html index 42d86b50..38d429f3 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols.html @@ -3308,7 +3308,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdCombinedRecognizerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdCombinedRecognizerDelegate.html index 1f12d749..cbd39281 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdCombinedRecognizerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdCombinedRecognizerDelegate.html @@ -789,7 +789,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdOverlayViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdOverlayViewControllerDelegate.html index ff2bb1ae..71ac8b0b 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdOverlayViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdOverlayViewControllerDelegate.html @@ -905,7 +905,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdRecognizerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdRecognizerDelegate.html index d136d4f2..5588fa12 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdRecognizerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBBlinkIdRecognizerDelegate.html @@ -789,7 +789,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedFullDocumentImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedFullDocumentImageResult.html index 2c4dbbaf..5f5a783f 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedFullDocumentImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedFullDocumentImageResult.html @@ -801,7 +801,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedRecognizer.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedRecognizer.html index 067b6bcb..fdd2b269 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedRecognizer.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedRecognizer.html @@ -759,7 +759,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedRecognizerResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedRecognizerResult.html index 7ca3cb9d..b2d8db99 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedRecognizerResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBCombinedRecognizerResult.html @@ -809,7 +809,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerDelegate.html index dc0854b7..8c3721ae 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerDelegate.html @@ -789,7 +789,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html index 40782cce..e7fd9e11 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html @@ -793,7 +793,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerDelegate.html index 3b27c9fc..65fc0b11 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerDelegate.html @@ -919,7 +919,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html index 041af03c..1ecaaa2c 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html @@ -924,7 +924,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDigitalSignature.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDigitalSignature.html index 5af5bd45..a4865e85 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDigitalSignature.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDigitalSignature.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDigitalSignatureResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDigitalSignatureResult.html index a5724312..1fb53f9c 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDigitalSignatureResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDigitalSignatureResult.html @@ -801,7 +801,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentOverlayViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentOverlayViewControllerDelegate.html index c866c9d0..d9c3cbc7 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentOverlayViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentOverlayViewControllerDelegate.html @@ -925,7 +925,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html index ec6b1f56..6e1159bd 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html @@ -987,7 +987,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentVerificationSubviewDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentVerificationSubviewDelegate.html index d3364e84..8c259886 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentVerificationSubviewDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBDocumentVerificationSubviewDelegate.html @@ -757,7 +757,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeFaceImage.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeFaceImage.html index db2ff8da..a45890ea 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeFaceImage.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeFaceImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeFullDocumentImage.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeFullDocumentImage.html index d49275a5..bdc003fc 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeFullDocumentImage.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeFullDocumentImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeMrzImage.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeMrzImage.html index 1e6b4b99..8efca6ab 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeMrzImage.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeMrzImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeSignatureImage.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeSignatureImage.html index 42574bec..dd9e6df6 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeSignatureImage.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodeSignatureImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedCombinedFullDocumentImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedCombinedFullDocumentImageResult.html index f8757755..d82ee280 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedCombinedFullDocumentImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedCombinedFullDocumentImageResult.html @@ -801,7 +801,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedFaceImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedFaceImageResult.html index aae4ca09..42091c58 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedFaceImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedFaceImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedFullDocumentImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedFullDocumentImageResult.html index cf395ee7..e5a0123e 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedFullDocumentImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedFullDocumentImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedMrzImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedMrzImageResult.html index fcbdc561..388e06bd 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedMrzImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedMrzImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedSignatureImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedSignatureImageResult.html index 3bdbbc01..4d7e7021 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedSignatureImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBEncodedSignatureImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImage.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImage.html index f0b5e03d..d65e1295 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImage.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImageDpi.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImageDpi.html index be99c10e..4780f36e 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImageDpi.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImageDpi.html @@ -769,7 +769,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImageResult.html index 0ce7859b..f411d1c4 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFaceImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html index ca22ceaa..8bad6a34 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html @@ -764,7 +764,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html index d4cf29b4..9c600d51 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html @@ -765,7 +765,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFrameGrabberRecognizerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFrameGrabberRecognizerDelegate.html index 6c17caa9..e8058d2d 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFrameGrabberRecognizerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFrameGrabberRecognizerDelegate.html @@ -822,7 +822,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImage.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImage.html index 61c4d9c7..1338ce2e 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImage.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageDpi.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageDpi.html index f1c4315a..e595c356 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageDpi.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageDpi.html @@ -769,7 +769,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageExtensionFactors.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageExtensionFactors.html index 79d698ab..faa83049 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageExtensionFactors.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageExtensionFactors.html @@ -768,7 +768,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageResult.html index 034d6c16..ef42d4ac 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBFullDocumentImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareDetection.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareDetection.html index 75d5884c..ef3a3430 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareDetection.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareDetection.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareRecognizerRunnerDelegate.html index 2fb2e599..f549cafc 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareRecognizerRunnerDelegate.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html index 0ec08c47..3e5e9c6b 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html @@ -765,7 +765,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBImageProcessingRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBImageProcessingRecognizerRunnerDelegate.html index 21ba49d1..ebc239e7 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBImageProcessingRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBImageProcessingRecognizerRunnerDelegate.html @@ -764,7 +764,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzFilter.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzFilter.html index feeea9a9..88a8b353 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzFilter.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzFilter.html @@ -766,7 +766,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImage.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImage.html index 252184a6..9005f159 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImage.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImageDpi.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImageDpi.html index f01cc05f..b4034b43 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImageDpi.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImageDpi.html @@ -769,7 +769,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImageResult.html index 6122aae2..a7fe9356 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBMrzImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBNativeResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBNativeResult.html index 41412a8b..2d3e05ca 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBNativeResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBNativeResult.html @@ -801,7 +801,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerDelegate.html index ed55fbb6..7b177219 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerDelegate.html @@ -756,7 +756,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html index ca12b51c..0e70c8f9 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html @@ -758,7 +758,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOverlayContainerViewController.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOverlayContainerViewController.html index 5470e231..3455443e 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOverlayContainerViewController.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBOverlayContainerViewController.html @@ -958,7 +958,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBPointDetectorSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBPointDetectorSubview.html index 0649b1a5..55546205 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBPointDetectorSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBPointDetectorSubview.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBQuadDetectorSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBQuadDetectorSubview.html index 385b398f..270522a3 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBQuadDetectorSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBQuadDetectorSubview.html @@ -754,7 +754,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewController.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewController.html index c211913e..9b32a198 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewController.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewController.html @@ -1173,7 +1173,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewControllerDelegate.html index b1edaa62..9be744cd 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewControllerDelegate.html @@ -1067,7 +1067,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBResultSubview.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBResultSubview.html index a076f68f..f4d97817 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBResultSubview.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBResultSubview.html @@ -753,7 +753,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerDelegate.html index 1c53896a..cc194b49 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerDelegate.html @@ -799,7 +799,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html index c9ee0207..1ece83a5 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html @@ -801,7 +801,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImage.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImage.html index 8bff303b..e9d82ab8 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImage.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImage.html @@ -767,7 +767,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImageDpi.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImageDpi.html index 83ffb894..20022d2b 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImageDpi.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImageDpi.html @@ -769,7 +769,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImageResult.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImageResult.html index 3465f2b8..ed02ca27 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImageResult.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSignatureImageResult.html @@ -763,7 +763,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBStringProcessingRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBStringProcessingRecognizerRunnerDelegate.html index f736f599..7472b09a 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBStringProcessingRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBStringProcessingRecognizerRunnerDelegate.html @@ -764,7 +764,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSubviewDelegate.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSubviewDelegate.html index fb92dbbc..81469e64 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSubviewDelegate.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBSubviewDelegate.html @@ -785,7 +785,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBTemplatingClassifier.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBTemplatingClassifier.html index a80a3a26..64f48fbe 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBTemplatingClassifier.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Protocols/MBTemplatingClassifier.html @@ -757,7 +757,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Structs.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Structs.html index 1a8bf0b2..62ee8d1a 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Structs.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Structs.html @@ -750,7 +750,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Structs/_MBImageExtensionFactors.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Structs/_MBImageExtensionFactors.html index fd9b9523..6cafc1ec 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Structs/_MBImageExtensionFactors.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Structs/_MBImageExtensionFactors.html @@ -851,7 +851,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions.html index ff2a5adf..168f57f9 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions.html @@ -887,7 +887,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/CGLine.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/CGLine.html index f7edbcb8..1444f556 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/CGLine.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/CGLine.html @@ -760,7 +760,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/CGLine/.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/CGLine/.html index 91802e81..89be8dfb 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/CGLine/.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/CGLine/.html @@ -788,7 +788,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/MBImageExtensionFactors.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/MBImageExtensionFactors.html index 5e5fa8b5..d791f360 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/MBImageExtensionFactors.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/MBImageExtensionFactors.html @@ -756,7 +756,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html index e6cd3cdc..4c9b81cb 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html @@ -851,7 +851,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/index.html b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/index.html index 0bb2bea5..bfc32f2c 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/index.html +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/index.html @@ -801,7 +801,7 @@

    Using CocoaPods

    platform :ios, '8.0'
     target 'Your-App-Name' do
    -    pod 'PPBlinkID', '~> 5.1.0'
    +    pod 'PPBlinkID', '~> 5.1.1'
     end
     
    @@ -1296,13 +1296,13 @@

    BlinkID Recognizer

    -

    The MBBlinkIdRecognizer scans and extracts data from the front side of the US driver license or ID. -You can find the list of the currently supported US documents here. +

    The MBBlinkIdRecognizer scans and extracts data from the front side of the supported document. +You can find the list of the currently supported documents here. We will continue expanding this recognizer by adding support for new document types in the future. Star this repo to stay updated.

    -

    Use MBBlinkIdCombinedRecognizer for scanning both sides of the US driver license and ID. First, it scans and extracts data from the front, then scans and extracts data from the barcode on the back, and finally, combines results from both sides. The BlinkIDCombinedRecognizer also performs data matching and returns a flag if the extracted data captured from the front side matches the data from the barcode on the back. -You can find the list of the currently supported US documents here. +

    Use MBBlinkIdCombinedRecognizer for scanning both sides of the supported document. First, it scans and extracts data from the front, then scans and extracts data from the barcode on the back, and finally, combines results from both sides. The BlinkIDCombinedRecognizer also performs data matching and returns a flag if the extracted data captured from the front side matches the data from the barcode on the back. +You can find the list of the currently supported documents here. We will continue expanding this recognizer by adding support for new document types in the future. Star this repo to stay updated.

    Troubleshooting

    Integration problems

    @@ -1404,7 +1404,7 @@

    Addit diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/search.json b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/search.json index c9e51c66..0769aa36 100644 --- a/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/search.json +++ b/docs/docsets/PPBlinkID.docset/Contents/Resources/Documents/search.json @@ -1 +1 @@ -{"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@top":{"name":"top","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@right":{"name":"right","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@bottom":{"name":"bottom","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@left":{"name":"left","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html":{"name":"_MBImageExtensionFactors","abstract":"

    Struct which describes image extension factors. Each factors denotes by what percentage is image extended."},"Functions.html#/c:@F@CGDeltaMake":{"name":"CGDeltaMake","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointWithDelta":{"name":"CGPointWithDelta","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointDistance":{"name":"CGPointDistance","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointAlongLine":{"name":"CGPointAlongLine","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointRotatedAroundPoint":{"name":"CGPointRotatedAroundPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineMake":{"name":"CGLineMake","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineEqualToLine":{"name":"CGLineEqualToLine","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineMidPoint":{"name":"CGLineMidPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineDirection":{"name":"CGLineDirection","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesAngle":{"name":"CGLinesAngle","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesIntersectAtPoint":{"name":"CGLinesIntersectAtPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineLength":{"name":"CGLineLength","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineScale":{"name":"CGLineScale","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineTranslate":{"name":"CGLineTranslate","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineScaleOnMidPoint":{"name":"CGLineScaleOnMidPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineDelta":{"name":"CGLineDelta","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesAreParallel":{"name":"CGLinesAreParallel","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectTopLeftPoint":{"name":"CGRectTopLeftPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectTopRightPoint":{"name":"CGRectTopRightPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectBottomLeftPoint":{"name":"CGRectBottomLeftPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectBottomRightPoint":{"name":"CGRectBottomRightPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectResize":{"name":"CGRectResize","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectInsetEdge":{"name":"CGRectInsetEdge","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectStackedWithinRectFromEdge":{"name":"CGRectStackedWithinRectFromEdge","abstract":"

    Calculates the stacking of rectangles within a larger rectangle."},"Functions.html#/c:@F@CGRectCenterPoint":{"name":"CGRectCenterPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectClosestTwoCornerPoints":{"name":"CGRectClosestTwoCornerPoints","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineIntersectsRectAtPoint":{"name":"CGLineIntersectsRectAtPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGControlPointsForArcBetweenPointsWithRadius":{"name":"CGControlPointsForArcBetweenPointsWithRadius","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@scanningRegionForFrameInBounds":{"name":"scanningRegionForFrameInBounds","abstract":"

    Undocumented

    "},"Functions.html#/c:MBImageExtensionFactors.h@F@MBMakeImageExtensionFactors":{"name":"MBMakeImageExtensionFactors","abstract":"

    Method which creates a image extension factors structure

    "},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@top":{"name":"top","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@right":{"name":"right","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@bottom":{"name":"bottom","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@left":{"name":"left","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html":{"name":"_MBImageExtensionFactors","abstract":"

    Struct which describes image extension factors. Each factors denotes by what percentage is image extended.","parent_name":"MBImageExtensionFactors"},"Type Definitions/CGLine/.html#/c:@SA@CGLine@FI@point1":{"name":"point1","abstract":"

    Undocumented

    "},"Type Definitions/CGLine/.html#/c:@SA@CGLine@FI@point2":{"name":"point2","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBException.h@T@MBExceptionName":{"name":"MBExceptionName","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBGeometry.h@T@CGDelta":{"name":"CGDelta","abstract":"

    Undocumented

    "},"Type Definitions/CGLine.html":{"name":"CGLine","abstract":"

    Undocumented

    "},"Type Definitions/MBImageExtensionFactors.html":{"name":"MBImageExtensionFactors","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBRecognizerRunnerViewController.h@T@MBCaptureHighResImage":{"name":"MBCaptureHighResImage","abstract":"

    Block for returning high resolution MBImage photo with capture or still output

    "},"Protocols/MBTemplatingClassifier.html#/c:objc(pl)MBTemplatingClassifier(im)classify":{"name":"-classify","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingClassifier"},"Protocols/MBSubviewDelegate.html#/c:objc(pl)MBSubviewDelegate(im)subviewAnimationDidStart:":{"name":"-subviewAnimationDidStart:","abstract":"

    Delegate method called when animation starts

    ","parent_name":"MBSubviewDelegate"},"Protocols/MBSubviewDelegate.html#/c:objc(pl)MBSubviewDelegate(im)subviewAnimationDidFinish:":{"name":"-subviewAnimationDidFinish:","abstract":"

    Delegate method called when animation finishes

    ","parent_name":"MBSubviewDelegate"},"Protocols/MBStringProcessingRecognizerRunnerDelegate.html#/c:objc(pl)MBStringProcessingRecognizerRunnerDelegate(im)recognizerRunner:didFinishProcessingString:":{"name":"-recognizerRunner:didFinishProcessingString:","abstract":"

    Called when MBRecognizerRunner finishes processing given string.","parent_name":"MBStringProcessingRecognizerRunnerDelegate"},"Protocols/MBSignatureImageResult.html#/c:objc(pl)MBSignatureImageResult(py)signatureImage":{"name":"signatureImage","abstract":"

    image of the signature if enabled with MBSignatureImage returnSignatureImage property.

    ","parent_name":"MBSignatureImageResult"},"Protocols/MBSignatureImageDpi.html#/c:objc(pl)MBSignatureImageDpi(py)signatureImageDpi":{"name":"signatureImageDpi","abstract":"

    Property for setting DPI for signature images","parent_name":"MBSignatureImageDpi"},"Protocols/MBSignatureImage.html#/c:objc(pl)MBSignatureImage(py)returnSignatureImage":{"name":"returnSignatureImage","abstract":"

    Sets whether signature image from ID card should be extracted.

    ","parent_name":"MBSignatureImage"},"Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBScanningRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishScanningWithState:":{"name":"-recognizerRunnerViewController:didFinishScanningWithState:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBScanningRecognizerRunnerViewControllerDelegate"},"Protocols/MBScanningRecognizerRunnerDelegate.html#/c:objc(pl)MBScanningRecognizerRunnerDelegate(im)recognizerRunner:didFinishScanningWithState:":{"name":"-recognizerRunner:didFinishScanningWithState:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBScanningRecognizerRunnerDelegate"},"Protocols/MBResultSubview.html#/c:objc(pl)MBResultSubview(im)scanningFinishedWithState:":{"name":"-scanningFinishedWithState:","abstract":"

    This method should be called when MBRecognizerResultState is obtained and reslt state need to be drawn/redrawn.

    ","parent_name":"MBResultSubview"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerUnauthorizedCamera:":{"name":"-recognizerRunnerViewControllerUnauthorizedCamera:","abstract":"

    Scanning library requested authorization for Camera access from the user, but the user declined it.","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFindError:":{"name":"-recognizerRunnerViewController:didFindError:","abstract":"

    Scanning library found an error. The error object is returned and contains","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidClose:":{"name":"-recognizerRunnerViewControllerDidClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerWillPresentHelp:":{"name":"-recognizerRunnerViewControllerWillPresentHelp:","abstract":"

    Called when Scanning library will display help. This can happen when the user presses","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidResumeScanning:":{"name":"-recognizerRunnerViewControllerDidResumeScanning:","abstract":"

    Called when Scanning library is resuming scanning.

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidStopScanning:":{"name":"-recognizerRunnerViewControllerDidStopScanning:","abstract":"

    Called when Scanning library is stopped scanning.

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(py)autorotate":{"name":"autorotate","abstract":"

    MBRecognizerRunnerViewController’s shouldAutorotate will return this value.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    MBRecognizerRunnerViewController’s supportedInterfaceOrientations will return this value.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)pauseScanning":{"name":"-pauseScanning","abstract":"

    Pause scanning without dismissing the camera view.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)isScanningPaused":{"name":"-isScanningPaused","abstract":"

    Retrieve the current state of scanning.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resumeScanningAndResetState:":{"name":"-resumeScanningAndResetState:","abstract":"

    Resumes scanning. Optionally, internal state of recognizers can be reset in the process.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resumeCamera":{"name":"-resumeCamera","abstract":"

    Resumes camera session. This method is automatically called in viewWillAppear when ScanningViewController enters screen.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)pauseCamera":{"name":"-pauseCamera","abstract":"

    Pauses camera session. This method is automatically called in viewDidDissapear when ScanningViewController exits screen.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)isCameraPaused":{"name":"-isCameraPaused","abstract":"

    Retrieve the current state of camera.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)playScanSuccessSound":{"name":"-playScanSuccessSound","abstract":"

    Play scan sound.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)willSetTorchOn:":{"name":"-willSetTorchOn:","abstract":"

    Call to turn on torch without camera overlay

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resetState":{"name":"-resetState","abstract":"
    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)captureHighResImage:":{"name":"-captureHighResImage:","abstract":"

    Method with block for getting high resoultion images

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBQuadDetectorSubview.html#/c:objc(pl)MBQuadDetectorSubview(im)detectionFinishedWithDisplayableQuad:":{"name":"-detectionFinishedWithDisplayableQuad:","abstract":"

    This method should be called when MBDisplayableQuadDetection is obtained and quad need to be drawn/redrawn.

    ","parent_name":"MBQuadDetectorSubview"},"Protocols/MBPointDetectorSubview.html#/c:objc(pl)MBPointDetectorSubview(im)detectionFinishedWithDisplayablePoints:":{"name":"-detectionFinishedWithDisplayablePoints:","abstract":"

    This method should be called when MBDisplayablePointsDetection is obtained and points need to be drawn/redrawn.

    ","parent_name":"MBPointDetectorSubview"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewControllerWillCloseCamera:":{"name":"-overlayViewControllerWillCloseCamera:","abstract":"

    Notification sent when Overlay View Controller wants to close camera, for example,","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewControllerShouldDisplayTorch:":{"name":"-overlayViewControllerShouldDisplayTorch:","abstract":"

    Overlay View Controller should ask it’s delegete if it’s necessary to display Torch (Light) button.","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewController:willSetTorch:":{"name":"-overlayViewController:willSetTorch:","abstract":"

    Overlay View Controller must notify it’s delegete to set the torch mode to On or Off

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)shouldDisplayHelpButton":{"name":"-shouldDisplayHelpButton","abstract":"

    If help mechanism is implemented using PPScanDelegate’s scanningViewControllerWillPresentHelp method,","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isStatusBarPresented":{"name":"-isStatusBarPresented","abstract":"

    Check if status bar is hidden or showed

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isTorchOn":{"name":"-isTorchOn","abstract":"

    Overlay View Controller can ask it’s delegete about the status of Torch

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isCameraAuthorized":{"name":"-isCameraAuthorized","abstract":"

    Overlay View Controller can ask it’s owner whether camera was authorized

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBOcrRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didObtainOcrResult:withResultName:":{"name":"-recognizerRunnerViewController:didObtainOcrResult:withResultName:","abstract":"

    Called when scanning library has MBOcrLayout ready to be displayed on UI.","parent_name":"MBOcrRecognizerRunnerViewControllerDelegate"},"Protocols/MBOcrRecognizerRunnerDelegate.html#/c:objc(pl)MBOcrRecognizerRunnerDelegate(im)recognizerRunner:didObtainOcrResult:withResultName:":{"name":"-recognizerRunner:didObtainOcrResult:withResultName:","abstract":"

    Called when Scanning library has MBOcrLayout available and ready to be displayed on UI.","parent_name":"MBOcrRecognizerRunnerDelegate"},"Protocols/MBNativeResult.html#/c:objc(pl)MBNativeResult(im)nativeResult":{"name":"-nativeResult","abstract":"

    Returns the native object containing the result. For example, for MBDateResult, this method","parent_name":"MBNativeResult"},"Protocols/MBNativeResult.html#/c:objc(pl)MBNativeResult(im)stringResult":{"name":"-stringResult","abstract":"

    Returns the string version of the result. For example, for MBDateResult, this method","parent_name":"MBNativeResult"},"Protocols/MBMrzImageResult.html#/c:objc(pl)MBMrzImageResult(py)mrzImage":{"name":"mrzImage","abstract":"

    face image from the document if enabled with MBMrzImage returnMrzImage property.

    ","parent_name":"MBMrzImageResult"},"Protocols/MBMrzImageDpi.html#/c:objc(pl)MBMrzImageDpi(py)mrzImageDpi":{"name":"mrzImageDpi","abstract":"

    Property for setting DPI for mrz images","parent_name":"MBMrzImageDpi"},"Protocols/MBMrzImage.html#/c:objc(pl)MBMrzImage(py)returnMrzImage":{"name":"returnMrzImage","abstract":"

    Sets whether MRZ image from ID card should be extracted

    ","parent_name":"MBMrzImage"},"Protocols/MBMrzFilter.html#/c:objc(pl)MBMrzFilter(im)mrzFilter":{"name":"-mrzFilter","abstract":"

    Determines whether document should be processed or it is filtered out.

    ","parent_name":"MBMrzFilter"},"Protocols/MBImageProcessingRecognizerRunnerDelegate.html#/c:objc(pl)MBImageProcessingRecognizerRunnerDelegate(im)recognizerRunner:didFinishProcessingImage:":{"name":"-recognizerRunner:didFinishProcessingImage:","abstract":"

    Called when MBRecognizerRunner finishes processing given image.","parent_name":"MBImageProcessingRecognizerRunnerDelegate"},"Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBGlareRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishGlareDetectionWithResult:":{"name":"-recognizerRunnerViewController:didFinishGlareDetectionWithResult:","abstract":"

    Called when scanning library finishes glare detection.","parent_name":"MBGlareRecognizerRunnerViewControllerDelegate"},"Protocols/MBGlareRecognizerRunnerDelegate.html#/c:objc(pl)MBGlareRecognizerRunnerDelegate(im)recognizerRunner:didFinishGlareDetectionWithResult:":{"name":"-recognizerRunner:didFinishGlareDetectionWithResult:","abstract":"

    Called when scanning library finishes glare detection.","parent_name":"MBGlareRecognizerRunnerDelegate"},"Protocols/MBGlareDetection.html#/c:objc(pl)MBGlareDetection(py)detectGlare":{"name":"detectGlare","abstract":"

    Defines if glare detection should be turned on/off.

    ","parent_name":"MBGlareDetection"},"Protocols/MBFullDocumentImageResult.html#/c:objc(pl)MBFullDocumentImageResult(py)fullDocumentImage":{"name":"fullDocumentImage","abstract":"

    full document image if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBFullDocumentImageResult"},"Protocols/MBFullDocumentImageExtensionFactors.html#/c:objc(pl)MBFullDocumentImageExtensionFactors(py)fullDocumentImageExtensionFactors":{"name":"fullDocumentImageExtensionFactors","abstract":"

    Image extension factors for full document image.

    ","parent_name":"MBFullDocumentImageExtensionFactors"},"Protocols/MBFullDocumentImageDpi.html#/c:objc(pl)MBFullDocumentImageDpi(py)fullDocumentImageDpi":{"name":"fullDocumentImageDpi","abstract":"

    Property for setting DPI for full document images","parent_name":"MBFullDocumentImageDpi"},"Protocols/MBFullDocumentImage.html#/c:objc(pl)MBFullDocumentImage(py)returnFullDocumentImage":{"name":"returnFullDocumentImage","abstract":"

    Sets whether full document image of ID card should be extracted.

    ","parent_name":"MBFullDocumentImage"},"Protocols/MBFrameGrabberRecognizerDelegate.html#/c:objc(pl)MBFrameGrabberRecognizerDelegate(im)onFrameAvailable:isFocused:frameQuality:":{"name":"-onFrameAvailable:isFocused:frameQuality:","abstract":"

    Called when {FrameGrabberRecognizer} received new frame for processing.","parent_name":"MBFrameGrabberRecognizerDelegate"},"Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBFirstSideFinishedRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidFinishRecognitionOfFirstSide:":{"name":"-recognizerRunnerViewControllerDidFinishRecognitionOfFirstSide:","abstract":"

    Called when scanning library finishes performing recognition of the first side of the document.","parent_name":"MBFirstSideFinishedRecognizerRunnerViewControllerDelegate"},"Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html#/c:objc(pl)MBFirstSideFinishedRecognizerRunnerDelegate(im)recognizerRunnerDidFinishRecognitionOfFirstSide:":{"name":"-recognizerRunnerDidFinishRecognitionOfFirstSide:","abstract":"

    Called when scanning library finishes performing recognition of the first side of the document.","parent_name":"MBFirstSideFinishedRecognizerRunnerDelegate"},"Protocols/MBFaceImageResult.html#/c:objc(pl)MBFaceImageResult(py)faceImage":{"name":"faceImage","abstract":"

    face image from the document if enabled with MBFaceImage returnFaceImage property.

    ","parent_name":"MBFaceImageResult"},"Protocols/MBFaceImageDpi.html#/c:objc(pl)MBFaceImageDpi(py)faceImageDpi":{"name":"faceImageDpi","abstract":"

    Property for setting DPI for face images","parent_name":"MBFaceImageDpi"},"Protocols/MBFaceImage.html#/c:objc(pl)MBFaceImage(py)returnFaceImage":{"name":"returnFaceImage","abstract":"

    Sets whether face image from ID card should be extracted

    ","parent_name":"MBFaceImage"},"Protocols/MBEncodedSignatureImageResult.html#/c:objc(pl)MBEncodedSignatureImageResult(py)encodedSignatureImage":{"name":"encodedSignatureImage","abstract":"

    JPEG-encoded image of the signature from the document. Available only if enabled with MBEncodeSignatureImage encodeSignatureImage property.

    ","parent_name":"MBEncodedSignatureImageResult"},"Protocols/MBEncodedMrzImageResult.html#/c:objc(pl)MBEncodedMrzImageResult(py)encodedMrzImage":{"name":"encodedMrzImage","abstract":"

    JPEG-encoded MRZ image from the document if enabled with MBEncodeMrzImage encodeMrzImage property.

    ","parent_name":"MBEncodedMrzImageResult"},"Protocols/MBEncodedFullDocumentImageResult.html#/c:objc(pl)MBEncodedFullDocumentImageResult(py)encodedFullDocumentImage":{"name":"encodedFullDocumentImage","abstract":"

    JPEG-encoded full document image if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedFullDocumentImageResult"},"Protocols/MBEncodedFaceImageResult.html#/c:objc(pl)MBEncodedFaceImageResult(py)encodedFaceImage":{"name":"encodedFaceImage","abstract":"

    JPEG-encoded face image from the document if enabled with MBEncodeFaceImage encodeFaceImage property.

    ","parent_name":"MBEncodedFaceImageResult"},"Protocols/MBEncodedCombinedFullDocumentImageResult.html#/c:objc(pl)MBEncodedCombinedFullDocumentImageResult(py)encodedFullDocumentFrontImage":{"name":"encodedFullDocumentFrontImage","abstract":"

    JPEG-encoded full document image of the front side of the document. Available only if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedCombinedFullDocumentImageResult"},"Protocols/MBEncodedCombinedFullDocumentImageResult.html#/c:objc(pl)MBEncodedCombinedFullDocumentImageResult(py)encodedFullDocumentBackImage":{"name":"encodedFullDocumentBackImage","abstract":"

    JPEG-encoded full document image of the back side of the document. Available only if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedCombinedFullDocumentImageResult"},"Protocols/MBEncodeSignatureImage.html#/c:objc(pl)MBEncodeSignatureImage(py)encodeSignatureImage":{"name":"encodeSignatureImage","abstract":"

    Sets whether image of signature on document should be extracted and JPEG-encoded.

    ","parent_name":"MBEncodeSignatureImage"},"Protocols/MBEncodeMrzImage.html#/c:objc(pl)MBEncodeMrzImage(py)encodeMrzImage":{"name":"encodeMrzImage","abstract":"

    Sets whether MRZ image should be extracted from document and JPEG-encoded.

    ","parent_name":"MBEncodeMrzImage"},"Protocols/MBEncodeFullDocumentImage.html#/c:objc(pl)MBEncodeFullDocumentImage(py)encodeFullDocumentImage":{"name":"encodeFullDocumentImage","abstract":"

    Sets whether full document image should be extracted and JPEG-encoded.

    ","parent_name":"MBEncodeFullDocumentImage"},"Protocols/MBEncodeFaceImage.html#/c:objc(pl)MBEncodeFaceImage(py)encodeFaceImage":{"name":"encodeFaceImage","abstract":"

    Sets whether face image should be extracted from document and JPEG-encoded.

    ","parent_name":"MBEncodeFaceImage"},"Protocols/MBDocumentVerificationSubviewDelegate.html#/c:objc(pl)MBDocumentVerificationSubviewDelegate(im)documentVerificationSubviewDidFinishAnimation:":{"name":"-documentVerificationSubviewDidFinishAnimation:","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubviewDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidFinishScanning:state:":{"name":"-documentVerificationOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidTapClose:":{"name":"-documentVerificationOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidFinishScanningFirstSide:":{"name":"-documentVerificationOverlayViewControllerDidFinishScanningFirstSide:","abstract":"

    Called when scanning library finished scanning first side of the document

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidCaptureHighResolutionImage:highResImage:state:":{"name":"-documentVerificationOverlayViewControllerDidCaptureHighResolutionImage:highResImage:state:","abstract":"

    Scanning library did output high resolution image

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidFinishScanning:state:":{"name":"-documentOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidTapClose:":{"name":"-documentOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidCaptureHighResolutionImage:highResImage:":{"name":"-documentOverlayViewControllerDidCaptureHighResolutionImage:highResImage:","abstract":"

    Scanning library did output high resolution image

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDigitalSignatureResult.html#/c:objc(pl)MBDigitalSignatureResult(py)digitalSignature":{"name":"digitalSignature","abstract":"

    Digital signature of the recognition result. Available only if enabled with MBDigitalSignature signResult property.

    ","parent_name":"MBDigitalSignatureResult"},"Protocols/MBDigitalSignatureResult.html#/c:objc(pl)MBDigitalSignatureResult(py)digitalSignatureVersion":{"name":"digitalSignatureVersion","abstract":"

    Version of the digital signature. Available only if enabled with MBDigitalSignature signResult property.

    ","parent_name":"MBDigitalSignatureResult"},"Protocols/MBDigitalSignature.html#/c:objc(pl)MBDigitalSignature(py)signResult":{"name":"signResult","abstract":"

    Whether or not recognition result should be signed.

    ","parent_name":"MBDigitalSignature"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad:":{"name":"-recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishDetectionWithDisplayablePoints:":{"name":"-recognizerRunnerViewController:didFinishDetectionWithDisplayablePoints:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidFailDetection:":{"name":"-recognizerRunnerViewControllerDidFailDetection:","abstract":"

    Called when Scanning library fails to detect any object with any of the currently active recognizers.

    ","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunner:didFinishDetectionWithDisplayableQuad:":{"name":"-recognizerRunner:didFinishDetectionWithDisplayableQuad:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunner:didFinishDetectionWithDisplayablePoints:":{"name":"-recognizerRunner:didFinishDetectionWithDisplayablePoints:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunnerDidFailDetection:":{"name":"-recognizerRunnerDidFailDetection:","abstract":"

    Called when Scanning library fails to detect any object with any of the currently active recognizers.

    ","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didOutputDebugImage:":{"name":"-recognizerRunnerViewController:didOutputDebugImage:","abstract":"

    Scanning library did output debug image","parent_name":"MBDebugRecognizerRunnerViewControllerDelegate"},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didOutputDebugText:":{"name":"-recognizerRunnerViewController:didOutputDebugText:","abstract":"

    Scanning library did output debug text","parent_name":"MBDebugRecognizerRunnerViewControllerDelegate"},"Protocols/MBDebugRecognizerRunnerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerDelegate(im)recognizerRunner:didOutputDebugImage:":{"name":"-recognizerRunner:didOutputDebugImage:","abstract":"

    Scanning library did output debug image","parent_name":"MBDebugRecognizerRunnerDelegate"},"Protocols/MBDebugRecognizerRunnerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerDelegate(im)recognizerRunner:didOutputDebugText:":{"name":"-recognizerRunner:didOutputDebugText:","abstract":"

    Scanning library did output debug text","parent_name":"MBDebugRecognizerRunnerDelegate"},"Protocols/MBCombinedRecognizerResult.html#/c:objc(pl)MBCombinedRecognizerResult(py)documentDataMatch":{"name":"documentDataMatch","abstract":"

    Returns MBDataMatchResultSuccess if data from scanned parts/sides of the document match,","parent_name":"MBCombinedRecognizerResult"},"Protocols/MBCombinedRecognizerResult.html#/c:objc(pl)MBCombinedRecognizerResult(py)scanningFirstSideDone":{"name":"scanningFirstSideDone","abstract":"

    Returns YES if recognizer has finished scanning first side and is now scanning back side,","parent_name":"MBCombinedRecognizerResult"},"Protocols/MBCombinedRecognizer.html#/c:objc(pl)MBCombinedRecognizer(py)combinedResult":{"name":"combinedResult","abstract":"

    Combined result which is associated with this combined recognizer.

    ","parent_name":"MBCombinedRecognizer"},"Protocols/MBCombinedFullDocumentImageResult.html#/c:objc(pl)MBCombinedFullDocumentImageResult(py)fullDocumentFrontImage":{"name":"fullDocumentFrontImage","abstract":"

    front side image of the document if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBCombinedFullDocumentImageResult"},"Protocols/MBCombinedFullDocumentImageResult.html#/c:objc(pl)MBCombinedFullDocumentImageResult(py)fullDocumentBackImage":{"name":"fullDocumentBackImage","abstract":"

    back side image of the document if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBCombinedFullDocumentImageResult"},"Protocols/MBBlinkIdRecognizerDelegate.html#/c:objc(pl)MBBlinkIdRecognizerDelegate(im)onImageAvailable:":{"name":"-onImageAvailable:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerDelegate"},"Protocols/MBBlinkIdRecognizerDelegate.html#/c:objc(pl)MBBlinkIdRecognizerDelegate(im)onDocumentSupportStatus:":{"name":"-onDocumentSupportStatus:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidFinishScanning:state:":{"name":"-blinkIdOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidTapClose:":{"name":"-blinkIdOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidFinishScanningFirstSide:":{"name":"-blinkIdOverlayViewControllerDidFinishScanningFirstSide:","abstract":"

    Called when scanning library finished scanning first side of the document

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html#/c:objc(pl)MBBlinkIdCombinedRecognizerDelegate(im)onCombinedImageAvailable:":{"name":"-onCombinedImageAvailable:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html#/c:objc(pl)MBBlinkIdCombinedRecognizerDelegate(im)onCombinedDocumentSupportStatus:":{"name":"-onCombinedDocumentSupportStatus:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html":{"name":"MBBlinkIdCombinedRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html":{"name":"MBBlinkIdOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBBlinkIdRecognizerDelegate.html":{"name":"MBBlinkIdRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBCombinedFullDocumentImageResult.html":{"name":"MBCombinedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBCombinedRecognizer.html":{"name":"MBCombinedRecognizer","abstract":"

    Undocumented

    "},"Protocols/MBCombinedRecognizerResult.html":{"name":"MBCombinedRecognizerResult","abstract":"

    Undocumented

    "},"Protocols/MBDebugRecognizerRunnerDelegate.html":{"name":"MBDebugRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining debug metadata

    "},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html":{"name":"MBDebugRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining debug metadata

    "},"Protocols/MBDetectionRecognizerRunnerDelegate.html":{"name":"MBDetectionRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining detection results

    "},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html":{"name":"MBDetectionRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining detection results

    "},"Protocols/MBDigitalSignature.html":{"name":"MBDigitalSignature","abstract":"

    Undocumented

    "},"Protocols/MBDigitalSignatureResult.html":{"name":"MBDigitalSignatureResult","abstract":"

    Undocumented

    "},"Protocols/MBDocumentOverlayViewControllerDelegate.html":{"name":"MBDocumentOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html":{"name":"MBDocumentVerificationOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBDocumentVerificationSubviewDelegate.html":{"name":"MBDocumentVerificationSubviewDelegate","abstract":"

    Undocumented

    "},"Protocols/MBEncodeFaceImage.html":{"name":"MBEncodeFaceImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeFullDocumentImage.html":{"name":"MBEncodeFullDocumentImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeMrzImage.html":{"name":"MBEncodeMrzImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeSignatureImage.html":{"name":"MBEncodeSignatureImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodedCombinedFullDocumentImageResult.html":{"name":"MBEncodedCombinedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedFaceImageResult.html":{"name":"MBEncodedFaceImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedFullDocumentImageResult.html":{"name":"MBEncodedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedMrzImageResult.html":{"name":"MBEncodedMrzImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedSignatureImageResult.html":{"name":"MBEncodedSignatureImageResult","abstract":"

    Undocumented

    "},"Protocols/MBFaceImage.html":{"name":"MBFaceImage","abstract":"

    Undocumented

    "},"Protocols/MBFaceImageDpi.html":{"name":"MBFaceImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBFaceImageResult.html":{"name":"MBFaceImageResult","abstract":"

    Undocumented

    "},"Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html":{"name":"MBFirstSideFinishedRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html":{"name":"MBFirstSideFinishedRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFrameGrabberRecognizerDelegate.html":{"name":"MBFrameGrabberRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImage.html":{"name":"MBFullDocumentImage","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageDpi.html":{"name":"MBFullDocumentImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageExtensionFactors.html":{"name":"MBFullDocumentImageExtensionFactors","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageResult.html":{"name":"MBFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBGlareDetection.html":{"name":"MBGlareDetection","abstract":"

    Undocumented

    "},"Protocols/MBGlareRecognizerRunnerDelegate.html":{"name":"MBGlareRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html":{"name":"MBGlareRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBImageProcessingRecognizerRunnerDelegate.html":{"name":"MBImageProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBMrzFilter.html":{"name":"MBMrzFilter","abstract":"

    Undocumented

    "},"Protocols/MBMrzImage.html":{"name":"MBMrzImage","abstract":"

    Undocumented

    "},"Protocols/MBMrzImageDpi.html":{"name":"MBMrzImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBMrzImageResult.html":{"name":"MBMrzImageResult","abstract":"

    Undocumented

    "},"Protocols/MBNativeResult.html":{"name":"MBNativeResult","abstract":"

    Undocumented

    "},"Protocols/MBOcrRecognizerRunnerDelegate.html":{"name":"MBOcrRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining ocr results

    "},"Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html":{"name":"MBOcrRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining ocr results

    "},"Protocols/MBOverlayContainerViewController.html":{"name":"MBOverlayContainerViewController","abstract":"

    Overlay View Controller also needs to notify CameraViewController on certain events."},"Protocols/MBPointDetectorSubview.html":{"name":"MBPointDetectorSubview","abstract":"

    Protocol for processing MBDisplayablePointsDetection. Subviews implementing this protocol process and draw points on the screen (e.g. flashing dots)

    "},"Protocols/MBQuadDetectorSubview.html":{"name":"MBQuadDetectorSubview","abstract":"

    Protocol for processing MBDisplayableQuadDetection. Subviews implementing this protocol process and draw quad on the screen (e.g. viewfinder drawing document outlining)

    "},"Protocols/MBRecognizerRunnerViewController.html":{"name":"MBRecognizerRunnerViewController","abstract":"

    Protocol for View controllers which present camera and provide scanning features

    "},"Protocols/MBRecognizerRunnerViewControllerDelegate.html":{"name":"MBRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for MBRecognizerRunnerViewController actions

    "},"Protocols/MBResultSubview.html":{"name":"MBResultSubview","abstract":"

    Protocol for processing MBRecognizerResult. Subviews implementing this protocol process and draw result data on the screen (e.g. letting users know is scanning was successful)

    "},"Protocols/MBScanningRecognizerRunnerDelegate.html":{"name":"MBScanningRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html":{"name":"MBScanningRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBSignatureImage.html":{"name":"MBSignatureImage","abstract":"

    Undocumented

    "},"Protocols/MBSignatureImageDpi.html":{"name":"MBSignatureImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBSignatureImageResult.html":{"name":"MBSignatureImageResult","abstract":"

    Undocumented

    "},"Protocols/MBStringProcessingRecognizerRunnerDelegate.html":{"name":"MBStringProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBSubviewDelegate.html":{"name":"MBSubviewDelegate","abstract":"

    Protocol which all objects interested in receiving information about overlay subviews need to implement

    "},"Protocols/MBTemplatingClassifier.html":{"name":"MBTemplatingClassifier","abstract":"

    Undocumented

    "},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentType":{"name":"DocumentType","abstract":"

    Mandatory on all driver’s licenses. All barcodes which are using 3-track magnetic","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardVersionNumber":{"name":"StandardVersionNumber","abstract":"

    Mandatory on all driver’s licenses.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFamilyName":{"name":"CustomerFamilyName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFirstName":{"name":"CustomerFirstName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFullName":{"name":"CustomerFullName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DateOfBirth":{"name":"DateOfBirth","abstract":"

    Mandatory on all AAMVA, Magentic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Sex":{"name":"Sex","abstract":"

    Mandatory on all AAMVA, Magentic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@EyeColor":{"name":"EyeColor","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressStreet":{"name":"AddressStreet","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressCity":{"name":"AddressCity","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressJurisdictionCode":{"name":"AddressJurisdictionCode","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressPostalCode":{"name":"AddressPostalCode","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FullAddress":{"name":"FullAddress","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Height":{"name":"Height","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HeightIn":{"name":"HeightIn","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HeightCm":{"name":"HeightCm","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerMiddleName":{"name":"CustomerMiddleName","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HairColor":{"name":"HairColor","abstract":"

    Optional on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NameSuffix":{"name":"NameSuffix","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAFullName":{"name":"AKAFullName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAFamilyName":{"name":"AKAFamilyName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAGivenName":{"name":"AKAGivenName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKASuffixName":{"name":"AKASuffixName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightRange":{"name":"WeightRange","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightPounds":{"name":"WeightPounds","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightKilograms":{"name":"WeightKilograms","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerIdNumber":{"name":"CustomerIdNumber","abstract":"

    Mandatory on all AAMVA and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FamilyNameTruncation":{"name":"FamilyNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FirstNameTruncation":{"name":"FirstNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@MiddleNameTruncation":{"name":"MiddleNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PlaceOfBirth":{"name":"PlaceOfBirth","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressStreet2":{"name":"AddressStreet2","abstract":"

    Optional on all AAMVA barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@RaceEthnicity":{"name":"RaceEthnicity","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NamePrefix":{"name":"NamePrefix","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CountryIdentification":{"name":"CountryIdentification","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceStreetAddress":{"name":"ResidenceStreetAddress","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceStreetAddress2":{"name":"ResidenceStreetAddress2","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceCity":{"name":"ResidenceCity","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceJurisdictionCode":{"name":"ResidenceJurisdictionCode","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidencePostalCode":{"name":"ResidencePostalCode","abstract":"

    Optional on AAMVA 01 barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceFullAddress":{"name":"ResidenceFullAddress","abstract":"

    Optional on AAMVA 01 barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under18":{"name":"Under18","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under19":{"name":"Under19","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under21":{"name":"Under21","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@SocialSecurityNumber":{"name":"SocialSecurityNumber","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKASocialSecurityNumber":{"name":"AKASocialSecurityNumber","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAMiddleName":{"name":"AKAMiddleName","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAPrefixName":{"name":"AKAPrefixName","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@OrganDonor":{"name":"OrganDonor","abstract":"

    Optional on AAMVA 01, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Veteran":{"name":"Veteran","abstract":"

    Optional on AAMVA 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKADateOfBirth":{"name":"AKADateOfBirth","abstract":"

    Optional on AAMVA 01. (MMDDCCYY format)

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuerIdentificationNumber":{"name":"IssuerIdentificationNumber","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentExpirationDate":{"name":"DocumentExpirationDate","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVersionNumber":{"name":"JurisdictionVersionNumber","abstract":"

    Mandatory on all AAMVA and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVehicleClass":{"name":"JurisdictionVehicleClass","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionRestrictionCodes":{"name":"JurisdictionRestrictionCodes","abstract":"

    Mandatory on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionEndorsementCodes":{"name":"JurisdictionEndorsementCodes","abstract":"

    Mandatory on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentIssueDate":{"name":"DocumentIssueDate","abstract":"

    Mandatory on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FederalCommercialVehicleCodes":{"name":"FederalCommercialVehicleCodes","abstract":"

    Mandatory on AAMVA versions 02 and 03.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuingJurisdiction":{"name":"IssuingJurisdiction","abstract":"

    Optional on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardVehicleClassification":{"name":"StandardVehicleClassification","abstract":"

    Optional on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuingJurisdictionName":{"name":"IssuingJurisdictionName","abstract":"

    Optional on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardEndorsementCode":{"name":"StandardEndorsementCode","abstract":"

    Optional on all AAMVA barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardRestrictionCode":{"name":"StandardRestrictionCode","abstract":"

    Optional on all AAMVA barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVehicleClassificationDescription":{"name":"JurisdictionVehicleClassificationDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionEndorsmentCodeDescription":{"name":"JurisdictionEndorsmentCodeDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionRestrictionCodeDescription":{"name":"JurisdictionRestrictionCodeDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@InventoryControlNumber":{"name":"InventoryControlNumber","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CardRevisionDate":{"name":"CardRevisionDate","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentDiscriminator":{"name":"DocumentDiscriminator","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Magnetic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@LimitedDurationDocument":{"name":"LimitedDurationDocument","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AuditInformation":{"name":"AuditInformation","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ComplianceType":{"name":"ComplianceType","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssueTimestamp":{"name":"IssueTimestamp","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitExpirationDate":{"name":"PermitExpirationDate","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitIdentifier":{"name":"PermitIdentifier","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitIssueDate":{"name":"PermitIssueDate","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NumberOfDuplicates":{"name":"NumberOfDuplicates","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HAZMATExpirationDate":{"name":"HAZMATExpirationDate","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@MedicalIndicator":{"name":"MedicalIndicator","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NonResident":{"name":"NonResident","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@UniqueCustomerId":{"name":"UniqueCustomerId","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DataDiscriminator":{"name":"DataDiscriminator","abstract":"

    Optional on compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentExpirationMonth":{"name":"DocumentExpirationMonth","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentNonexpiring":{"name":"DocumentNonexpiring","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@SecurityVersion":{"name":"SecurityVersion","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateEmpty":{"name":"MBRecognizerResultStateEmpty","abstract":"

    Empty

    ","parent_name":"MBRecognizerResultState"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateUncertain":{"name":"MBRecognizerResultStateUncertain","abstract":"

    Uncertain

    ","parent_name":"MBRecognizerResultState"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateValid":{"name":"MBRecognizerResultStateValid","abstract":"

    Valid

    ","parent_name":"MBRecognizerResultState"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeDefault":{"name":"MBFrameQualityEstimationModeDefault","abstract":"

    Default. Frame quality estimation is ON if enabled recognizers require it by default.

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeOn":{"name":"MBFrameQualityEstimationModeOn","abstract":"

    Frame quality estimation is always on

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeOff":{"name":"MBFrameQualityEstimationModeOff","abstract":"

    Frame quality estimation is always off

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeDefault":{"name":"MBRecognitionModeDefault","abstract":"

    Classic, production mode. Results are returned after first valid scanning

    ","parent_name":"MBRecognitionMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeTest":{"name":"MBRecognitionModeTest","abstract":"

    Recognition Test. Results are never returned, recognition is performed repeatedly

    ","parent_name":"MBRecognitionMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeDetectionTest":{"name":"MBRecognitionModeDetectionTest","abstract":"

    Recognition Test. Results are never returned, only detection is performed repeatedly

    ","parent_name":"MBRecognitionMode"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateEmpty":{"name":"MBProcessorResultStateEmpty","abstract":"

    Empty

    ","parent_name":"MBProcessorResultState"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateUncertain":{"name":"MBProcessorResultStateUncertain","abstract":"

    Uncertain

    ","parent_name":"MBProcessorResultState"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateValid":{"name":"MBProcessorResultStateValid","abstract":"

    Valid

    ","parent_name":"MBProcessorResultState"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_AKZIDENZ_GROTESK":{"name":"MB_OCR_FONT_AKZIDENZ_GROTESK","abstract":"

    Akzidenz Grotesk font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARIAL":{"name":"MB_OCR_FONT_ARIAL","abstract":"

    Arial font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARIAL_BLACK":{"name":"MB_OCR_FONT_ARIAL_BLACK","abstract":"

    Arial black font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARNHEM":{"name":"MB_OCR_FONT_ARNHEM","abstract":"

    Arnhem font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_AVANT_GARDE":{"name":"MB_OCR_FONT_AVANT_GARDE","abstract":"

    Avant garde font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_BEMBO":{"name":"MB_OCR_FONT_BEMBO","abstract":"

    Bembo font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_BODONI":{"name":"MB_OCR_FONT_BODONI","abstract":"

    Bodoni font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CALIBRI":{"name":"MB_OCR_FONT_CALIBRI","abstract":"

    Calibri font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CALIBRI_BOLD":{"name":"MB_OCR_FONT_CALIBRI_BOLD","abstract":"

    Calibri bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CHAINPRINTER":{"name":"MB_OCR_FONT_CHAINPRINTER","abstract":"

    Chainprinter font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COMIC_SANS":{"name":"MB_OCR_FONT_COMIC_SANS","abstract":"

    Comic sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CONCERTO_ROUNDED_SG":{"name":"MB_OCR_FONT_CONCERTO_ROUNDED_SG","abstract":"

    Concerto rounded SG font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER":{"name":"MB_OCR_FONT_COURIER","abstract":"

    Courier font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_BOLD":{"name":"MB_OCR_FONT_COURIER_BOLD","abstract":"

    Courier bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_MEDIUM_BOLD":{"name":"MB_OCR_FONT_COURIER_MEDIUM_BOLD","abstract":"

    Courier medium bold","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_NEW_BOLD":{"name":"MB_OCR_FONT_COURIER_NEW_BOLD","abstract":"

    Courier new bold","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_NEW_CE":{"name":"MB_OCR_FONT_COURIER_NEW_CE","abstract":"

    Courier new ce font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_CONDENSED":{"name":"MB_OCR_FONT_COURIER_CONDENSED","abstract":"

    Courier censored font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_DEJAVU_SANS_MONO":{"name":"MB_OCR_FONT_DEJAVU_SANS_MONO","abstract":"

    Dejavu sans mono font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_DIN":{"name":"MB_OCR_FONT_DIN","abstract":"

    Din font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GROTESK_NO_2_SB_BOLD":{"name":"MB_OCR_FONT_EUROPA_GROTESK_NO_2_SB_BOLD","abstract":"

    Europa grotesk no 2 SB bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROSTILE":{"name":"MB_OCR_FONT_EUROSTILE","abstract":"

    Eurostile font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_F25_BANK_PRINTER_BOLD":{"name":"MB_OCR_FONT_F25_BANK_PRINTER_BOLD","abstract":"

    F25 bank printer bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FRANKLIN_GOTHIC":{"name":"MB_OCR_FONT_FRANKLIN_GOTHIC","abstract":"

    Franklin gothic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FRUTIGER":{"name":"MB_OCR_FONT_FRUTIGER","abstract":"

    Frutiger font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FUTURA":{"name":"MB_OCR_FONT_FUTURA","abstract":"

    Futura font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FUTURA_BOLD":{"name":"MB_OCR_FONT_FUTURA_BOLD","abstract":"

    Futura bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GARAMOND":{"name":"MB_OCR_FONT_GARAMOND","abstract":"

    Garamond font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GEORGIA":{"name":"MB_OCR_FONT_GEORGIA","abstract":"

    Georgia font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GILL_SANS":{"name":"MB_OCR_FONT_GILL_SANS","abstract":"

    Gill sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HANDWRITTEN":{"name":"MB_OCR_FONT_HANDWRITTEN","abstract":"

    Handwritten font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA":{"name":"MB_OCR_FONT_HELVETICA","abstract":"

    Helvetica font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA_BOLD":{"name":"MB_OCR_FONT_HELVETICA_BOLD","abstract":"

    Helvetica bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA_CONDENSED_LIGHT":{"name":"MB_OCR_FONT_HELVETICA_CONDENSED_LIGHT","abstract":"

    Helvetica condensed light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HYPERMARKET":{"name":"MB_OCR_FONT_HYPERMARKET","abstract":"

    Hypermarket font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_INTERSTATE":{"name":"MB_OCR_FONT_INTERSTATE","abstract":"

    Interstate font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LATIN_MODERN":{"name":"MB_OCR_FONT_LATIN_MODERN","abstract":"

    Latin modern math font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LATIN_MODERN_ITALIC":{"name":"MB_OCR_FONT_LATIN_MODERN_ITALIC","abstract":"

    Latin modern italic font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LETTER_GOTHIC":{"name":"MB_OCR_FONT_LETTER_GOTHIC","abstract":"

    Letter gothic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LUCIDA":{"name":"MB_OCR_FONT_LUCIDA","abstract":"

    Lucida font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LUCIDA_SANS":{"name":"MB_OCR_FONT_LUCIDA_SANS","abstract":"

    Lucida sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MATRIX":{"name":"MB_OCR_FONT_MATRIX","abstract":"

    Matrix font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_META":{"name":"MB_OCR_FONT_META","abstract":"

    Meta font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MINION":{"name":"MB_OCR_FONT_MINION","abstract":"

    Minion font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OCRA":{"name":"MB_OCR_FONT_OCRA","abstract":"

    OCR A font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OCRB":{"name":"MB_OCR_FONT_OCRB","abstract":"

    OCR B font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OFFICINA":{"name":"MB_OCR_FONT_OFFICINA","abstract":"

    Officina font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OPTIMA":{"name":"MB_OCR_FONT_OPTIMA","abstract":"

    Optima font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_PRINTF":{"name":"MB_OCR_FONT_PRINTF","abstract":"

    Printf font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROCKWELL":{"name":"MB_OCR_FONT_ROCKWELL","abstract":"

    Rockwell font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROTIS_SANS_SERIF":{"name":"MB_OCR_FONT_ROTIS_SANS_SERIF","abstract":"

    Rotis sans serif font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROTIS_SERIF":{"name":"MB_OCR_FONT_ROTIS_SERIF","abstract":"

    Rotis serif font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_SABON":{"name":"MB_OCR_FONT_SABON","abstract":"

    Sabon font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_STONE":{"name":"MB_OCR_FONT_STONE","abstract":"

    Stone font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_SV_BASIC_MANUAL":{"name":"MB_OCR_FONT_SV_BASIC_MANUAL","abstract":"

    SV basic manual font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TAHOMA":{"name":"MB_OCR_FONT_TAHOMA","abstract":"

    Tahoma font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TAHOMA_BOLD":{"name":"MB_OCR_FONT_TAHOMA_BOLD","abstract":"

    Tahoma bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TEX_GYRE_TERMES":{"name":"MB_OCR_FONT_TEX_GYRE_TERMES","abstract":"

    Tex gyre termes font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TEX_GYRE_TERMES_ITALIC":{"name":"MB_OCR_FONT_TEX_GYRE_TERMES_ITALIC","abstract":"

    Tex gyre termes italic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_THE_SANS_MONO_CONDENSED_BLACK":{"name":"MB_OCR_FONT_THE_SANS_MONO_CONDENSED_BLACK","abstract":"

    Sans mono condensed black font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_THESIS":{"name":"MB_OCR_FONT_THESIS","abstract":"

    Thesis font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TICKET_DE_CAISSE":{"name":"MB_OCR_FONT_TICKET_DE_CAISSE","abstract":"

    Ticket de caisse font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TIMES_NEW_ROMAN":{"name":"MB_OCR_FONT_TIMES_NEW_ROMAN","abstract":"

    Times new roman font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TRAJAN":{"name":"MB_OCR_FONT_TRAJAN","abstract":"

    Trajan font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TRINITE":{"name":"MB_OCR_FONT_TRINITE","abstract":"

    Trinite font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNIVERS":{"name":"MB_OCR_FONT_UNIVERS","abstract":"

    Univers font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_VERDANA":{"name":"MB_OCR_FONT_VERDANA","abstract":"

    Verdana font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_VOLTAIRE":{"name":"MB_OCR_FONT_VOLTAIRE","abstract":"

    Voltaire font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_WALBAUM":{"name":"MB_OCR_FONT_WALBAUM","abstract":"

    Walbaum font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GRO_SB":{"name":"MB_OCR_FONT_EUROPA_GRO_SB","abstract":"

    Europa gro sb font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GRO_SB_LIGHT":{"name":"MB_OCR_FONT_EUROPA_GRO_SB_LIGHT","abstract":"

    Europa gro sb light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ANTONIO_REGULAR":{"name":"MB_OCR_FONT_ANTONIO_REGULAR","abstract":"

    Antonio regular font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CORPORATE_LIGHT":{"name":"MB_OCR_FONT_CORPORATE_LIGHT","abstract":"

    Corporate S Light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MICR":{"name":"MB_OCR_FONT_MICR","abstract":"

    MICR font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARABIC_NILE":{"name":"MB_OCR_FONT_ARABIC_NILE","abstract":"

    Arabic font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNKNOWN":{"name":"MB_OCR_FONT_UNKNOWN","abstract":"

    Unknown font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_XITS_MATH":{"name":"MB_OCR_FONT_XITS_MATH","abstract":"

    XITS Math font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ANY":{"name":"MB_OCR_FONT_ANY","abstract":"

    Any of the other listed fonts

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNKNOWN_MATH":{"name":"MB_OCR_FONT_UNKNOWN_MATH","abstract":"

    Unknown math font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UKDL_LIGHT":{"name":"MB_OCR_FONT_UKDL_LIGHT","abstract":"

    Font found on UKDL licenses

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COUNT":{"name":"MB_OCR_FONT_COUNT","abstract":"

    Must be last as it holds the number of available fonts

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FE_SCHRIFT":{"name":"MB_OCR_FONT_FE_SCHRIFT","abstract":"

    German license plate font *

    ","parent_name":"MBOcrFont"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeUnknown":{"name":"MBMrtdTypeUnknown","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeIdentityCard":{"name":"MBMrtdTypeIdentityCard","abstract":"

    Identity card

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypePassport":{"name":"MBMrtdTypePassport","abstract":"

    Passport

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeVisa":{"name":"MBMrtdTypeVisa","abstract":"

    Visa

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeGreenCard":{"name":"MBMrtdTypeGreenCard","abstract":"

    US Green Card

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd1":{"name":"MBMrtdSpecificationTd1","abstract":"

    Preset for detecting TD1 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd2":{"name":"MBMrtdSpecificationTd2","abstract":"

    Preset for detecting TD2 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd3":{"name":"MBMrtdSpecificationTd3","abstract":"

    Preset for detecting TD3 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationUp":{"name":"MBProcessingOrientationUp","abstract":"

    Text oriented same as picture

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationRight":{"name":"MBProcessingOrientationRight","abstract":"

    Text is rotated 90 degrees clockwise

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationDown":{"name":"MBProcessingOrientationDown","abstract":"

    Text is upside down

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationLeft":{"name":"MBProcessingOrientationLeft","abstract":"

    Text is rotated 90 degrees counterclockwise

    ","parent_name":"MBProcessingOrientation"},"Enums/MBDocumentVerificationHighResImageState.html#/c:@E@MBDocumentVerificationHighResImageState@MBDocumentVerificationHighResImageStateFrontSide":{"name":"MBDocumentVerificationHighResImageStateFrontSide","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationHighResImageState"},"Enums/MBDocumentVerificationHighResImageState.html#/c:@E@MBDocumentVerificationHighResImageState@MBDocumentVerificationHighResImageStateBackSideSide":{"name":"MBDocumentVerificationHighResImageStateBackSideSide","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationHighResImageState"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypeTD1":{"name":"MBDocumentFaceDetectorTypeTD1","abstract":"

    Uses document detector for TD1 size identity cards

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypeTD2":{"name":"MBDocumentFaceDetectorTypeTD2","abstract":"

    Uses document detector for TD2 size identity cards

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypePassportsAndVisas":{"name":"MBDocumentFaceDetectorTypePassportsAndVisas","abstract":"

    Uses MRTD detector for detecting documents with MRZ

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusSuccess":{"name":"MBDetectionStatusSuccess","abstract":"

    Object was successfuly detected.

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusFail":{"name":"MBDetectionStatusFail","abstract":"

    Object was not detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraTooHigh":{"name":"MBDetectionStatusCameraTooHigh","abstract":"

    Object was successfully detected, but the camera was too far above the object for processing

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraAtAngle":{"name":"MBDetectionStatusCameraAtAngle","abstract":"

    Object was successfully detected, but the perspective angle of camera is too high

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraRotated":{"name":"MBDetectionStatusCameraRotated","abstract":"

    Object was successfully detected, but the object is rotated and not aligned to the camera edges

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusQRSuccess":{"name":"MBDetectionStatusQRSuccess","abstract":"

    QR code was successfully detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusPdf417Success":{"name":"MBDetectionStatusPdf417Success","abstract":"

    PDF417 barcode was successfully detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusFallbackSuccess":{"name":"MBDetectionStatusFallbackSuccess","abstract":"

    Object was successfully detected using a fallback algorithm

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusPartialForm":{"name":"MBDetectionStatusPartialForm","abstract":"

    Object was detected, but is only partially visible on screen

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraTooNear":{"name":"MBDetectionStatusCameraTooNear","abstract":"

    Object was successfully detected, but the camera is too near to the object for processing

    ","parent_name":"MBDetectionStatus"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultNotPerformed":{"name":"MBDataMatchResultNotPerformed","abstract":"

    Data matching has not been performed.

    ","parent_name":"MBDataMatchResult"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultFailed":{"name":"MBDataMatchResultFailed","abstract":"

    Data does not match.

    ","parent_name":"MBDataMatchResult"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultSuccess":{"name":"MBDataMatchResultSuccess","abstract":"

    Data match.

    ","parent_name":"MBDataMatchResult"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionNone":{"name":"MBCameraAutofocusRestrictionNone","abstract":"

    Default. Indicates that the autofocus system should not restrict the focus range.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionNear":{"name":"MBCameraAutofocusRestrictionNear","abstract":"

    Indicates that the autofocus system should restrict the focus range for subject matter that is near to the camera.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionFar":{"name":"MBCameraAutofocusRestrictionFar","abstract":"

    Indicates that the autofocus system should restrict the focus range for subject matter that is far from the camera.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraType.html#/c:@E@MBCameraType@MBCameraTypeBack":{"name":"MBCameraTypeBack","abstract":"

    Back facing camera

    ","parent_name":"MBCameraType"},"Enums/MBCameraType.html#/c:@E@MBCameraType@MBCameraTypeFront":{"name":"MBCameraTypeFront","abstract":"

    Front facing camera

    ","parent_name":"MBCameraType"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPreset480p":{"name":"MBCameraPreset480p","abstract":"

    480p video will always be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPreset720p":{"name":"MBCameraPreset720p","abstract":"

    720p video will always be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetOptimal":{"name":"MBCameraPresetOptimal","abstract":"

    The library will calculate optimal resolution based on the use case and device used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetMax":{"name":"MBCameraPresetMax","abstract":"

    Device’s maximal video resolution will be used.

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetPhoto":{"name":"MBCameraPresetPhoto","abstract":"

    Device’s photo preview resolution will be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html":{"name":"MBCameraPreset","abstract":"

    Camera resolution preset

    "},"Enums/MBCameraType.html":{"name":"MBCameraType","abstract":"

    Camera type

    "},"Enums/MBCameraAutofocusRestriction.html":{"name":"MBCameraAutofocusRestriction","abstract":"

    Camera autofocus restricion mode

    "},"Enums/MBDataMatchResult.html":{"name":"MBDataMatchResult","abstract":"

    Result of the data matching algorithm for scanned parts/sides of the document.

    "},"Enums/MBDetectionStatus.html":{"name":"MBDetectionStatus","abstract":"

    Status of the object detection in Microblink SDK

    "},"Enums/MBDocumentFaceDetectorType.html":{"name":"MBDocumentFaceDetectorType","abstract":"

    Enumeration of all supported document types for MBDocumentFaceRecognizer

    "},"Enums/MBDocumentVerificationHighResImageState.html":{"name":"MBDocumentVerificationHighResImageState","abstract":"

    Undocumented

    "},"Enums/MBProcessingOrientation.html":{"name":"MBProcessingOrientation","abstract":"

    Enum which describes text orientation on an image.

    "},"Enums/MBMrtdSpecificationPreset.html":{"name":"MBMrtdSpecificationPreset","abstract":"

    Presets which can be used to instantiate mrtd specification for a specific mrtd format

    "},"Enums/MBMrtdDocumentType.html":{"name":"MBMrtdDocumentType","abstract":"

    Supported MRTD document types

    "},"Enums/MBOcrFont.html":{"name":"MBOcrFont","abstract":"

    A list of fonts supported by BlinkOCR

    "},"Enums/MBProcessorResultState.html":{"name":"MBProcessorResultState","abstract":"

    Enumeration of posibble processor result state

    "},"Enums/MBRecognitionMode.html":{"name":"MBRecognitionMode","abstract":"

    Denotes the mode in which Recognizers performs recognition

    "},"Enums/MBFrameQualityEstimationMode.html":{"name":"MBFrameQualityEstimationMode","abstract":"

    Denotes the mode in which FrameQuality estimation works

    "},"Enums/MBRecognizerResultState.html":{"name":"MBRecognizerResultState","abstract":"

    Enumeration of posibble recognizer result state

    "},"Enums/MBUsdlKeys.html":{"name":"MBUsdlKeys","abstract":"

    Possible keys that can be used for obtaining USDL result elements.

    "},"Constants.html#/c:@MBIllegalModificationException":{"name":"MBIllegalModificationException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseKeyException":{"name":"MBInvalidLicenseKeyException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseeKeyException":{"name":"MBInvalidLicenseeKeyException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseResourceException":{"name":"MBInvalidLicenseResourceException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidBundleException":{"name":"MBInvalidBundleException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBMissingSettingsException":{"name":"MBMissingSettingsException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidArgumentException":{"name":"MBInvalidArgumentException","abstract":"

    Undocumented

    "},"Classes/MBVisaRecognizerResult.html#/c:objc(cs)MBVisaRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVisaRecognizerResult"},"Classes/MBVisaRecognizerResult.html#/c:objc(cs)MBVisaRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone.

    ","parent_name":"MBVisaRecognizerResult"},"Classes/MBVisaRecognizer.html#/c:objc(cs)MBVisaRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVisaRecognizer"},"Classes/MBVisaRecognizer.html#/c:objc(cs)MBVisaRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning VisaRecognizer

    ","parent_name":"MBVisaRecognizer"},"Classes/MBViewControllerFactory.html#/c:objc(cs)MBViewControllerFactory(cm)recognizerRunnerViewControllerWithOverlayViewController:":{"name":"+recognizerRunnerViewControllerWithOverlayViewController:","abstract":"

    Method creates a camera view controller which is responsible for displaying the","parent_name":"MBViewControllerFactory"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)address":{"name":"address","abstract":"

    The full address of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)sex":{"name":"sex","abstract":"

    TThe sex of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)getField:":{"name":"-getField:","abstract":"

    Returns a string value for a given key.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)optionalElements":{"name":"-optionalElements","abstract":"

    Array of elements that are not part of AAMVA standard and are specific to each US state.","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)result":{"name":"result","abstract":"

    USDL recognizer results

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)address":{"name":"address","abstract":"

    The full address of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)sex":{"name":"sex","abstract":"

    TThe sex of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)getField:":{"name":"-getField:","abstract":"

    Returns a string value for a given key.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)optionalElements":{"name":"-optionalElements","abstract":"

    Array of elements that are not part of AAMVA standard and are specific to each US state.","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning both sides of USDL

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)type":{"name":"type","abstract":"

    Type of document this recognizer will scan.

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBTemplatingRecognizerResult.html#/c:objc(cs)MBTemplatingRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingRecognizerResult"},"Classes/MBTemplatingRecognizerResult.html#/c:objc(cs)MBTemplatingRecognizerResult(py)templatingClass":{"name":"templatingClass","abstract":"

    Returns the MBTemplatingClass for recognized document. If classification failed,","parent_name":"MBTemplatingRecognizerResult"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)templatingResult":{"name":"templatingResult","abstract":"

    Templating recognizer result

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)useGlareDetector":{"name":"useGlareDetector","abstract":"

    Defines if glare detection should be turned on/off for Templating Recognizer.

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)templatingClasses":{"name":"templatingClasses","abstract":"

    Returns all available templating classes

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setClassificationProcessorGroups:":{"name":"-setClassificationProcessorGroups:","abstract":"

    Sets processor groups that will be executed before classification

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)getClassificationProcessorGroups":{"name":"-getClassificationProcessorGroups","abstract":"

    Returns the currently set array of classification processor groups.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setNonClassificationProcessorGroups:":{"name":"-setNonClassificationProcessorGroups:","abstract":"

    Sets processor groups that will be executed if MBTemplatingClassifier’s classify returns YES.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)getNonClassificationProcessorGroups":{"name":"-getNonClassificationProcessorGroups","abstract":"

    Returns the currently set array of non-classification processor groups.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setTemplatingClassifier:":{"name":"-setTemplatingClassifier:","abstract":"

    Sets the classifier which will tell whether currently processed document belongs to this class.","parent_name":"MBTemplatingClass"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Designated initializer

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)willFocusAtPoint:":{"name":"-willFocusAtPoint:","abstract":"

    Undocumented

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBSuccessFrameGrabberRecognizerResult.html#/c:objc(cs)MBSuccessFrameGrabberRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizerResult"},"Classes/MBSuccessFrameGrabberRecognizerResult.html#/c:objc(cs)MBSuccessFrameGrabberRecognizerResult(py)successFrame":{"name":"successFrame","abstract":"

    Success frame PPImage of successful frame

    ","parent_name":"MBSuccessFrameGrabberRecognizerResult"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(im)initWithRecognizer:":{"name":"-initWithRecognizer:","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(py)result":{"name":"result","abstract":"

    SuccessFrameGrabber recognizer results

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(py)slaveRecognizer":{"name":"slaveRecognizer","abstract":"

    Slave recognizer that is wrapped with SuccessFrameGrabber

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSubview.html#/c:objc(cs)MBSubview(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified on Overlay events

    ","parent_name":"MBSubview"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)debugRecognizerRunnerViewControllerDelegate":{"name":"debugRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)detectionRecognizerRunnerViewControllerDelegate":{"name":"detectionRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)ocrRecognizerRunnerViewControllerDelegate":{"name":"ocrRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)glareRecognizerRunnerViewControllerDelegate":{"name":"glareRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)firstSideFinishedRecognizerRunnerViewControllerDelegate":{"name":"firstSideFinishedRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)debugRecognizerRunnerDelegate":{"name":"debugRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)detectionRecognizerRunnerDelegate":{"name":"detectionRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)ocrRecognizerRunnerDelegate":{"name":"ocrRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)glareRecognizerRunnerDelegate":{"name":"glareRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)firstSideFinishedRecognizerRunnerDelegate":{"name":"firstSideFinishedRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)metadataDelegates":{"name":"metadataDelegates","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)scanningRecognizerRunnerDelegate":{"name":"scanningRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)imageProcessingRecognizerRunnerDelegate":{"name":"imageProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)stringProcessingRecognizerRunnerDelegate":{"name":"stringProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)coordinator":{"name":"coordinator","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)initWithRecognizerCollection:":{"name":"-initWithRecognizerCollection:","abstract":"

    Initializes the recognizer runner

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)resetState":{"name":"-resetState","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)resetState:":{"name":"-resetState:","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)cancelProcessing":{"name":"-cancelProcessing","abstract":"

    Cancels all dispatched, but not yet processed image processing requests issued with processImage.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)processImage:":{"name":"-processImage:","abstract":"

    Processes a MBImage object synchronously using current settings.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)processString:":{"name":"-processString:","abstract":"

    Processes a NSString object synchronously using current settings.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Method which is used to apply MBSettings object given by currentSettings property

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerResult.html#/c:objc(cs)MBRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerResult"},"Classes/MBRecognizerResult.html#/c:objc(cs)MBRecognizerResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerResult"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(im)initWithRecognizers:":{"name":"-initWithRecognizers:","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)recognizerList":{"name":"recognizerList","abstract":"

    Contains MBRecognizer objects - each individual recognizer.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)allowMultipleResults":{"name":"allowMultipleResults","abstract":"

    If NO, recognizer chain will stop when finds first valid scan results and will return just it.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)partialRecognitionTimeout":{"name":"partialRecognitionTimeout","abstract":"

    Timeout interval in which the partial scanning results will be returned to the user.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)recognitionMode":{"name":"recognitionMode","abstract":"

    Recognition mode.

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)frameQualityEstimationMode":{"name":"frameQualityEstimationMode","abstract":"

    Frame quality estimation mode. If frame quality estimation is on, some video frames will be skipped, if","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizer.html#/c:objc(cs)MBRecognizer(py)baseResult":{"name":"baseResult","abstract":"

    Base recognizer result.

    ","parent_name":"MBRecognizer"},"Classes/MBRecognizer.html#/c:objc(cs)MBRecognizer(im)getOptimalHudOrientation":{"name":"-getOptimalHudOrientation","abstract":"

    Undocumented

    ","parent_name":"MBRecognizer"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)upperLeft":{"name":"upperLeft","abstract":"

    Upper left point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)upperRight":{"name":"upperRight","abstract":"

    Upper right point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)lowerLeft":{"name":"lowerLeft","abstract":"

    Lower left point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)lowerRight":{"name":"lowerRight","abstract":"

    Lower right point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)initWithUpperLeft:upperRight:lowerLeft:lowerRight:":{"name":"-initWithUpperLeft:upperRight:lowerLeft:lowerRight:","abstract":"

    Designated initializer which initializes all four corners of the quadrangle

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)toPointsArray":{"name":"-toPointsArray","abstract":"

    Returns points of the quadrangle in array in the following order:

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)quadrangleWithTransformation:":{"name":"-quadrangleWithTransformation:","abstract":"

    Creates new quadrangle from this quadrangle, transformed by specified affine transformation.

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)center":{"name":"-center","abstract":"

    Returns the center point of the Quadrangle

    ","parent_name":"MBQuadrangle"},"Classes/MBProcessorResult.html#/c:objc(cs)MBProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBProcessorResult"},"Classes/MBProcessorResult.html#/c:objc(cs)MBProcessorResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBProcessorResult"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(im)initWithProcessingLocation:dewarpPolicy:andProcessors:":{"name":"-initWithProcessingLocation:dewarpPolicy:andProcessors:","abstract":"

    Constructor for MBProcessorGroup.

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(py)processors":{"name":"processors","abstract":"

    Processors that are members of the processor group

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessor.html#/c:objc(cs)MBProcessor(py)baseResult":{"name":"baseResult","abstract":"

    Base processor result

    ","parent_name":"MBProcessor"},"Classes/MBPassportRecognizerResult.html#/c:objc(cs)MBPassportRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPassportRecognizerResult"},"Classes/MBPassportRecognizerResult.html#/c:objc(cs)MBPassportRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone.

    ","parent_name":"MBPassportRecognizerResult"},"Classes/MBPassportRecognizer.html#/c:objc(cs)MBPassportRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPassportRecognizer"},"Classes/MBPassportRecognizer.html#/c:objc(cs)MBPassportRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning PassportRecognizer

    ","parent_name":"MBPassportRecognizer"},"Classes/MBParserGroupProcessorResult.html#/c:objc(cs)MBParserGroupProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessorResult"},"Classes/MBParserGroupProcessorResult.html#/c:objc(cs)MBParserGroupProcessorResult(py)ocrLayout":{"name":"ocrLayout","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessorResult"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(im)initWithParsers:":{"name":"-initWithParsers:","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)parsers":{"name":"parsers","abstract":"

    Getting array of readonly parsers

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)result":{"name":"result","abstract":"

    MBParserGroupProcessor processor result

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)oneOptionalElementInGroupShouldBeValid":{"name":"oneOptionalElementInGroupShouldBeValid","abstract":"

    Set if one optional element should be valid

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOverlayViewController"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(py)recognizerRunnerViewController":{"name":"recognizerRunnerViewController","abstract":"

    Overlay View’s delegate object. Responsible for sending messages to PhotoPay’s","parent_name":"MBOverlayViewController"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(py)cameraPausedView":{"name":"cameraPausedView","abstract":"

    Label which is displayed on screen when camera is paused, but still exists on the screen.

    ","parent_name":"MBOverlayViewController"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(py)language":{"name":"language","abstract":"

    If default overlay contains textual information, text will be localized to this language

    ","parent_name":"MBOverlaySettings"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(py)cameraSettings":{"name":"cameraSettings","abstract":"

    Camera settings

    ","parent_name":"MBOverlaySettings"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(im)init":{"name":"-init","abstract":"

    Initializes the object with default settings (see above for defaults).

    ","parent_name":"MBOverlaySettings"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ul":{"name":"ul","abstract":"

    Upper left corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ur":{"name":"ur","abstract":"

    Upper right corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ll":{"name":"ll","abstract":"

    Lower left corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)lr":{"name":"lr","abstract":"

    Lower right corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)initWithUpperLeft:upperRight:lowerLeft:lowerRight:":{"name":"-initWithUpperLeft:upperRight:lowerLeft:lowerRight:","abstract":"

    Initializer

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)positionWithOffset:":{"name":"-positionWithOffset:","abstract":"

    Creates a position with offset to a current position. Offset is added.

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)rect":{"name":"-rect","abstract":"

    Helper method converting Position to CGRect

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)center":{"name":"-center","abstract":"

    Helper method calculating the center of the Position

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)height":{"name":"-height","abstract":"

    Helper method calculating the height of the position

    ","parent_name":"MBPosition"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)value":{"name":"value","abstract":"

    Unicode value of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)position":{"name":"position","abstract":"

    Position of the char on the image, in the coordinate system of the image

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)height":{"name":"height","abstract":"

    Height of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)uncertain":{"name":"uncertain","abstract":"

    YES if char is uncertain

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)quality":{"name":"quality","abstract":"

    Integer value representing OCR quality of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)font":{"name":"font","abstract":"

    Font of the character

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(im)initWithValue:position:height:":{"name":"-initWithValue:position:height:","abstract":"

    Initializer for a char

    ","parent_name":"MBOcrChar"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(py)character":{"name":"character","abstract":"

    Character that was recognised

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(py)variants":{"name":"variants","abstract":"

    Alternative characters which are possible instead of this character.

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(im)initWithValue:":{"name":"-initWithValue:","abstract":"

    Initializer for a CharWithVariant

    ","parent_name":"MBCharWithVariants"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(py)chars":{"name":"chars","abstract":"

    Ocr chars of the line

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(py)position":{"name":"position","abstract":"

    Position of the line on the image, in the coordinate system of the image

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)initWithOcrChars:position:":{"name":"-initWithOcrChars:position:","abstract":"

    Initializer from chars

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr line

    ","parent_name":"MBOcrLine"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(py)lines":{"name":"lines","abstract":"

    Ocr lines of the block

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(py)position":{"name":"position","abstract":"

    Position of the block on the image, in the coordinate system of the image

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)initWithOcrLines:position:":{"name":"-initWithOcrLines:position:","abstract":"

    Initializer from lines

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr block

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)box":{"name":"box","abstract":"

    Bounding box of the layout. Given in the coordinate system of the image on which OCR was performed.

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)blocks":{"name":"blocks","abstract":"

    Ocr blocks of the layout

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)transform":{"name":"transform","abstract":"

    Tranformation matrix which transforms the coordinate system in which the OCR layout is given","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)transformInvalid":{"name":"transformInvalid","abstract":"

    YES if transform is not valid (e.g, there’s no UI to which it can be calculated. NO otherwise.

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)position":{"name":"position","abstract":"

    Position of layout on the image, in the coordinate system of the image

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)flipped":{"name":"flipped","abstract":"

    OCR layout was recognized from flipped image

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)initWithOcrBlocks:transform:box:flipped:":{"name":"-initWithOcrBlocks:transform:box:flipped:","abstract":"

    Initializer from blocks and transformation

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)initWithOcrBlocks:":{"name":"-initWithOcrBlocks:","abstract":"

    Initializer from blocks

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr layout

    ","parent_name":"MBOcrLayout"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default max allowed dewarp height used when using default constructor.

    ","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(im)initWithMaxAllowedDewarpHeight:":{"name":"-initWithMaxAllowedDewarpHeight:","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(py)maxAllowedDewarpHeight":{"name":"maxAllowedDewarpHeight","abstract":"

    Returns the max allowed dewarp height as specified by this policy.

    ","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentType":{"name":"documentType","abstract":"

    Returns the MRTD document type of recognized document.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)primaryID":{"name":"primaryID","abstract":"

    Returns the primary indentifier. If there is more than one component, they are separated with space.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)secondaryID":{"name":"secondaryID","abstract":"

    Returns the secondary identifier. If there is more than one component, they are separated with space.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)issuer":{"name":"issuer","abstract":"

    Returns three-letter or two-letter code which indicate the issuing State. Three-letter codes are based","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    Returns holder’s date of birth

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentNumber":{"name":"documentNumber","abstract":"

    Returns document number. Document number contains up to 9 characters.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)nationality":{"name":"nationality","abstract":"

    Returns nationality of the holder represented by a three-letter or two-letter code. Three-letter","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)gender":{"name":"gender","abstract":"

    Returns gender of the card holder. Gender is specified by use of the single initial, capital letter F for female,","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentCode":{"name":"documentCode","abstract":"

    Returns document code. Document code contains two characters. For MRTD the first character shall","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    Returns date of expiry

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)opt1":{"name":"opt1","abstract":"

    Returns first optional data. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)opt2":{"name":"opt2","abstract":"

    Returns second optional data. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)alienNumber":{"name":"alienNumber","abstract":"

    Returns alien number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)applicationReceiptNumber":{"name":"applicationReceiptNumber","abstract":"

    Returns application receipt number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)immigrantCaseNumber":{"name":"immigrantCaseNumber","abstract":"

    Returns immigrant case number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)mrzText":{"name":"mrzText","abstract":"

    Returns the entire Machine Readable Zone text from ID. This text is usually used for parsing","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)isParsed":{"name":"isParsed","abstract":"

    Returns true if Machine Readable Zone has been parsed, false otherwise.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)isVerified":{"name":"isVerified","abstract":"

    Returns true if all check digits inside MRZ are correct, false otherwise.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedOpt1":{"name":"sanitizedOpt1","abstract":"

    Sanitized field opt1

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedOpt2":{"name":"sanitizedOpt2","abstract":"

    Sanitized field opt2

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedNationality":{"name":"sanitizedNationality","abstract":"

    Sanitized field nationality

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedIssuer":{"name":"sanitizedIssuer","abstract":"

    Sanitized field issuer

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedDocumentCode":{"name":"sanitizedDocumentCode","abstract":"

    Sanitized document code

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedDocumentNumber":{"name":"sanitizedDocumentNumber","abstract":"

    Sanitized document number

    ","parent_name":"MBMrzResult"},"Classes/MBMrtdSpecification.html#/c:objc(cs)MBMrtdSpecification(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdSpecification"},"Classes/MBMrtdSpecification.html#/c:objc(cs)MBMrtdSpecification(cm)createFromPreset:":{"name":"+createFromPreset:","abstract":"

    Factory method which creates MRTD specification based on a preset

    ","parent_name":"MBMrtdSpecification"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    Returns the Data extracted from the machine readable zone.

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(py)rawOcrLayout":{"name":"rawOcrLayout","abstract":"

    Raw OCR layout from which the MRTD data was parsed.

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)result":{"name":"result","abstract":"

    Detector recognizer results

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowUnparsedResults":{"name":"allowUnparsedResults","abstract":"

    Whether returning of unparsed results is allowed

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowUnverifiedResults":{"name":"allowUnverifiedResults","abstract":"

    Whether returning of unverified results is allowed","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowSpecialCharacters":{"name":"allowSpecialCharacters","abstract":"

    Whether special characters are allowed

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)mrtdSpecifications":{"name":"mrtdSpecifications","abstract":"

    Get the mrtd specifications.

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(im)setMrzFilter:":{"name":"-setMrzFilter:","abstract":"

    Filter for MRTDs (Machine Readable Travel Documents) that is used to determine which documents","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdCombinedRecognizerResult.html#/c:objc(cs)MBMrtdCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdCombinedRecognizerResult"},"Classes/MBMrtdCombinedRecognizerResult.html#/c:objc(cs)MBMrtdCombinedRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    Returns the Data extracted from the machine readable zone.

    ","parent_name":"MBMrtdCombinedRecognizerResult"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)result":{"name":"result","abstract":"

    Mrtd Combined recognizer result

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowUnparsedResults":{"name":"allowUnparsedResults","abstract":"

    Whether returning of unparsed results is allowed

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowUnverifiedResults":{"name":"allowUnverifiedResults","abstract":"

    Whether returning of unverified results is allowed","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowSpecialCharacters":{"name":"allowSpecialCharacters","abstract":"

    Whether special characters are allowed

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)detectorType":{"name":"detectorType","abstract":"

    Type of document this recognizer will scan.

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)sharedInstance":{"name":"+sharedInstance","abstract":"

    Undocumented

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(py)showLicenseKeyTimeLimitedWarning":{"name":"showLicenseKeyTimeLimitedWarning","abstract":"

    If YES, tooltip limited license key warning messages will appear on screen

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(py)resourcesBundle":{"name":"resourcesBundle","abstract":"

    Bundle in which the resources for the scanning process should be found. Usually, by default, this","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseBuffer:":{"name":"-setLicenseBuffer:","abstract":"

    Set license buffer and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseBuffer:andLicensee:":{"name":"-setLicenseBuffer:andLicensee:","abstract":"

    Set license buffer and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseKey:":{"name":"-setLicenseKey:","abstract":"

    Set license key and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseKey:andLicensee:":{"name":"-setLicenseKey:andLicensee:","abstract":"

    Set license key and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseResource:withExtension:inSubdirectory:forBundle:":{"name":"-setLicenseResource:withExtension:inSubdirectory:forBundle:","abstract":"

    Set the license file and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseResource:withExtension:inSubdirectory:forBundle:andLicensee:":{"name":"-setLicenseResource:withExtension:inSubdirectory:forBundle:andLicensee:","abstract":"

    Set the license file and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)buildVersionString":{"name":"+buildVersionString","abstract":"

    Returns the string that contains the library build version

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)isScanningUnsupportedForCameraType:error:":{"name":"+isScanningUnsupportedForCameraType:error:","abstract":"

    This method returns true when scanning is unsupported on a specific device.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(py)language":{"name":"language","abstract":"

    Undocumented

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(py)resourcesBundle":{"name":"resourcesBundle","abstract":"

    Bundle with resources used in framework

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(cm)instance":{"name":"+instance","abstract":"

    Obtain the shared instance

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)init":{"name":"-init","abstract":"

    Designated initializer

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)setDefaultLanguage":{"name":"-setDefaultLanguage","abstract":"

    Sets the language to default (i.e. language specified in the user’s device settings

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)pushStatusBarStyle:":{"name":"-pushStatusBarStyle:","abstract":"

    Pushes the UIApplication status bar style to a internally handled stack

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)popStatusBarStyle":{"name":"-popStatusBarStyle","abstract":"

    Returns the status bar style to the last saved value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)pushStatusBarHidden:":{"name":"-pushStatusBarHidden:","abstract":"

    Push the status bar hidden value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)popStatusBarHidden":{"name":"-popStatusBarHidden","abstract":"

    pops the status bar hidden value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)setHelpShown:":{"name":"-setHelpShown:","abstract":"

    Sets the key that the help was shown to true

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)isHelpShown":{"name":"-isHelpShown","abstract":"

    Returns true if the help was already shown

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(cm)getDefaultResourcesBundle":{"name":"+getDefaultResourcesBundle","abstract":"

    Returns the default resources bundle. If it doesn’t exist, it will be nil.

    ","parent_name":"MBMicroblinkApp"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(py)rawImage":{"name":"rawImage","abstract":"

    Returns the raw image saved by the processor. If no image was saved by processor, returns null.","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(py)encodedImage":{"name":"encodedImage","abstract":"

    JPEG-encoded image or nil, depending on whether image encoding was enabled.

    ","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBImageReturnProcessor"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(py)result":{"name":"result","abstract":"

    MBImageReturnProcessor processor result

    ","parent_name":"MBImageReturnProcessor"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(py)encodeImage":{"name":"encodeImage","abstract":"

    Defines whether saved image will also be encoded as JPEG. This is false by default, which","parent_name":"MBImageReturnProcessor"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)image":{"name":"image","abstract":"

    UIImage of wrapped image.","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)roi":{"name":"roi","abstract":"

    Region of the image used for scanning, where the whole image is specified with CGRectMake(0.0, 0.0, 1.0, 1.0).

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)orientation":{"name":"orientation","abstract":"

    Processing orientation of image. This is used in OCR where you can specify character orientation.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)mirroredHorizontally":{"name":"mirroredHorizontally","abstract":"

    Tells whether camera input images should be mirrored horizontally before processing

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)mirroredVertically":{"name":"mirroredVertically","abstract":"

    Tells whether camera input images should be mirrored vertically before processing

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)estimateFrameQuality":{"name":"estimateFrameQuality","abstract":"

    If YES, the image will prior to processing go through frame quality estimation phase, which might discard the frame

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)cameraFrame":{"name":"cameraFrame","abstract":"

    Property which tells if this frame is a camera or a single photo frame.","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithUIImage:":{"name":"+imageWithUIImage:","abstract":"

    Creates PPImage around UIImage.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithCmSampleBuffer:":{"name":"+imageWithCmSampleBuffer:","abstract":"

    Creates MBImage around CVImageBufferRef.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithCvPixelBuffer:":{"name":"+imageWithCvPixelBuffer:","abstract":"

    Creates MBImage around CVPixelBufferRef.

    ","parent_name":"MBImage"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(py)label":{"name":"label","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)glareDetectionFinishedWithResult:":{"name":"-glareDetectionFinishedWithResult:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(im)initWithFrameGrabberDelegate:":{"name":"-initWithFrameGrabberDelegate:","abstract":"

    Undocumented

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(py)grabFocusedFrames":{"name":"grabFocusedFrames","abstract":"

    Allow sending focused camera frames to MBFrameGrabberRecognizerDelegate.

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(py)grabUnfocusedFrames":{"name":"grabUnfocusedFrames","abstract":"

    Allow sending unfocused camera frames to MBFrameGrabberRecognizerDelegate.

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default dewarp height value used when using default constructor.

    ","parent_name":"MBFixedDewarpPolicy"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(im)initWithDewarpHeight:":{"name":"-initWithDewarpHeight:","parent_name":"MBFixedDewarpPolicy"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(py)dewarpHeight":{"name":"dewarpHeight","abstract":"

    Returns the desired dewarp height (in pixels) as specified by this policy.

    ","parent_name":"MBFixedDewarpPolicy"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsLayer":{"name":"dotsLayer","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsColor":{"name":"dotsColor","abstract":"

    Color of the dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsStrokeWidth":{"name":"dotsStrokeWidth","abstract":"

    Width of the dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsRadius":{"name":"dotsRadius","abstract":"

    Radius of dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)animationDuration":{"name":"animationDuration","abstract":"

    Duration of the animation

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Initializes the layer

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)foregroundColor":{"name":"foregroundColor","abstract":"

    Foreground color of dots.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)tintColor":{"name":"tintColor","abstract":"

    Border and shadow color of dots.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)shouldIgnoreFastResults":{"name":"shouldIgnoreFastResults","abstract":"

    If set YES, dots will not redraw until the animation is finished. This will make animation look much smoother on fast results.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)charFadeInDuration":{"name":"charFadeInDuration","abstract":"

    Duration of fade animation for each dot.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)dotCount":{"name":"dotCount","abstract":"

    Maximum number of dots shown on screen. This count has to be in range [20,50].

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)helpLabel":{"name":"helpLabel","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)helpImageView":{"name":"helpImageView","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(im)animateHelp":{"name":"-animateHelp","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)documentVerificationSubviewDelegate":{"name":"documentVerificationSubviewDelegate","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideInstructions":{"name":"firstSideInstructions","abstract":"

    Returns/sets user instructions that are shown above camera preview while the first side of the","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideInstructions":{"name":"secondSideInstructions","abstract":"

    Returns/sets user instructions that are shown above camera preview while the second side of the","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideSplashMessage":{"name":"firstSideSplashMessage","abstract":"

    Returns/sets splash message that is shown before scanning the first side of the document,","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideSplashMessage":{"name":"secondSideSplashMessage","abstract":"

    Returns/sets splash message that is shown before scanning the second side of the document,","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)scanningDoneSplashMessage":{"name":"scanningDoneSplashMessage","abstract":"

    Returns/sets splash message that is shown after scanning the document.

    ","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)glareMessage":{"name":"glareMessage","abstract":"

    Returns/sets glare status message that is shown if glare detection is turned on","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideSplashImage":{"name":"firstSideSplashImage","abstract":"

    Returns/sets splash image which is shown below splash message, before scanning the first side of","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideSplashImage":{"name":"secondSideSplashImage","abstract":"

    Returns/sets splash image which is shown below splash message, before scanning the second side of","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideInstructionsImage":{"name":"firstSideInstructionsImage","abstract":"

    Returns image that is shown above camera preview, next to the user instructions message, while","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideInstructionsImage":{"name":"secondSideInstructionsImage","abstract":"

    Returns image that is shown above camera preview, next to the user instructions message, while","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)captureHighResImage":{"name":"captureHighResImage","abstract":"

    Gets/sets capturing of high resolution image

    ","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationInstructionsSubview.html#/c:objc(cs)MBDocumentVerificationInstructionsSubview(py)instructionsLabel":{"name":"instructionsLabel","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationInstructionsSubview"},"Classes/MBDocumentVerificationInstructionsSubview.html#/c:objc(cs)MBDocumentVerificationInstructionsSubview(py)instructionsImageView":{"name":"instructionsImageView","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationInstructionsSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)viewfinderView":{"name":"viewfinderView","abstract":"

    Default implementation draws a rectangle with aspect ratio of viewfinderAspectRatio,","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)viewfinderWidthToHeightRatio":{"name":"viewfinderWidthToHeightRatio","abstract":"

    Default aspect ratio of the viewfinder, calculated as width / height.

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)tooltipLabel":{"name":"tooltipLabel","abstract":"

    Label displayed below the viewfinder view.

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Initialize the overlay subview with a given frame

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Initialize the overlay subview with a given coder

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)tooltipText":{"name":"tooltipText","abstract":"

    Gets/sets tootlip text that is defines under document view finder.

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)glareStatusMessage":{"name":"glareStatusMessage","abstract":"

    Returns/sets glare status message that is shown if glare detection is turned on","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)showTooltip":{"name":"showTooltip","abstract":"

    Gets/sets tooltip visibility

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)captureHighResImage":{"name":"captureHighResImage","abstract":"

    Gets/sets capturing of high resolution image

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(py)documentLocation":{"name":"documentLocation","abstract":"

    Quadrangle represeting corner points of the document within the input image.

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(py)faceLocation":{"name":"faceLocation","abstract":"

    Quadrangle represeting corner points of the face image within the input image.

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning Document Face Recognizer

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)detectorType":{"name":"detectorType","abstract":"

    Type of docment this recognizer will scan.

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDisplayableQuadDetection.html#/c:objc(cs)MBDisplayableQuadDetection(py)detectionLocation":{"name":"detectionLocation","abstract":"

    Exact location of detected object on image.","parent_name":"MBDisplayableQuadDetection"},"Classes/MBDisplayablePointsDetection.html#/c:objc(cs)MBDisplayablePointsDetection(py)points":{"name":"points","abstract":"

    Coordinates of points (CGPoint) of a detected object.

    ","parent_name":"MBDisplayablePointsDetection"},"Classes/MBDisplayableObject.html#/c:objc(cs)MBDisplayableObject(py)transform":{"name":"transform","abstract":"

    Tranformation matrix which transforms the coordinate system in which the OCR layout is given","parent_name":"MBDisplayableObject"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(im)initWithDetectionStatus:":{"name":"-initWithDetectionStatus:","abstract":"

    Initializes the displayable detection with matrix

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(py)detectionStatus":{"name":"detectionStatus","abstract":"

    Detection status which describes the status of detection

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDewarpPolicy.html#/c:objc(cs)MBDewarpPolicy(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDewarpPolicy"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(im)initWithDay:month:year:originalDateString:":{"name":"-initWithDay:month:year:originalDateString:","abstract":"

    Designated initializer

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)originalDateString":{"name":"originalDateString","abstract":"

    The original string used to create the date result

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)date":{"name":"date","abstract":"

    NSDate object which represents the same date as this result

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)day":{"name":"day","abstract":"

    Day in month.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)month":{"name":"month","abstract":"

    Month in year.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)year":{"name":"year","abstract":"

    Year of the current date.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(cm)dateResultWithDay:month:year:originalDateString:":{"name":"+dateResultWithDay:month:year:originalDateString:","abstract":"

    Factory method

    ","parent_name":"MBDateResult"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default DPI that will be used with default constructor.

    ","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(im)initWithDesiredDPI:":{"name":"-initWithDesiredDPI:","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(py)desiredDPI":{"name":"desiredDPI","abstract":"

    Returns the desired DPI as defined by this policy.

    ","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)recognizerCollection":{"name":"recognizerCollection","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)cameraSettings":{"name":"cameraSettings","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)metadataDelegates":{"name":"metadataDelegates","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)scanningRecognizerRunnerViewControllerDelegate":{"name":"scanningRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)recognizerRunnerViewControllerDelegate":{"name":"recognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)init":{"name":"-init","abstract":"

    Convenience initializer used for use cases when overlay view controller is instantiated from storyboard.","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)initWithRecognizerCollection:cameraSettings:":{"name":"-initWithRecognizerCollection:cameraSettings:","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)scanningRegion":{"name":"scanningRegion","abstract":"

    Scanning region","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)autorotateOverlay":{"name":"autorotateOverlay","abstract":"

    If YES, Overlay View Controller will be autorotated independently of ScanningViewController.

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)showStatusBar":{"name":"showStatusBar","abstract":"

    If YES, default camera overlay will display Status bar.","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    Default: UIInterfaceOrientationMaskPortrait

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan.

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraPreset":{"name":"cameraPreset","abstract":"

    Camera preset. With this property you can set the resolution of the camera

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraType":{"name":"cameraType","abstract":"

    Camera type. You can choose between front and back facing.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)autofocusInterval":{"name":"autofocusInterval","abstract":"

    Interval between forcing two camera focuses. If <= 0, forced focuses arent performed","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraAutofocusRestriction":{"name":"cameraAutofocusRestriction","abstract":"

    Range restriction for camera autofocus.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)videoGravity":{"name":"videoGravity","abstract":"

    Gravity of Camera preview on screen.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)focusPoint":{"name":"focusPoint","abstract":"

    Point against which the autofocus will be performed

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraMirroredHorizontally":{"name":"cameraMirroredHorizontally","abstract":"

    Tells whether camera input images should be mirrored horizontally before processing

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraMirroredVertically":{"name":"cameraMirroredVertically","abstract":"

    Tells whether camera input images should be mirrored vertically before processing

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)init":{"name":"-init","abstract":"

    Designated initializer. Initializes the object with default settings (see above for defaults)

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)calcSessionPreset":{"name":"-calcSessionPreset","abstract":"

    Returns an optimal AVFoundation session preset based on cameraPreset value.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)calcAutofocusRangeRestriction":{"name":"-calcAutofocusRangeRestriction","abstract":"

    Returns an optimal AVFoundation autofocus range restriction value based on cameraAutofocusRestriction.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isAnimating":{"name":"isAnimating","abstract":"

    Whether the reticle is currently animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isDetecting":{"name":"isDetecting","abstract":"

    Whether the reticle is currently detecting.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isConfirming":{"name":"isConfirming","abstract":"

    Whether the reticle is currently confirming.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startAnimating":{"name":"-startAnimating","abstract":"

    Starts animating the reticle. Does nothing if the reticle is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopAnimating":{"name":"-stopAnimating","abstract":"

    Stops animating the reticle. Does nothing if the reticle is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startDetecting":{"name":"-startDetecting","abstract":"

    Starts animating the detection spinner. Does nothing if the detection is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopDetecting":{"name":"-stopDetecting","abstract":"

    Stops animating the detection spinner. Does nothing if the detection is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startConfirming":{"name":"-startConfirming","abstract":"

    Starts animating the confirmation expanding ring. Does nothing if the detection is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopConfirming":{"name":"-stopConfirming","abstract":"

    Stops animating the confirmation expanding ring. Does nothing if the detection is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)resetAll":{"name":"-resetAll","abstract":"

    Stops all animations and remove all layers to reset state to beginning

    ","parent_name":"MBCameraReticle"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)address":{"name":"address","abstract":"

    The address of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)sex":{"name":"sex","abstract":"

    The sex of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)additionalNameInformation":{"name":"additionalNameInformation","abstract":"

    The additional name information of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)additionalAddressInformation":{"name":"additionalAddressInformation","abstract":"

    The additional address information of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)placeOfBirth":{"name":"placeOfBirth","abstract":"

    The place of birth of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)nationality":{"name":"nationality","abstract":"

    The nationality of the documet owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)race":{"name":"race","abstract":"

    The race of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)religion":{"name":"religion","abstract":"

    The religion of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)profession":{"name":"profession","abstract":"

    The profession of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)maritalStatus":{"name":"maritalStatus","abstract":"

    The marital status of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)residentialStatus":{"name":"residentialStatus","abstract":"

    The residential stauts of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)employer":{"name":"employer","abstract":"

    The employer of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)personalIdNumber":{"name":"personalIdNumber","abstract":"

    The personal identification number.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)documentAdditionalNumber":{"name":"documentAdditionalNumber","abstract":"

    The additional number of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)issuingAuthority":{"name":"issuingAuthority","abstract":"

    The issuing authority of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)driverLicenseDetailedInfo":{"name":"driverLicenseDetailedInfo","abstract":"

    The driver license detailed info.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)conditions":{"name":"conditions","abstract":"

    The driver license conditions.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning BlinkIDRecognizer

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(im)setDewarpedImageDelegate:":{"name":"-setDewarpedImageDelegate:","abstract":"

    Called with dewarped full document image

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(im)setClassifierDelegate:":{"name":"-setClassifierDelegate:","abstract":"

    Called when document is not supported

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)allowBlurFilter":{"name":"allowBlurFilter","abstract":"

    Defines whether blured frames filtering is allowed

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common BlinkId UI settings

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)requireDocumentSidesDataMatch":{"name":"requireDocumentSidesDataMatch","abstract":"

    If YES, MBBlinkIdCombinedRecognizer will check if sides do match when scanning is finished

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)showNotSupportedDialog":{"name":"showNotSupportedDialog","abstract":"

    Defines whether Document Not Supported dialog will be displayed in UI.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)backSideScanningTimeout":{"name":"backSideScanningTimeout","abstract":"

    Option to configure back side scanning timeout.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(im)init":{"name":"-init","abstract":"

    Designated initializer. Initializes the object with default settings.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)address":{"name":"address","abstract":"

    The address of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)sex":{"name":"sex","abstract":"

    The sex of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)additionalNameInformation":{"name":"additionalNameInformation","abstract":"

    The additional name information of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)additionalAddressInformation":{"name":"additionalAddressInformation","abstract":"

    The additional address information of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)placeOfBirth":{"name":"placeOfBirth","abstract":"

    The place of birth of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)nationality":{"name":"nationality","abstract":"

    The nationality of the documet owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)race":{"name":"race","abstract":"

    The race of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)religion":{"name":"religion","abstract":"

    The religion of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)profession":{"name":"profession","abstract":"

    The profession of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)maritalStatus":{"name":"maritalStatus","abstract":"

    The marital status of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)residentialStatus":{"name":"residentialStatus","abstract":"

    The residential stauts of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)employer":{"name":"employer","abstract":"

    The employer of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)personalIdNumber":{"name":"personalIdNumber","abstract":"

    The personal identification number.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)documentAdditionalNumber":{"name":"documentAdditionalNumber","abstract":"

    The additional number of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)issuingAuthority":{"name":"issuingAuthority","abstract":"

    The issuing authority of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)driverLicenseDetailedInfo":{"name":"driverLicenseDetailedInfo","abstract":"

    The driver license detailed info.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)conditions":{"name":"conditions","abstract":"

    The driver license conditions.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning BlinkIDCombinedRecognizer

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(im)setDewarpedImageDelegate:":{"name":"-setDewarpedImageDelegate:","abstract":"

    Called with dewarped full document image

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(im)setClassifierDelegate:":{"name":"-setClassifierDelegate:","abstract":"

    Called when document is not supported

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)allowBlurFilter":{"name":"allowBlurFilter","abstract":"

    Defines whether blured frames filtering is allowed

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBaseOverlayViewController.html#/c:objc(cs)MBBaseOverlayViewController(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan.

    ","parent_name":"MBBaseOverlayViewController"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)autorotateOverlay":{"name":"autorotateOverlay","abstract":"

    If YES, Overlay View Controller will be autorotated independently of ScanningViewController.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)showStatusBar":{"name":"showStatusBar","abstract":"

    If YES, default camera overlay will display Status bar.","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    Default: UIInterfaceOrientationMaskPortrait

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)soundFilePath":{"name":"soundFilePath","abstract":"

    Full path to the sound file which is played when the valid result is scanned.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)displayCancelButton":{"name":"displayCancelButton","abstract":"

    Default: YES.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)displayTorchButton":{"name":"displayTorchButton","abstract":"

    Default: YES.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOcrOverlaySettings.html#/c:objc(cs)MBBaseOcrOverlaySettings(py)showOcrDots":{"name":"showOcrDots","abstract":"

    Property that enables showing of flashing dots over characters being scanned.

    ","parent_name":"MBBaseOcrOverlaySettings"},"Classes/MBBaseOcrOverlaySettings.html":{"name":"MBBaseOcrOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlaySettings.html":{"name":"MBBaseOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlayViewController.html":{"name":"MBBaseOverlayViewController","abstract":"

    Common base class for default overlay view controllers

    "},"Classes/MBBlinkIdCombinedRecognizer.html":{"name":"MBBlinkIdCombinedRecognizer","abstract":"

    Recognizer which can scan front and back side of the United States driver license.

    "},"Classes/MBBlinkIdCombinedRecognizerResult.html":{"name":"MBBlinkIdCombinedRecognizerResult","abstract":"

    Recognizer which can scan front and back side of the United States driver license.

    "},"Classes/MBBlinkIdOverlaySettings.html":{"name":"MBBlinkIdOverlaySettings","abstract":"

    Settings class containing parameters for BlinkId UI

    "},"Classes/MBBlinkIdOverlayViewController.html":{"name":"MBBlinkIdOverlayViewController","abstract":"

    Default version of overlay view controller with modern design.

    "},"Classes/MBBlinkIdRecognizer.html":{"name":"MBBlinkIdRecognizer","abstract":"

    The Blink ID Recognizer is used for scanning Blink ID.

    "},"Classes/MBBlinkIdRecognizerResult.html":{"name":"MBBlinkIdRecognizerResult","abstract":"

    The Blink ID Recognizer is used for scanning Blink ID.

    "},"Classes/MBCameraReticle.html":{"name":"MBCameraReticle","abstract":"

    A camera reticle that locates at the center of screen and uses circle arc rotation to indicate that"},"Classes/MBCameraSettings.html":{"name":"MBCameraSettings","abstract":"

    Settings class containing parameters for camera capture

    "},"Classes/MBCustomOverlayViewController.html":{"name":"MBCustomOverlayViewController","abstract":"

    Custom Overlay View Controller is an abstract class for all custom overlay views placed on top View Controller."},"Classes/MBDPIBasedDewarpPolicy.html":{"name":"MBDPIBasedDewarpPolicy","abstract":"

    DPI based dewarp policy. Dewarp height will be calculated based on"},"Classes/MBDateResult.html":{"name":"MBDateResult","abstract":"

    This class represents a Date result scanned from the image. It supports obtaining raw NSDates, or raw strings"},"Classes/MBDewarpPolicy.html":{"name":"MBDewarpPolicy","abstract":"

    Base class for all dewarp policies

    "},"Classes/MBDisplayableDetection.html":{"name":"MBDisplayableDetection","abstract":"

    Represents a detection that can be displayed on screen.

    "},"Classes/MBDisplayableObject.html":{"name":"MBDisplayableObject","abstract":"

    Represents any object that can be displayed on screen in terms of drawing.

    "},"Classes/MBDisplayablePointsDetection.html":{"name":"MBDisplayablePointsDetection","abstract":"

    Result of the detection of a point detector. Point Detectors are used for QR and similar barcodes

    "},"Classes/MBDisplayableQuadDetection.html":{"name":"MBDisplayableQuadDetection","abstract":"

    Represents a detection that can be displayed on screen.

    "},"Classes/MBDocumentFaceRecognizer.html":{"name":"MBDocumentFaceRecognizer","abstract":"

    Class for configuring Document Face Recognizer Recognizer.

    "},"Classes/MBDocumentFaceRecognizerResult.html":{"name":"MBDocumentFaceRecognizerResult","abstract":"

    Class representing values obtained when scanning Document Face Recognizer

    "},"Classes/MBDocumentOverlaySettings.html":{"name":"MBDocumentOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentOverlayViewController.html":{"name":"MBDocumentOverlayViewController","abstract":"

    Default overlay when using ID card recognizers.

    "},"Classes/MBDocumentSubview.html":{"name":"MBDocumentSubview","abstract":"

    Overlay subview presenting the viewfinder for scanning ID documents

    "},"Classes/MBDocumentVerificationInstructionsSubview.html":{"name":"MBDocumentVerificationInstructionsSubview","abstract":"

    Undocumented

    "},"Classes/MBDocumentVerificationOverlaySettings.html":{"name":"MBDocumentVerificationOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentVerificationOverlayViewController.html":{"name":"MBDocumentVerificationOverlayViewController","abstract":"

    Default overlay when using ID card combined recognizers for verification.

    "},"Classes/MBDocumentVerificationSubview.html":{"name":"MBDocumentVerificationSubview","abstract":"

    Undocumented

    "},"Classes/MBDotsResultSubview.html":{"name":"MBDotsResultSubview","abstract":"

    Overlay subview presenting status of OCR detection. Dots are displayed over locations of detected characters.

    "},"Classes/MBDotsSubview.html":{"name":"MBDotsSubview","abstract":"

    A wrapper around CAShapeLayer which is used for presenting a status about barcode detections

    "},"Classes/MBDriverLicenseDetailedInfo.html":{"name":"MBDriverLicenseDetailedInfo","abstract":"

    Undocumented

    "},"Classes.html#/c:objc(cs)MBEntity":{"name":"MBEntity","abstract":"

    Base class for all entities processors, recognizers, detectors…

    "},"Classes.html#/c:objc(cs)MBErrorReticle":{"name":"MBErrorReticle","abstract":"

    A camera reticle detection that locates at the center of screen and uses circular rotation to indicate that"},"Classes/MBFixedDewarpPolicy.html":{"name":"MBFixedDewarpPolicy","abstract":"

    Fixed dewarp policy. Dewarp height will be exactly as defined by its dewarpHeight.

    "},"Classes/MBFrameGrabberRecognizer.html":{"name":"MBFrameGrabberRecognizer","abstract":"

    A recognizer that can returns success frame.

    "},"Classes/MBGlareStatusSubview.html":{"name":"MBGlareStatusSubview","abstract":"

    Overlay subview presenting the status of glare detection."},"Classes/MBImage.html":{"name":"MBImage","abstract":"

    Object which represents an image.

    "},"Classes/MBImageReturnProcessor.html":{"name":"MBImageReturnProcessor","abstract":"

    Processor that will simply save given image.

    "},"Classes/MBImageReturnProcessorResult.html":{"name":"MBImageReturnProcessorResult","abstract":"

    Processor that will simply save given image.

    "},"Classes/MBMicroblinkApp.html":{"name":"MBMicroblinkApp","abstract":"

    Undocumented

    "},"Classes/MBMicroblinkSDK.html":{"name":"MBMicroblinkSDK","abstract":"

    Entry class for all Microblink SDKs - used for setting up license key and to add support for"},"Classes/MBMrtdCombinedRecognizer.html":{"name":"MBMrtdCombinedRecognizer","abstract":"

    MRTD Combined recognizer

    "},"Classes/MBMrtdCombinedRecognizerResult.html":{"name":"MBMrtdCombinedRecognizerResult","abstract":"

    Class representing values obtained when scanning both front and back side of Croatian ID.

    "},"Classes/MBMrtdRecognizer.html":{"name":"MBMrtdRecognizer","abstract":"

    Recognizer that can recognizer Machine Readable Zone (MRZ) of the Machine Readable Travel Document (MRTD)

    "},"Classes/MBMrtdRecognizerResult.html":{"name":"MBMrtdRecognizerResult","abstract":"

    Result of MBMrtdDetectorRecognizer

    "},"Classes/MBMrtdSpecification.html":{"name":"MBMrtdSpecification","abstract":"

    Mrtd class describes a document which is being detected by MrtdDetector."},"Classes/MBMrzResult.html":{"name":"MBMrzResult","abstract":"

    Undocumented

    "},"Classes/MBNoUpScalingDewarpPolicy.html":{"name":"MBNoUpScalingDewarpPolicy","abstract":"

    No upscaling dewarp policy. Dewarp height will be calculated in a way"},"Classes/MBOcrLayout.html":{"name":"MBOcrLayout","abstract":"

    Class describing the layour of the document on which the OCR was preformed.

    "},"Classes/MBOcrBlock.html":{"name":"MBOcrBlock","abstract":"

    Class representing an Ocr Block. Block consists of one or more Ocr Lines.

    "},"Classes/MBOcrLine.html":{"name":"MBOcrLine","abstract":"

    Class representing an Ocr line. line consists of one or more Ocr chars

    "},"Classes/MBCharWithVariants.html":{"name":"MBCharWithVariants","abstract":"

    Undocumented

    "},"Classes/MBOcrChar.html":{"name":"MBOcrChar","abstract":"

    Class representing an individual OCR character obtained in the OCR process.

    "},"Classes/MBPosition.html":{"name":"MBPosition","abstract":"

    Class representing a position on the image. It’s given as a box, with"},"Classes/MBOverlaySettings.html":{"name":"MBOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBOverlayViewController.html":{"name":"MBOverlayViewController","abstract":"

    Overlay View Controller is an abstract class for all overlay views placed on top View Controller.

    "},"Classes/MBParserGroupProcessor.html":{"name":"MBParserGroupProcessor","abstract":"

    A processor for a group

    "},"Classes/MBParserGroupProcessorResult.html":{"name":"MBParserGroupProcessorResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBPassportRecognizer.html":{"name":"MBPassportRecognizer","abstract":"

    Recognizer which can scan all passports with MRZ.

    "},"Classes/MBPassportRecognizerResult.html":{"name":"MBPassportRecognizerResult","abstract":"

    Recognizer which can scan all passports with MRZ.

    "},"Classes/MBProcessor.html":{"name":"MBProcessor","abstract":"

    Base class for all processors

    "},"Classes/MBProcessorGroup.html":{"name":"MBProcessorGroup","abstract":"

    Class that represents a group of processors that will be executed on same dewarped image.

    "},"Classes/MBProcessorResult.html":{"name":"MBProcessorResult","abstract":"

    Base class for all processor results

    "},"Classes/MBQuadrangle.html":{"name":"MBQuadrangle","abstract":"

    Class represents the quadrangle (arbitrary geometric object with 4 different corner points

    "},"Classes/MBRecognizer.html":{"name":"MBRecognizer","abstract":"

    Base class for all recognizers

    "},"Classes/MBRecognizerCollection.html":{"name":"MBRecognizerCollection","abstract":"

    Settings class containing settings related to scanner behaviour

    "},"Classes/MBRecognizerResult.html":{"name":"MBRecognizerResult","abstract":"

    Base class for all recognizer results

    "},"Classes/MBRecognizerRunner.html":{"name":"MBRecognizerRunner","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBRecognizerRunnerMetadataDelegates.html":{"name":"MBRecognizerRunnerMetadataDelegates","abstract":"

    Class containing all metadata delegates

    "},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html":{"name":"MBRecognizerRunnerViewControllerMetadataDelegates","abstract":"

    Class containing all metadata delegates

    "},"Classes/MBSubview.html":{"name":"MBSubview","abstract":"

    Base class for all overlay subviews

    "},"Classes/MBSuccessFrameGrabberRecognizer.html":{"name":"MBSuccessFrameGrabberRecognizer","abstract":"

    A recognizer that can returns success frame.

    "},"Classes/MBSuccessFrameGrabberRecognizerResult.html":{"name":"MBSuccessFrameGrabberRecognizerResult","abstract":"

    A recognizer that returns SuccessFrameGrabber result.

    "},"Classes/MBTapToFocusSubview.html":{"name":"MBTapToFocusSubview","abstract":"

    Overlay subview presenting the effect which happens when the user taps to focus

    "},"Classes/MBTemplatingClass.html":{"name":"MBTemplatingClass","abstract":"

    Class that represents a specific class of documents when used within Templating API.

    "},"Classes/MBTemplatingRecognizer.html":{"name":"MBTemplatingRecognizer","abstract":"

    Base of all recognizers that support Templating API.

    "},"Classes/MBTemplatingRecognizerResult.html":{"name":"MBTemplatingRecognizerResult","abstract":"

    Base of all recognizers result that support Templating API.

    "},"Classes/MBUsdlCombinedRecognizer.html":{"name":"MBUsdlCombinedRecognizer","abstract":"

    USDL Combined Recognizer.

    "},"Classes/MBUsdlCombinedRecognizerResult.html":{"name":"MBUsdlCombinedRecognizerResult","abstract":"

    Class representing values obtained when scanning both front and back side of US Driver’s License.

    "},"Classes/MBUsdlRecognizer.html":{"name":"MBUsdlRecognizer","abstract":"

    A recognizer that can scan USDL.

    "},"Classes/MBUsdlRecognizerResult.html":{"name":"MBUsdlRecognizerResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBViewControllerFactory.html":{"name":"MBViewControllerFactory","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBVisaRecognizer.html":{"name":"MBVisaRecognizer","abstract":"

    Recognizer which can scan all visas with MRZ.

    "},"Classes/MBVisaRecognizerResult.html":{"name":"MBVisaRecognizerResult","abstract":"

    Recognizer which can scan all visas with MRZ.

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Constants.html":{"name":"Constants","abstract":"

    The following constants are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "},"Type Definitions.html":{"name":"Type Definitions","abstract":"

    The following type definitions are available globally.

    "},"Functions.html":{"name":"Functions","abstract":"

    The following functions are available globally.

    "},"Structs.html":{"name":"Structures","abstract":"

    The following structures are available globally.

    "}} \ No newline at end of file +{"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@top":{"name":"top","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@right":{"name":"right","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@bottom":{"name":"bottom","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@left":{"name":"left","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html":{"name":"_MBImageExtensionFactors","abstract":"

    Struct which describes image extension factors. Each factors denotes by what percentage is image extended."},"Functions.html#/c:@F@CGDeltaMake":{"name":"CGDeltaMake","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointWithDelta":{"name":"CGPointWithDelta","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointDistance":{"name":"CGPointDistance","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointAlongLine":{"name":"CGPointAlongLine","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointRotatedAroundPoint":{"name":"CGPointRotatedAroundPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineMake":{"name":"CGLineMake","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineEqualToLine":{"name":"CGLineEqualToLine","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineMidPoint":{"name":"CGLineMidPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineDirection":{"name":"CGLineDirection","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesAngle":{"name":"CGLinesAngle","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesIntersectAtPoint":{"name":"CGLinesIntersectAtPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineLength":{"name":"CGLineLength","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineScale":{"name":"CGLineScale","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineTranslate":{"name":"CGLineTranslate","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineScaleOnMidPoint":{"name":"CGLineScaleOnMidPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineDelta":{"name":"CGLineDelta","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesAreParallel":{"name":"CGLinesAreParallel","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectTopLeftPoint":{"name":"CGRectTopLeftPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectTopRightPoint":{"name":"CGRectTopRightPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectBottomLeftPoint":{"name":"CGRectBottomLeftPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectBottomRightPoint":{"name":"CGRectBottomRightPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectResize":{"name":"CGRectResize","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectInsetEdge":{"name":"CGRectInsetEdge","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectStackedWithinRectFromEdge":{"name":"CGRectStackedWithinRectFromEdge","abstract":"

    Calculates the stacking of rectangles within a larger rectangle."},"Functions.html#/c:@F@CGRectCenterPoint":{"name":"CGRectCenterPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectClosestTwoCornerPoints":{"name":"CGRectClosestTwoCornerPoints","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineIntersectsRectAtPoint":{"name":"CGLineIntersectsRectAtPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGControlPointsForArcBetweenPointsWithRadius":{"name":"CGControlPointsForArcBetweenPointsWithRadius","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@scanningRegionForFrameInBounds":{"name":"scanningRegionForFrameInBounds","abstract":"

    Undocumented

    "},"Functions.html#/c:MBImageExtensionFactors.h@F@MBMakeImageExtensionFactors":{"name":"MBMakeImageExtensionFactors","abstract":"

    Method which creates a image extension factors structure

    "},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@top":{"name":"top","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@right":{"name":"right","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@bottom":{"name":"bottom","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@left":{"name":"left","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html":{"name":"_MBImageExtensionFactors","abstract":"

    Struct which describes image extension factors. Each factors denotes by what percentage is image extended.","parent_name":"MBImageExtensionFactors"},"Type Definitions/CGLine/.html#/c:@SA@CGLine@FI@point1":{"name":"point1","abstract":"

    Undocumented

    "},"Type Definitions/CGLine/.html#/c:@SA@CGLine@FI@point2":{"name":"point2","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBException.h@T@MBExceptionName":{"name":"MBExceptionName","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBGeometry.h@T@CGDelta":{"name":"CGDelta","abstract":"

    Undocumented

    "},"Type Definitions/CGLine.html":{"name":"CGLine","abstract":"

    Undocumented

    "},"Type Definitions/MBImageExtensionFactors.html":{"name":"MBImageExtensionFactors","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBRecognizerRunnerViewController.h@T@MBCaptureHighResImage":{"name":"MBCaptureHighResImage","abstract":"

    Block for returning high resolution MBImage photo with capture or still output

    "},"Protocols/MBTemplatingClassifier.html#/c:objc(pl)MBTemplatingClassifier(im)classify":{"name":"-classify","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingClassifier"},"Protocols/MBSubviewDelegate.html#/c:objc(pl)MBSubviewDelegate(im)subviewAnimationDidStart:":{"name":"-subviewAnimationDidStart:","abstract":"

    Delegate method called when animation starts

    ","parent_name":"MBSubviewDelegate"},"Protocols/MBSubviewDelegate.html#/c:objc(pl)MBSubviewDelegate(im)subviewAnimationDidFinish:":{"name":"-subviewAnimationDidFinish:","abstract":"

    Delegate method called when animation finishes

    ","parent_name":"MBSubviewDelegate"},"Protocols/MBStringProcessingRecognizerRunnerDelegate.html#/c:objc(pl)MBStringProcessingRecognizerRunnerDelegate(im)recognizerRunner:didFinishProcessingString:":{"name":"-recognizerRunner:didFinishProcessingString:","abstract":"

    Called when MBRecognizerRunner finishes processing given string.","parent_name":"MBStringProcessingRecognizerRunnerDelegate"},"Protocols/MBSignatureImageResult.html#/c:objc(pl)MBSignatureImageResult(py)signatureImage":{"name":"signatureImage","abstract":"

    image of the signature if enabled with MBSignatureImage returnSignatureImage property.

    ","parent_name":"MBSignatureImageResult"},"Protocols/MBSignatureImageDpi.html#/c:objc(pl)MBSignatureImageDpi(py)signatureImageDpi":{"name":"signatureImageDpi","abstract":"

    Property for setting DPI for signature images","parent_name":"MBSignatureImageDpi"},"Protocols/MBSignatureImage.html#/c:objc(pl)MBSignatureImage(py)returnSignatureImage":{"name":"returnSignatureImage","abstract":"

    Sets whether signature image from ID card should be extracted.

    ","parent_name":"MBSignatureImage"},"Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBScanningRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishScanningWithState:":{"name":"-recognizerRunnerViewController:didFinishScanningWithState:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBScanningRecognizerRunnerViewControllerDelegate"},"Protocols/MBScanningRecognizerRunnerDelegate.html#/c:objc(pl)MBScanningRecognizerRunnerDelegate(im)recognizerRunner:didFinishScanningWithState:":{"name":"-recognizerRunner:didFinishScanningWithState:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBScanningRecognizerRunnerDelegate"},"Protocols/MBResultSubview.html#/c:objc(pl)MBResultSubview(im)scanningFinishedWithState:":{"name":"-scanningFinishedWithState:","abstract":"

    This method should be called when MBRecognizerResultState is obtained and reslt state need to be drawn/redrawn.

    ","parent_name":"MBResultSubview"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerUnauthorizedCamera:":{"name":"-recognizerRunnerViewControllerUnauthorizedCamera:","abstract":"

    Scanning library requested authorization for Camera access from the user, but the user declined it.","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFindError:":{"name":"-recognizerRunnerViewController:didFindError:","abstract":"

    Scanning library found an error. The error object is returned and contains","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidClose:":{"name":"-recognizerRunnerViewControllerDidClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerWillPresentHelp:":{"name":"-recognizerRunnerViewControllerWillPresentHelp:","abstract":"

    Called when Scanning library will display help. This can happen when the user presses","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidResumeScanning:":{"name":"-recognizerRunnerViewControllerDidResumeScanning:","abstract":"

    Called when Scanning library is resuming scanning.

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidStopScanning:":{"name":"-recognizerRunnerViewControllerDidStopScanning:","abstract":"

    Called when Scanning library is stopped scanning.

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(py)autorotate":{"name":"autorotate","abstract":"

    MBRecognizerRunnerViewController’s shouldAutorotate will return this value.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    MBRecognizerRunnerViewController’s supportedInterfaceOrientations will return this value.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)pauseScanning":{"name":"-pauseScanning","abstract":"

    Pause scanning without dismissing the camera view.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)isScanningPaused":{"name":"-isScanningPaused","abstract":"

    Retrieve the current state of scanning.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resumeScanningAndResetState:":{"name":"-resumeScanningAndResetState:","abstract":"

    Resumes scanning. Optionally, internal state of recognizers can be reset in the process.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resumeCamera":{"name":"-resumeCamera","abstract":"

    Resumes camera session. This method is automatically called in viewWillAppear when ScanningViewController enters screen.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)pauseCamera":{"name":"-pauseCamera","abstract":"

    Pauses camera session. This method is automatically called in viewDidDissapear when ScanningViewController exits screen.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)isCameraPaused":{"name":"-isCameraPaused","abstract":"

    Retrieve the current state of camera.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)playScanSuccessSound":{"name":"-playScanSuccessSound","abstract":"

    Play scan sound.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)willSetTorchOn:":{"name":"-willSetTorchOn:","abstract":"

    Call to turn on torch without camera overlay

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resetState":{"name":"-resetState","abstract":"
    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)captureHighResImage:":{"name":"-captureHighResImage:","abstract":"

    Method with block for getting high resoultion images

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBQuadDetectorSubview.html#/c:objc(pl)MBQuadDetectorSubview(im)detectionFinishedWithDisplayableQuad:":{"name":"-detectionFinishedWithDisplayableQuad:","abstract":"

    This method should be called when MBDisplayableQuadDetection is obtained and quad need to be drawn/redrawn.

    ","parent_name":"MBQuadDetectorSubview"},"Protocols/MBPointDetectorSubview.html#/c:objc(pl)MBPointDetectorSubview(im)detectionFinishedWithDisplayablePoints:":{"name":"-detectionFinishedWithDisplayablePoints:","abstract":"

    This method should be called when MBDisplayablePointsDetection is obtained and points need to be drawn/redrawn.

    ","parent_name":"MBPointDetectorSubview"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewControllerWillCloseCamera:":{"name":"-overlayViewControllerWillCloseCamera:","abstract":"

    Notification sent when Overlay View Controller wants to close camera, for example,","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewControllerShouldDisplayTorch:":{"name":"-overlayViewControllerShouldDisplayTorch:","abstract":"

    Overlay View Controller should ask it’s delegete if it’s necessary to display Torch (Light) button.","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewController:willSetTorch:":{"name":"-overlayViewController:willSetTorch:","abstract":"

    Overlay View Controller must notify it’s delegete to set the torch mode to On or Off

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)shouldDisplayHelpButton":{"name":"-shouldDisplayHelpButton","abstract":"

    If help mechanism is implemented using PPScanDelegate’s scanningViewControllerWillPresentHelp method,","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isStatusBarPresented":{"name":"-isStatusBarPresented","abstract":"

    Check if status bar is hidden or showed

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isTorchOn":{"name":"-isTorchOn","abstract":"

    Overlay View Controller can ask it’s delegete about the status of Torch

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isCameraAuthorized":{"name":"-isCameraAuthorized","abstract":"

    Overlay View Controller can ask it’s owner whether camera was authorized

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBOcrRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didObtainOcrResult:withResultName:":{"name":"-recognizerRunnerViewController:didObtainOcrResult:withResultName:","abstract":"

    Called when scanning library has MBOcrLayout ready to be displayed on UI.","parent_name":"MBOcrRecognizerRunnerViewControllerDelegate"},"Protocols/MBOcrRecognizerRunnerDelegate.html#/c:objc(pl)MBOcrRecognizerRunnerDelegate(im)recognizerRunner:didObtainOcrResult:withResultName:":{"name":"-recognizerRunner:didObtainOcrResult:withResultName:","abstract":"

    Called when Scanning library has MBOcrLayout available and ready to be displayed on UI.","parent_name":"MBOcrRecognizerRunnerDelegate"},"Protocols/MBNativeResult.html#/c:objc(pl)MBNativeResult(im)nativeResult":{"name":"-nativeResult","abstract":"

    Returns the native object containing the result. For example, for MBDateResult, this method","parent_name":"MBNativeResult"},"Protocols/MBNativeResult.html#/c:objc(pl)MBNativeResult(im)stringResult":{"name":"-stringResult","abstract":"

    Returns the string version of the result. For example, for MBDateResult, this method","parent_name":"MBNativeResult"},"Protocols/MBMrzImageResult.html#/c:objc(pl)MBMrzImageResult(py)mrzImage":{"name":"mrzImage","abstract":"

    face image from the document if enabled with MBMrzImage returnMrzImage property.

    ","parent_name":"MBMrzImageResult"},"Protocols/MBMrzImageDpi.html#/c:objc(pl)MBMrzImageDpi(py)mrzImageDpi":{"name":"mrzImageDpi","abstract":"

    Property for setting DPI for mrz images","parent_name":"MBMrzImageDpi"},"Protocols/MBMrzImage.html#/c:objc(pl)MBMrzImage(py)returnMrzImage":{"name":"returnMrzImage","abstract":"

    Sets whether MRZ image from ID card should be extracted

    ","parent_name":"MBMrzImage"},"Protocols/MBMrzFilter.html#/c:objc(pl)MBMrzFilter(im)mrzFilter":{"name":"-mrzFilter","abstract":"

    Determines whether document should be processed or it is filtered out.

    ","parent_name":"MBMrzFilter"},"Protocols/MBImageProcessingRecognizerRunnerDelegate.html#/c:objc(pl)MBImageProcessingRecognizerRunnerDelegate(im)recognizerRunner:didFinishProcessingImage:":{"name":"-recognizerRunner:didFinishProcessingImage:","abstract":"

    Called when MBRecognizerRunner finishes processing given image.","parent_name":"MBImageProcessingRecognizerRunnerDelegate"},"Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBGlareRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishGlareDetectionWithResult:":{"name":"-recognizerRunnerViewController:didFinishGlareDetectionWithResult:","abstract":"

    Called when scanning library finishes glare detection.","parent_name":"MBGlareRecognizerRunnerViewControllerDelegate"},"Protocols/MBGlareRecognizerRunnerDelegate.html#/c:objc(pl)MBGlareRecognizerRunnerDelegate(im)recognizerRunner:didFinishGlareDetectionWithResult:":{"name":"-recognizerRunner:didFinishGlareDetectionWithResult:","abstract":"

    Called when scanning library finishes glare detection.","parent_name":"MBGlareRecognizerRunnerDelegate"},"Protocols/MBGlareDetection.html#/c:objc(pl)MBGlareDetection(py)detectGlare":{"name":"detectGlare","abstract":"

    Defines if glare detection should be turned on/off.

    ","parent_name":"MBGlareDetection"},"Protocols/MBFullDocumentImageResult.html#/c:objc(pl)MBFullDocumentImageResult(py)fullDocumentImage":{"name":"fullDocumentImage","abstract":"

    full document image if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBFullDocumentImageResult"},"Protocols/MBFullDocumentImageExtensionFactors.html#/c:objc(pl)MBFullDocumentImageExtensionFactors(py)fullDocumentImageExtensionFactors":{"name":"fullDocumentImageExtensionFactors","abstract":"

    Image extension factors for full document image.

    ","parent_name":"MBFullDocumentImageExtensionFactors"},"Protocols/MBFullDocumentImageDpi.html#/c:objc(pl)MBFullDocumentImageDpi(py)fullDocumentImageDpi":{"name":"fullDocumentImageDpi","abstract":"

    Property for setting DPI for full document images","parent_name":"MBFullDocumentImageDpi"},"Protocols/MBFullDocumentImage.html#/c:objc(pl)MBFullDocumentImage(py)returnFullDocumentImage":{"name":"returnFullDocumentImage","abstract":"

    Sets whether full document image of ID card should be extracted.

    ","parent_name":"MBFullDocumentImage"},"Protocols/MBFrameGrabberRecognizerDelegate.html#/c:objc(pl)MBFrameGrabberRecognizerDelegate(im)onFrameAvailable:isFocused:frameQuality:":{"name":"-onFrameAvailable:isFocused:frameQuality:","abstract":"

    Called when {FrameGrabberRecognizer} received new frame for processing.","parent_name":"MBFrameGrabberRecognizerDelegate"},"Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBFirstSideFinishedRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidFinishRecognitionOfFirstSide:":{"name":"-recognizerRunnerViewControllerDidFinishRecognitionOfFirstSide:","abstract":"

    Called when scanning library finishes performing recognition of the first side of the document.","parent_name":"MBFirstSideFinishedRecognizerRunnerViewControllerDelegate"},"Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html#/c:objc(pl)MBFirstSideFinishedRecognizerRunnerDelegate(im)recognizerRunnerDidFinishRecognitionOfFirstSide:":{"name":"-recognizerRunnerDidFinishRecognitionOfFirstSide:","abstract":"

    Called when scanning library finishes performing recognition of the first side of the document.","parent_name":"MBFirstSideFinishedRecognizerRunnerDelegate"},"Protocols/MBFaceImageResult.html#/c:objc(pl)MBFaceImageResult(py)faceImage":{"name":"faceImage","abstract":"

    face image from the document if enabled with MBFaceImage returnFaceImage property.

    ","parent_name":"MBFaceImageResult"},"Protocols/MBFaceImageDpi.html#/c:objc(pl)MBFaceImageDpi(py)faceImageDpi":{"name":"faceImageDpi","abstract":"

    Property for setting DPI for face images","parent_name":"MBFaceImageDpi"},"Protocols/MBFaceImage.html#/c:objc(pl)MBFaceImage(py)returnFaceImage":{"name":"returnFaceImage","abstract":"

    Sets whether face image from ID card should be extracted

    ","parent_name":"MBFaceImage"},"Protocols/MBEncodedSignatureImageResult.html#/c:objc(pl)MBEncodedSignatureImageResult(py)encodedSignatureImage":{"name":"encodedSignatureImage","abstract":"

    JPEG-encoded image of the signature from the document. Available only if enabled with MBEncodeSignatureImage encodeSignatureImage property.

    ","parent_name":"MBEncodedSignatureImageResult"},"Protocols/MBEncodedMrzImageResult.html#/c:objc(pl)MBEncodedMrzImageResult(py)encodedMrzImage":{"name":"encodedMrzImage","abstract":"

    JPEG-encoded MRZ image from the document if enabled with MBEncodeMrzImage encodeMrzImage property.

    ","parent_name":"MBEncodedMrzImageResult"},"Protocols/MBEncodedFullDocumentImageResult.html#/c:objc(pl)MBEncodedFullDocumentImageResult(py)encodedFullDocumentImage":{"name":"encodedFullDocumentImage","abstract":"

    JPEG-encoded full document image if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedFullDocumentImageResult"},"Protocols/MBEncodedFaceImageResult.html#/c:objc(pl)MBEncodedFaceImageResult(py)encodedFaceImage":{"name":"encodedFaceImage","abstract":"

    JPEG-encoded face image from the document if enabled with MBEncodeFaceImage encodeFaceImage property.

    ","parent_name":"MBEncodedFaceImageResult"},"Protocols/MBEncodedCombinedFullDocumentImageResult.html#/c:objc(pl)MBEncodedCombinedFullDocumentImageResult(py)encodedFullDocumentFrontImage":{"name":"encodedFullDocumentFrontImage","abstract":"

    JPEG-encoded full document image of the front side of the document. Available only if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedCombinedFullDocumentImageResult"},"Protocols/MBEncodedCombinedFullDocumentImageResult.html#/c:objc(pl)MBEncodedCombinedFullDocumentImageResult(py)encodedFullDocumentBackImage":{"name":"encodedFullDocumentBackImage","abstract":"

    JPEG-encoded full document image of the back side of the document. Available only if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedCombinedFullDocumentImageResult"},"Protocols/MBEncodeSignatureImage.html#/c:objc(pl)MBEncodeSignatureImage(py)encodeSignatureImage":{"name":"encodeSignatureImage","abstract":"

    Sets whether image of signature on document should be extracted and JPEG-encoded.

    ","parent_name":"MBEncodeSignatureImage"},"Protocols/MBEncodeMrzImage.html#/c:objc(pl)MBEncodeMrzImage(py)encodeMrzImage":{"name":"encodeMrzImage","abstract":"

    Sets whether MRZ image should be extracted from document and JPEG-encoded.

    ","parent_name":"MBEncodeMrzImage"},"Protocols/MBEncodeFullDocumentImage.html#/c:objc(pl)MBEncodeFullDocumentImage(py)encodeFullDocumentImage":{"name":"encodeFullDocumentImage","abstract":"

    Sets whether full document image should be extracted and JPEG-encoded.

    ","parent_name":"MBEncodeFullDocumentImage"},"Protocols/MBEncodeFaceImage.html#/c:objc(pl)MBEncodeFaceImage(py)encodeFaceImage":{"name":"encodeFaceImage","abstract":"

    Sets whether face image should be extracted from document and JPEG-encoded.

    ","parent_name":"MBEncodeFaceImage"},"Protocols/MBDocumentVerificationSubviewDelegate.html#/c:objc(pl)MBDocumentVerificationSubviewDelegate(im)documentVerificationSubviewDidFinishAnimation:":{"name":"-documentVerificationSubviewDidFinishAnimation:","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubviewDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidFinishScanning:state:":{"name":"-documentVerificationOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidTapClose:":{"name":"-documentVerificationOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidFinishScanningFirstSide:":{"name":"-documentVerificationOverlayViewControllerDidFinishScanningFirstSide:","abstract":"

    Called when scanning library finished scanning first side of the document

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidCaptureHighResolutionImage:highResImage:state:":{"name":"-documentVerificationOverlayViewControllerDidCaptureHighResolutionImage:highResImage:state:","abstract":"

    Scanning library did output high resolution image

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidFinishScanning:state:":{"name":"-documentOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidTapClose:":{"name":"-documentOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidCaptureHighResolutionImage:highResImage:":{"name":"-documentOverlayViewControllerDidCaptureHighResolutionImage:highResImage:","abstract":"

    Scanning library did output high resolution image

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDigitalSignatureResult.html#/c:objc(pl)MBDigitalSignatureResult(py)digitalSignature":{"name":"digitalSignature","abstract":"

    Digital signature of the recognition result. Available only if enabled with MBDigitalSignature signResult property.

    ","parent_name":"MBDigitalSignatureResult"},"Protocols/MBDigitalSignatureResult.html#/c:objc(pl)MBDigitalSignatureResult(py)digitalSignatureVersion":{"name":"digitalSignatureVersion","abstract":"

    Version of the digital signature. Available only if enabled with MBDigitalSignature signResult property.

    ","parent_name":"MBDigitalSignatureResult"},"Protocols/MBDigitalSignature.html#/c:objc(pl)MBDigitalSignature(py)signResult":{"name":"signResult","abstract":"

    Whether or not recognition result should be signed.

    ","parent_name":"MBDigitalSignature"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad:":{"name":"-recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishDetectionWithDisplayablePoints:":{"name":"-recognizerRunnerViewController:didFinishDetectionWithDisplayablePoints:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidFailDetection:":{"name":"-recognizerRunnerViewControllerDidFailDetection:","abstract":"

    Called when Scanning library fails to detect any object with any of the currently active recognizers.

    ","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunner:didFinishDetectionWithDisplayableQuad:":{"name":"-recognizerRunner:didFinishDetectionWithDisplayableQuad:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunner:didFinishDetectionWithDisplayablePoints:":{"name":"-recognizerRunner:didFinishDetectionWithDisplayablePoints:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunnerDidFailDetection:":{"name":"-recognizerRunnerDidFailDetection:","abstract":"

    Called when Scanning library fails to detect any object with any of the currently active recognizers.

    ","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didOutputDebugImage:":{"name":"-recognizerRunnerViewController:didOutputDebugImage:","abstract":"

    Scanning library did output debug image","parent_name":"MBDebugRecognizerRunnerViewControllerDelegate"},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didOutputDebugText:":{"name":"-recognizerRunnerViewController:didOutputDebugText:","abstract":"

    Scanning library did output debug text","parent_name":"MBDebugRecognizerRunnerViewControllerDelegate"},"Protocols/MBDebugRecognizerRunnerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerDelegate(im)recognizerRunner:didOutputDebugImage:":{"name":"-recognizerRunner:didOutputDebugImage:","abstract":"

    Scanning library did output debug image","parent_name":"MBDebugRecognizerRunnerDelegate"},"Protocols/MBDebugRecognizerRunnerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerDelegate(im)recognizerRunner:didOutputDebugText:":{"name":"-recognizerRunner:didOutputDebugText:","abstract":"

    Scanning library did output debug text","parent_name":"MBDebugRecognizerRunnerDelegate"},"Protocols/MBCombinedRecognizerResult.html#/c:objc(pl)MBCombinedRecognizerResult(py)documentDataMatch":{"name":"documentDataMatch","abstract":"

    Returns MBDataMatchResultSuccess if data from scanned parts/sides of the document match,","parent_name":"MBCombinedRecognizerResult"},"Protocols/MBCombinedRecognizerResult.html#/c:objc(pl)MBCombinedRecognizerResult(py)scanningFirstSideDone":{"name":"scanningFirstSideDone","abstract":"

    Returns YES if recognizer has finished scanning first side and is now scanning back side,","parent_name":"MBCombinedRecognizerResult"},"Protocols/MBCombinedRecognizer.html#/c:objc(pl)MBCombinedRecognizer(py)combinedResult":{"name":"combinedResult","abstract":"

    Combined result which is associated with this combined recognizer.

    ","parent_name":"MBCombinedRecognizer"},"Protocols/MBCombinedFullDocumentImageResult.html#/c:objc(pl)MBCombinedFullDocumentImageResult(py)fullDocumentFrontImage":{"name":"fullDocumentFrontImage","abstract":"

    front side image of the document if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBCombinedFullDocumentImageResult"},"Protocols/MBCombinedFullDocumentImageResult.html#/c:objc(pl)MBCombinedFullDocumentImageResult(py)fullDocumentBackImage":{"name":"fullDocumentBackImage","abstract":"

    back side image of the document if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBCombinedFullDocumentImageResult"},"Protocols/MBBlinkIdRecognizerDelegate.html#/c:objc(pl)MBBlinkIdRecognizerDelegate(im)onImageAvailable:":{"name":"-onImageAvailable:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerDelegate"},"Protocols/MBBlinkIdRecognizerDelegate.html#/c:objc(pl)MBBlinkIdRecognizerDelegate(im)onDocumentSupportStatus:":{"name":"-onDocumentSupportStatus:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidFinishScanning:state:":{"name":"-blinkIdOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidTapClose:":{"name":"-blinkIdOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidFinishScanningFirstSide:":{"name":"-blinkIdOverlayViewControllerDidFinishScanningFirstSide:","abstract":"

    Called when scanning library finished scanning first side of the document

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html#/c:objc(pl)MBBlinkIdCombinedRecognizerDelegate(im)onCombinedImageAvailable:":{"name":"-onCombinedImageAvailable:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html#/c:objc(pl)MBBlinkIdCombinedRecognizerDelegate(im)onCombinedDocumentSupportStatus:":{"name":"-onCombinedDocumentSupportStatus:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html":{"name":"MBBlinkIdCombinedRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html":{"name":"MBBlinkIdOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBBlinkIdRecognizerDelegate.html":{"name":"MBBlinkIdRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBCombinedFullDocumentImageResult.html":{"name":"MBCombinedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBCombinedRecognizer.html":{"name":"MBCombinedRecognizer","abstract":"

    Undocumented

    "},"Protocols/MBCombinedRecognizerResult.html":{"name":"MBCombinedRecognizerResult","abstract":"

    Undocumented

    "},"Protocols/MBDebugRecognizerRunnerDelegate.html":{"name":"MBDebugRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining debug metadata

    "},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html":{"name":"MBDebugRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining debug metadata

    "},"Protocols/MBDetectionRecognizerRunnerDelegate.html":{"name":"MBDetectionRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining detection results

    "},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html":{"name":"MBDetectionRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining detection results

    "},"Protocols/MBDigitalSignature.html":{"name":"MBDigitalSignature","abstract":"

    Undocumented

    "},"Protocols/MBDigitalSignatureResult.html":{"name":"MBDigitalSignatureResult","abstract":"

    Undocumented

    "},"Protocols/MBDocumentOverlayViewControllerDelegate.html":{"name":"MBDocumentOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html":{"name":"MBDocumentVerificationOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBDocumentVerificationSubviewDelegate.html":{"name":"MBDocumentVerificationSubviewDelegate","abstract":"

    Undocumented

    "},"Protocols/MBEncodeFaceImage.html":{"name":"MBEncodeFaceImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeFullDocumentImage.html":{"name":"MBEncodeFullDocumentImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeMrzImage.html":{"name":"MBEncodeMrzImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeSignatureImage.html":{"name":"MBEncodeSignatureImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodedCombinedFullDocumentImageResult.html":{"name":"MBEncodedCombinedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedFaceImageResult.html":{"name":"MBEncodedFaceImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedFullDocumentImageResult.html":{"name":"MBEncodedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedMrzImageResult.html":{"name":"MBEncodedMrzImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedSignatureImageResult.html":{"name":"MBEncodedSignatureImageResult","abstract":"

    Undocumented

    "},"Protocols/MBFaceImage.html":{"name":"MBFaceImage","abstract":"

    Undocumented

    "},"Protocols/MBFaceImageDpi.html":{"name":"MBFaceImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBFaceImageResult.html":{"name":"MBFaceImageResult","abstract":"

    Undocumented

    "},"Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html":{"name":"MBFirstSideFinishedRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html":{"name":"MBFirstSideFinishedRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFrameGrabberRecognizerDelegate.html":{"name":"MBFrameGrabberRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImage.html":{"name":"MBFullDocumentImage","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageDpi.html":{"name":"MBFullDocumentImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageExtensionFactors.html":{"name":"MBFullDocumentImageExtensionFactors","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageResult.html":{"name":"MBFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBGlareDetection.html":{"name":"MBGlareDetection","abstract":"

    Undocumented

    "},"Protocols/MBGlareRecognizerRunnerDelegate.html":{"name":"MBGlareRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html":{"name":"MBGlareRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBImageProcessingRecognizerRunnerDelegate.html":{"name":"MBImageProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBMrzFilter.html":{"name":"MBMrzFilter","abstract":"

    Undocumented

    "},"Protocols/MBMrzImage.html":{"name":"MBMrzImage","abstract":"

    Undocumented

    "},"Protocols/MBMrzImageDpi.html":{"name":"MBMrzImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBMrzImageResult.html":{"name":"MBMrzImageResult","abstract":"

    Undocumented

    "},"Protocols/MBNativeResult.html":{"name":"MBNativeResult","abstract":"

    Undocumented

    "},"Protocols/MBOcrRecognizerRunnerDelegate.html":{"name":"MBOcrRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining ocr results

    "},"Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html":{"name":"MBOcrRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining ocr results

    "},"Protocols/MBOverlayContainerViewController.html":{"name":"MBOverlayContainerViewController","abstract":"

    Overlay View Controller also needs to notify CameraViewController on certain events."},"Protocols/MBPointDetectorSubview.html":{"name":"MBPointDetectorSubview","abstract":"

    Protocol for processing MBDisplayablePointsDetection. Subviews implementing this protocol process and draw points on the screen (e.g. flashing dots)

    "},"Protocols/MBQuadDetectorSubview.html":{"name":"MBQuadDetectorSubview","abstract":"

    Protocol for processing MBDisplayableQuadDetection. Subviews implementing this protocol process and draw quad on the screen (e.g. viewfinder drawing document outlining)

    "},"Protocols/MBRecognizerRunnerViewController.html":{"name":"MBRecognizerRunnerViewController","abstract":"

    Protocol for View controllers which present camera and provide scanning features

    "},"Protocols/MBRecognizerRunnerViewControllerDelegate.html":{"name":"MBRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for MBRecognizerRunnerViewController actions

    "},"Protocols/MBResultSubview.html":{"name":"MBResultSubview","abstract":"

    Protocol for processing MBRecognizerResult. Subviews implementing this protocol process and draw result data on the screen (e.g. letting users know is scanning was successful)

    "},"Protocols/MBScanningRecognizerRunnerDelegate.html":{"name":"MBScanningRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html":{"name":"MBScanningRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBSignatureImage.html":{"name":"MBSignatureImage","abstract":"

    Undocumented

    "},"Protocols/MBSignatureImageDpi.html":{"name":"MBSignatureImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBSignatureImageResult.html":{"name":"MBSignatureImageResult","abstract":"

    Undocumented

    "},"Protocols/MBStringProcessingRecognizerRunnerDelegate.html":{"name":"MBStringProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBSubviewDelegate.html":{"name":"MBSubviewDelegate","abstract":"

    Protocol which all objects interested in receiving information about overlay subviews need to implement

    "},"Protocols/MBTemplatingClassifier.html":{"name":"MBTemplatingClassifier","abstract":"

    Undocumented

    "},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentType":{"name":"DocumentType","abstract":"

    Mandatory on all driver’s licenses. All barcodes which are using 3-track magnetic","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardVersionNumber":{"name":"StandardVersionNumber","abstract":"

    Mandatory on all driver’s licenses.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFamilyName":{"name":"CustomerFamilyName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFirstName":{"name":"CustomerFirstName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFullName":{"name":"CustomerFullName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DateOfBirth":{"name":"DateOfBirth","abstract":"

    Mandatory on all AAMVA, Magentic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Sex":{"name":"Sex","abstract":"

    Mandatory on all AAMVA, Magentic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@EyeColor":{"name":"EyeColor","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressStreet":{"name":"AddressStreet","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressCity":{"name":"AddressCity","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressJurisdictionCode":{"name":"AddressJurisdictionCode","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressPostalCode":{"name":"AddressPostalCode","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FullAddress":{"name":"FullAddress","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Height":{"name":"Height","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HeightIn":{"name":"HeightIn","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HeightCm":{"name":"HeightCm","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerMiddleName":{"name":"CustomerMiddleName","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HairColor":{"name":"HairColor","abstract":"

    Optional on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NameSuffix":{"name":"NameSuffix","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAFullName":{"name":"AKAFullName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAFamilyName":{"name":"AKAFamilyName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAGivenName":{"name":"AKAGivenName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKASuffixName":{"name":"AKASuffixName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightRange":{"name":"WeightRange","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightPounds":{"name":"WeightPounds","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightKilograms":{"name":"WeightKilograms","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerIdNumber":{"name":"CustomerIdNumber","abstract":"

    Mandatory on all AAMVA and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FamilyNameTruncation":{"name":"FamilyNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FirstNameTruncation":{"name":"FirstNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@MiddleNameTruncation":{"name":"MiddleNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PlaceOfBirth":{"name":"PlaceOfBirth","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressStreet2":{"name":"AddressStreet2","abstract":"

    Optional on all AAMVA barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@RaceEthnicity":{"name":"RaceEthnicity","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NamePrefix":{"name":"NamePrefix","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CountryIdentification":{"name":"CountryIdentification","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceStreetAddress":{"name":"ResidenceStreetAddress","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceStreetAddress2":{"name":"ResidenceStreetAddress2","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceCity":{"name":"ResidenceCity","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceJurisdictionCode":{"name":"ResidenceJurisdictionCode","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidencePostalCode":{"name":"ResidencePostalCode","abstract":"

    Optional on AAMVA 01 barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceFullAddress":{"name":"ResidenceFullAddress","abstract":"

    Optional on AAMVA 01 barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under18":{"name":"Under18","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under19":{"name":"Under19","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under21":{"name":"Under21","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@SocialSecurityNumber":{"name":"SocialSecurityNumber","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKASocialSecurityNumber":{"name":"AKASocialSecurityNumber","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAMiddleName":{"name":"AKAMiddleName","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAPrefixName":{"name":"AKAPrefixName","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@OrganDonor":{"name":"OrganDonor","abstract":"

    Optional on AAMVA 01, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Veteran":{"name":"Veteran","abstract":"

    Optional on AAMVA 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKADateOfBirth":{"name":"AKADateOfBirth","abstract":"

    Optional on AAMVA 01. (MMDDCCYY format)

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuerIdentificationNumber":{"name":"IssuerIdentificationNumber","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentExpirationDate":{"name":"DocumentExpirationDate","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVersionNumber":{"name":"JurisdictionVersionNumber","abstract":"

    Mandatory on all AAMVA and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVehicleClass":{"name":"JurisdictionVehicleClass","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionRestrictionCodes":{"name":"JurisdictionRestrictionCodes","abstract":"

    Mandatory on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionEndorsementCodes":{"name":"JurisdictionEndorsementCodes","abstract":"

    Mandatory on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentIssueDate":{"name":"DocumentIssueDate","abstract":"

    Mandatory on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FederalCommercialVehicleCodes":{"name":"FederalCommercialVehicleCodes","abstract":"

    Mandatory on AAMVA versions 02 and 03.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuingJurisdiction":{"name":"IssuingJurisdiction","abstract":"

    Optional on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardVehicleClassification":{"name":"StandardVehicleClassification","abstract":"

    Optional on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuingJurisdictionName":{"name":"IssuingJurisdictionName","abstract":"

    Optional on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardEndorsementCode":{"name":"StandardEndorsementCode","abstract":"

    Optional on all AAMVA barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardRestrictionCode":{"name":"StandardRestrictionCode","abstract":"

    Optional on all AAMVA barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVehicleClassificationDescription":{"name":"JurisdictionVehicleClassificationDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionEndorsmentCodeDescription":{"name":"JurisdictionEndorsmentCodeDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionRestrictionCodeDescription":{"name":"JurisdictionRestrictionCodeDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@InventoryControlNumber":{"name":"InventoryControlNumber","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CardRevisionDate":{"name":"CardRevisionDate","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentDiscriminator":{"name":"DocumentDiscriminator","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Magnetic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@LimitedDurationDocument":{"name":"LimitedDurationDocument","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AuditInformation":{"name":"AuditInformation","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ComplianceType":{"name":"ComplianceType","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssueTimestamp":{"name":"IssueTimestamp","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitExpirationDate":{"name":"PermitExpirationDate","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitIdentifier":{"name":"PermitIdentifier","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitIssueDate":{"name":"PermitIssueDate","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NumberOfDuplicates":{"name":"NumberOfDuplicates","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HAZMATExpirationDate":{"name":"HAZMATExpirationDate","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@MedicalIndicator":{"name":"MedicalIndicator","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NonResident":{"name":"NonResident","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@UniqueCustomerId":{"name":"UniqueCustomerId","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DataDiscriminator":{"name":"DataDiscriminator","abstract":"

    Optional on compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentExpirationMonth":{"name":"DocumentExpirationMonth","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentNonexpiring":{"name":"DocumentNonexpiring","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@SecurityVersion":{"name":"SecurityVersion","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateEmpty":{"name":"MBRecognizerResultStateEmpty","abstract":"

    Empty

    ","parent_name":"MBRecognizerResultState"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateUncertain":{"name":"MBRecognizerResultStateUncertain","abstract":"

    Uncertain

    ","parent_name":"MBRecognizerResultState"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateValid":{"name":"MBRecognizerResultStateValid","abstract":"

    Valid

    ","parent_name":"MBRecognizerResultState"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeDefault":{"name":"MBFrameQualityEstimationModeDefault","abstract":"

    Default. Frame quality estimation is ON if enabled recognizers require it by default.

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeOn":{"name":"MBFrameQualityEstimationModeOn","abstract":"

    Frame quality estimation is always on

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeOff":{"name":"MBFrameQualityEstimationModeOff","abstract":"

    Frame quality estimation is always off

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeDefault":{"name":"MBRecognitionModeDefault","abstract":"

    Classic, production mode. Results are returned after first valid scanning

    ","parent_name":"MBRecognitionMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeTest":{"name":"MBRecognitionModeTest","abstract":"

    Recognition Test. Results are never returned, recognition is performed repeatedly

    ","parent_name":"MBRecognitionMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeDetectionTest":{"name":"MBRecognitionModeDetectionTest","abstract":"

    Recognition Test. Results are never returned, only detection is performed repeatedly

    ","parent_name":"MBRecognitionMode"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateEmpty":{"name":"MBProcessorResultStateEmpty","abstract":"

    Empty

    ","parent_name":"MBProcessorResultState"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateUncertain":{"name":"MBProcessorResultStateUncertain","abstract":"

    Uncertain

    ","parent_name":"MBProcessorResultState"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateValid":{"name":"MBProcessorResultStateValid","abstract":"

    Valid

    ","parent_name":"MBProcessorResultState"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_AKZIDENZ_GROTESK":{"name":"MB_OCR_FONT_AKZIDENZ_GROTESK","abstract":"

    Akzidenz Grotesk font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARIAL":{"name":"MB_OCR_FONT_ARIAL","abstract":"

    Arial font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARIAL_BLACK":{"name":"MB_OCR_FONT_ARIAL_BLACK","abstract":"

    Arial black font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARNHEM":{"name":"MB_OCR_FONT_ARNHEM","abstract":"

    Arnhem font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_AVANT_GARDE":{"name":"MB_OCR_FONT_AVANT_GARDE","abstract":"

    Avant garde font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_BEMBO":{"name":"MB_OCR_FONT_BEMBO","abstract":"

    Bembo font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_BODONI":{"name":"MB_OCR_FONT_BODONI","abstract":"

    Bodoni font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CALIBRI":{"name":"MB_OCR_FONT_CALIBRI","abstract":"

    Calibri font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CALIBRI_BOLD":{"name":"MB_OCR_FONT_CALIBRI_BOLD","abstract":"

    Calibri bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CHAINPRINTER":{"name":"MB_OCR_FONT_CHAINPRINTER","abstract":"

    Chainprinter font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COMIC_SANS":{"name":"MB_OCR_FONT_COMIC_SANS","abstract":"

    Comic sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CONCERTO_ROUNDED_SG":{"name":"MB_OCR_FONT_CONCERTO_ROUNDED_SG","abstract":"

    Concerto rounded SG font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER":{"name":"MB_OCR_FONT_COURIER","abstract":"

    Courier font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_BOLD":{"name":"MB_OCR_FONT_COURIER_BOLD","abstract":"

    Courier bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_MEDIUM_BOLD":{"name":"MB_OCR_FONT_COURIER_MEDIUM_BOLD","abstract":"

    Courier medium bold","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_NEW_BOLD":{"name":"MB_OCR_FONT_COURIER_NEW_BOLD","abstract":"

    Courier new bold","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_NEW_CE":{"name":"MB_OCR_FONT_COURIER_NEW_CE","abstract":"

    Courier new ce font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_CONDENSED":{"name":"MB_OCR_FONT_COURIER_CONDENSED","abstract":"

    Courier censored font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_DEJAVU_SANS_MONO":{"name":"MB_OCR_FONT_DEJAVU_SANS_MONO","abstract":"

    Dejavu sans mono font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_DIN":{"name":"MB_OCR_FONT_DIN","abstract":"

    Din font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GROTESK_NO_2_SB_BOLD":{"name":"MB_OCR_FONT_EUROPA_GROTESK_NO_2_SB_BOLD","abstract":"

    Europa grotesk no 2 SB bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROSTILE":{"name":"MB_OCR_FONT_EUROSTILE","abstract":"

    Eurostile font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_F25_BANK_PRINTER_BOLD":{"name":"MB_OCR_FONT_F25_BANK_PRINTER_BOLD","abstract":"

    F25 bank printer bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FRANKLIN_GOTHIC":{"name":"MB_OCR_FONT_FRANKLIN_GOTHIC","abstract":"

    Franklin gothic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FRUTIGER":{"name":"MB_OCR_FONT_FRUTIGER","abstract":"

    Frutiger font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FUTURA":{"name":"MB_OCR_FONT_FUTURA","abstract":"

    Futura font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FUTURA_BOLD":{"name":"MB_OCR_FONT_FUTURA_BOLD","abstract":"

    Futura bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GARAMOND":{"name":"MB_OCR_FONT_GARAMOND","abstract":"

    Garamond font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GEORGIA":{"name":"MB_OCR_FONT_GEORGIA","abstract":"

    Georgia font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GILL_SANS":{"name":"MB_OCR_FONT_GILL_SANS","abstract":"

    Gill sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HANDWRITTEN":{"name":"MB_OCR_FONT_HANDWRITTEN","abstract":"

    Handwritten font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA":{"name":"MB_OCR_FONT_HELVETICA","abstract":"

    Helvetica font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA_BOLD":{"name":"MB_OCR_FONT_HELVETICA_BOLD","abstract":"

    Helvetica bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA_CONDENSED_LIGHT":{"name":"MB_OCR_FONT_HELVETICA_CONDENSED_LIGHT","abstract":"

    Helvetica condensed light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HYPERMARKET":{"name":"MB_OCR_FONT_HYPERMARKET","abstract":"

    Hypermarket font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_INTERSTATE":{"name":"MB_OCR_FONT_INTERSTATE","abstract":"

    Interstate font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LATIN_MODERN":{"name":"MB_OCR_FONT_LATIN_MODERN","abstract":"

    Latin modern math font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LATIN_MODERN_ITALIC":{"name":"MB_OCR_FONT_LATIN_MODERN_ITALIC","abstract":"

    Latin modern italic font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LETTER_GOTHIC":{"name":"MB_OCR_FONT_LETTER_GOTHIC","abstract":"

    Letter gothic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LUCIDA":{"name":"MB_OCR_FONT_LUCIDA","abstract":"

    Lucida font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LUCIDA_SANS":{"name":"MB_OCR_FONT_LUCIDA_SANS","abstract":"

    Lucida sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MATRIX":{"name":"MB_OCR_FONT_MATRIX","abstract":"

    Matrix font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_META":{"name":"MB_OCR_FONT_META","abstract":"

    Meta font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MINION":{"name":"MB_OCR_FONT_MINION","abstract":"

    Minion font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OCRA":{"name":"MB_OCR_FONT_OCRA","abstract":"

    OCR A font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OCRB":{"name":"MB_OCR_FONT_OCRB","abstract":"

    OCR B font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OFFICINA":{"name":"MB_OCR_FONT_OFFICINA","abstract":"

    Officina font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OPTIMA":{"name":"MB_OCR_FONT_OPTIMA","abstract":"

    Optima font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_PRINTF":{"name":"MB_OCR_FONT_PRINTF","abstract":"

    Printf font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROCKWELL":{"name":"MB_OCR_FONT_ROCKWELL","abstract":"

    Rockwell font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROTIS_SANS_SERIF":{"name":"MB_OCR_FONT_ROTIS_SANS_SERIF","abstract":"

    Rotis sans serif font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROTIS_SERIF":{"name":"MB_OCR_FONT_ROTIS_SERIF","abstract":"

    Rotis serif font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_SABON":{"name":"MB_OCR_FONT_SABON","abstract":"

    Sabon font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_STONE":{"name":"MB_OCR_FONT_STONE","abstract":"

    Stone font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_SV_BASIC_MANUAL":{"name":"MB_OCR_FONT_SV_BASIC_MANUAL","abstract":"

    SV basic manual font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TAHOMA":{"name":"MB_OCR_FONT_TAHOMA","abstract":"

    Tahoma font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TAHOMA_BOLD":{"name":"MB_OCR_FONT_TAHOMA_BOLD","abstract":"

    Tahoma bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TEX_GYRE_TERMES":{"name":"MB_OCR_FONT_TEX_GYRE_TERMES","abstract":"

    Tex gyre termes font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TEX_GYRE_TERMES_ITALIC":{"name":"MB_OCR_FONT_TEX_GYRE_TERMES_ITALIC","abstract":"

    Tex gyre termes italic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_THE_SANS_MONO_CONDENSED_BLACK":{"name":"MB_OCR_FONT_THE_SANS_MONO_CONDENSED_BLACK","abstract":"

    Sans mono condensed black font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_THESIS":{"name":"MB_OCR_FONT_THESIS","abstract":"

    Thesis font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TICKET_DE_CAISSE":{"name":"MB_OCR_FONT_TICKET_DE_CAISSE","abstract":"

    Ticket de caisse font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TIMES_NEW_ROMAN":{"name":"MB_OCR_FONT_TIMES_NEW_ROMAN","abstract":"

    Times new roman font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TRAJAN":{"name":"MB_OCR_FONT_TRAJAN","abstract":"

    Trajan font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TRINITE":{"name":"MB_OCR_FONT_TRINITE","abstract":"

    Trinite font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNIVERS":{"name":"MB_OCR_FONT_UNIVERS","abstract":"

    Univers font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_VERDANA":{"name":"MB_OCR_FONT_VERDANA","abstract":"

    Verdana font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_VOLTAIRE":{"name":"MB_OCR_FONT_VOLTAIRE","abstract":"

    Voltaire font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_WALBAUM":{"name":"MB_OCR_FONT_WALBAUM","abstract":"

    Walbaum font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GRO_SB":{"name":"MB_OCR_FONT_EUROPA_GRO_SB","abstract":"

    Europa gro sb font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GRO_SB_LIGHT":{"name":"MB_OCR_FONT_EUROPA_GRO_SB_LIGHT","abstract":"

    Europa gro sb light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ANTONIO_REGULAR":{"name":"MB_OCR_FONT_ANTONIO_REGULAR","abstract":"

    Antonio regular font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CORPORATE_LIGHT":{"name":"MB_OCR_FONT_CORPORATE_LIGHT","abstract":"

    Corporate S Light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MICR":{"name":"MB_OCR_FONT_MICR","abstract":"

    MICR font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARABIC_NILE":{"name":"MB_OCR_FONT_ARABIC_NILE","abstract":"

    Arabic font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNKNOWN":{"name":"MB_OCR_FONT_UNKNOWN","abstract":"

    Unknown font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_XITS_MATH":{"name":"MB_OCR_FONT_XITS_MATH","abstract":"

    XITS Math font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ANY":{"name":"MB_OCR_FONT_ANY","abstract":"

    Any of the other listed fonts

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNKNOWN_MATH":{"name":"MB_OCR_FONT_UNKNOWN_MATH","abstract":"

    Unknown math font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UKDL_LIGHT":{"name":"MB_OCR_FONT_UKDL_LIGHT","abstract":"

    Font found on UKDL licenses

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COUNT":{"name":"MB_OCR_FONT_COUNT","abstract":"

    Must be last as it holds the number of available fonts

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FE_SCHRIFT":{"name":"MB_OCR_FONT_FE_SCHRIFT","abstract":"

    German license plate font *

    ","parent_name":"MBOcrFont"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeUnknown":{"name":"MBMrtdTypeUnknown","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeIdentityCard":{"name":"MBMrtdTypeIdentityCard","abstract":"

    Identity card

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypePassport":{"name":"MBMrtdTypePassport","abstract":"

    Passport

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeVisa":{"name":"MBMrtdTypeVisa","abstract":"

    Visa

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeGreenCard":{"name":"MBMrtdTypeGreenCard","abstract":"

    US Green Card

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd1":{"name":"MBMrtdSpecificationTd1","abstract":"

    Preset for detecting TD1 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd2":{"name":"MBMrtdSpecificationTd2","abstract":"

    Preset for detecting TD2 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd3":{"name":"MBMrtdSpecificationTd3","abstract":"

    Preset for detecting TD3 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationUp":{"name":"MBProcessingOrientationUp","abstract":"

    Text oriented same as picture

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationRight":{"name":"MBProcessingOrientationRight","abstract":"

    Text is rotated 90 degrees clockwise

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationDown":{"name":"MBProcessingOrientationDown","abstract":"

    Text is upside down

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationLeft":{"name":"MBProcessingOrientationLeft","abstract":"

    Text is rotated 90 degrees counterclockwise

    ","parent_name":"MBProcessingOrientation"},"Enums/MBDocumentVerificationHighResImageState.html#/c:@E@MBDocumentVerificationHighResImageState@MBDocumentVerificationHighResImageStateFrontSide":{"name":"MBDocumentVerificationHighResImageStateFrontSide","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationHighResImageState"},"Enums/MBDocumentVerificationHighResImageState.html#/c:@E@MBDocumentVerificationHighResImageState@MBDocumentVerificationHighResImageStateBackSideSide":{"name":"MBDocumentVerificationHighResImageStateBackSideSide","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationHighResImageState"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypeTD1":{"name":"MBDocumentFaceDetectorTypeTD1","abstract":"

    Uses document detector for TD1 size identity cards

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypeTD2":{"name":"MBDocumentFaceDetectorTypeTD2","abstract":"

    Uses document detector for TD2 size identity cards

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypePassportsAndVisas":{"name":"MBDocumentFaceDetectorTypePassportsAndVisas","abstract":"

    Uses MRTD detector for detecting documents with MRZ

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusSuccess":{"name":"MBDetectionStatusSuccess","abstract":"

    Object was successfuly detected.

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusFail":{"name":"MBDetectionStatusFail","abstract":"

    Object was not detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraTooHigh":{"name":"MBDetectionStatusCameraTooHigh","abstract":"

    Object was successfully detected, but the camera was too far above the object for processing

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraAtAngle":{"name":"MBDetectionStatusCameraAtAngle","abstract":"

    Object was successfully detected, but the perspective angle of camera is too high

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraRotated":{"name":"MBDetectionStatusCameraRotated","abstract":"

    Object was successfully detected, but the object is rotated and not aligned to the camera edges

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusQRSuccess":{"name":"MBDetectionStatusQRSuccess","abstract":"

    QR code was successfully detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusPdf417Success":{"name":"MBDetectionStatusPdf417Success","abstract":"

    PDF417 barcode was successfully detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusFallbackSuccess":{"name":"MBDetectionStatusFallbackSuccess","abstract":"

    Object was successfully detected using a fallback algorithm

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusPartialForm":{"name":"MBDetectionStatusPartialForm","abstract":"

    Object was detected, but is only partially visible on screen

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraTooNear":{"name":"MBDetectionStatusCameraTooNear","abstract":"

    Object was successfully detected, but the camera is too near to the object for processing

    ","parent_name":"MBDetectionStatus"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultNotPerformed":{"name":"MBDataMatchResultNotPerformed","abstract":"

    Data matching has not been performed.

    ","parent_name":"MBDataMatchResult"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultFailed":{"name":"MBDataMatchResultFailed","abstract":"

    Data does not match.

    ","parent_name":"MBDataMatchResult"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultSuccess":{"name":"MBDataMatchResultSuccess","abstract":"

    Data match.

    ","parent_name":"MBDataMatchResult"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionNone":{"name":"MBCameraAutofocusRestrictionNone","abstract":"

    Default. Indicates that the autofocus system should not restrict the focus range.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionNear":{"name":"MBCameraAutofocusRestrictionNear","abstract":"

    Indicates that the autofocus system should restrict the focus range for subject matter that is near to the camera.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionFar":{"name":"MBCameraAutofocusRestrictionFar","abstract":"

    Indicates that the autofocus system should restrict the focus range for subject matter that is far from the camera.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraType.html#/c:@E@MBCameraType@MBCameraTypeBack":{"name":"MBCameraTypeBack","abstract":"

    Back facing camera

    ","parent_name":"MBCameraType"},"Enums/MBCameraType.html#/c:@E@MBCameraType@MBCameraTypeFront":{"name":"MBCameraTypeFront","abstract":"

    Front facing camera

    ","parent_name":"MBCameraType"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPreset480p":{"name":"MBCameraPreset480p","abstract":"

    480p video will always be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPreset720p":{"name":"MBCameraPreset720p","abstract":"

    720p video will always be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetOptimal":{"name":"MBCameraPresetOptimal","abstract":"

    The library will calculate optimal resolution based on the use case and device used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetMax":{"name":"MBCameraPresetMax","abstract":"

    Device’s maximal video resolution will be used.

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetPhoto":{"name":"MBCameraPresetPhoto","abstract":"

    Device’s photo preview resolution will be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html":{"name":"MBCameraPreset","abstract":"

    Camera resolution preset

    "},"Enums/MBCameraType.html":{"name":"MBCameraType","abstract":"

    Camera type

    "},"Enums/MBCameraAutofocusRestriction.html":{"name":"MBCameraAutofocusRestriction","abstract":"

    Camera autofocus restricion mode

    "},"Enums/MBDataMatchResult.html":{"name":"MBDataMatchResult","abstract":"

    Result of the data matching algorithm for scanned parts/sides of the document.

    "},"Enums/MBDetectionStatus.html":{"name":"MBDetectionStatus","abstract":"

    Status of the object detection in Microblink SDK

    "},"Enums/MBDocumentFaceDetectorType.html":{"name":"MBDocumentFaceDetectorType","abstract":"

    Enumeration of all supported document types for MBDocumentFaceRecognizer

    "},"Enums/MBDocumentVerificationHighResImageState.html":{"name":"MBDocumentVerificationHighResImageState","abstract":"

    Undocumented

    "},"Enums/MBProcessingOrientation.html":{"name":"MBProcessingOrientation","abstract":"

    Enum which describes text orientation on an image.

    "},"Enums/MBMrtdSpecificationPreset.html":{"name":"MBMrtdSpecificationPreset","abstract":"

    Presets which can be used to instantiate mrtd specification for a specific mrtd format

    "},"Enums/MBMrtdDocumentType.html":{"name":"MBMrtdDocumentType","abstract":"

    Supported MRTD document types

    "},"Enums/MBOcrFont.html":{"name":"MBOcrFont","abstract":"

    A list of fonts supported by BlinkOCR

    "},"Enums/MBProcessorResultState.html":{"name":"MBProcessorResultState","abstract":"

    Enumeration of posibble processor result state

    "},"Enums/MBRecognitionMode.html":{"name":"MBRecognitionMode","abstract":"

    Denotes the mode in which Recognizers performs recognition

    "},"Enums/MBFrameQualityEstimationMode.html":{"name":"MBFrameQualityEstimationMode","abstract":"

    Denotes the mode in which FrameQuality estimation works

    "},"Enums/MBRecognizerResultState.html":{"name":"MBRecognizerResultState","abstract":"

    Enumeration of posibble recognizer result state

    "},"Enums/MBUsdlKeys.html":{"name":"MBUsdlKeys","abstract":"

    Possible keys that can be used for obtaining USDL result elements.

    "},"Constants.html#/c:@MBIllegalModificationException":{"name":"MBIllegalModificationException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseKeyException":{"name":"MBInvalidLicenseKeyException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseeKeyException":{"name":"MBInvalidLicenseeKeyException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseResourceException":{"name":"MBInvalidLicenseResourceException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidBundleException":{"name":"MBInvalidBundleException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBMissingSettingsException":{"name":"MBMissingSettingsException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidArgumentException":{"name":"MBInvalidArgumentException","abstract":"

    Undocumented

    "},"Classes/MBVisaRecognizerResult.html#/c:objc(cs)MBVisaRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVisaRecognizerResult"},"Classes/MBVisaRecognizerResult.html#/c:objc(cs)MBVisaRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone.

    ","parent_name":"MBVisaRecognizerResult"},"Classes/MBVisaRecognizer.html#/c:objc(cs)MBVisaRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVisaRecognizer"},"Classes/MBVisaRecognizer.html#/c:objc(cs)MBVisaRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning VisaRecognizer

    ","parent_name":"MBVisaRecognizer"},"Classes/MBViewControllerFactory.html#/c:objc(cs)MBViewControllerFactory(cm)recognizerRunnerViewControllerWithOverlayViewController:":{"name":"+recognizerRunnerViewControllerWithOverlayViewController:","abstract":"

    Method creates a camera view controller which is responsible for displaying the","parent_name":"MBViewControllerFactory"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)address":{"name":"address","abstract":"

    The full address of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)sex":{"name":"sex","abstract":"

    TThe sex of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)getField:":{"name":"-getField:","abstract":"

    Returns a string value for a given key.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)optionalElements":{"name":"-optionalElements","abstract":"

    Array of elements that are not part of AAMVA standard and are specific to each US state.","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)result":{"name":"result","abstract":"

    USDL recognizer results

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)address":{"name":"address","abstract":"

    The full address of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)sex":{"name":"sex","abstract":"

    TThe sex of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)getField:":{"name":"-getField:","abstract":"

    Returns a string value for a given key.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)optionalElements":{"name":"-optionalElements","abstract":"

    Array of elements that are not part of AAMVA standard and are specific to each US state.","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning both sides of USDL

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)type":{"name":"type","abstract":"

    Type of document this recognizer will scan.

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBTemplatingRecognizerResult.html#/c:objc(cs)MBTemplatingRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingRecognizerResult"},"Classes/MBTemplatingRecognizerResult.html#/c:objc(cs)MBTemplatingRecognizerResult(py)templatingClass":{"name":"templatingClass","abstract":"

    Returns the MBTemplatingClass for recognized document. If classification failed,","parent_name":"MBTemplatingRecognizerResult"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)templatingResult":{"name":"templatingResult","abstract":"

    Templating recognizer result

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)useGlareDetector":{"name":"useGlareDetector","abstract":"

    Defines if glare detection should be turned on/off for Templating Recognizer.

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)templatingClasses":{"name":"templatingClasses","abstract":"

    Returns all available templating classes

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setClassificationProcessorGroups:":{"name":"-setClassificationProcessorGroups:","abstract":"

    Sets processor groups that will be executed before classification

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)getClassificationProcessorGroups":{"name":"-getClassificationProcessorGroups","abstract":"

    Returns the currently set array of classification processor groups.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setNonClassificationProcessorGroups:":{"name":"-setNonClassificationProcessorGroups:","abstract":"

    Sets processor groups that will be executed if MBTemplatingClassifier’s classify returns YES.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)getNonClassificationProcessorGroups":{"name":"-getNonClassificationProcessorGroups","abstract":"

    Returns the currently set array of non-classification processor groups.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setTemplatingClassifier:":{"name":"-setTemplatingClassifier:","abstract":"

    Sets the classifier which will tell whether currently processed document belongs to this class.","parent_name":"MBTemplatingClass"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Designated initializer

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)willFocusAtPoint:":{"name":"-willFocusAtPoint:","abstract":"

    Undocumented

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBSuccessFrameGrabberRecognizerResult.html#/c:objc(cs)MBSuccessFrameGrabberRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizerResult"},"Classes/MBSuccessFrameGrabberRecognizerResult.html#/c:objc(cs)MBSuccessFrameGrabberRecognizerResult(py)successFrame":{"name":"successFrame","abstract":"

    Success frame PPImage of successful frame

    ","parent_name":"MBSuccessFrameGrabberRecognizerResult"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(im)initWithRecognizer:":{"name":"-initWithRecognizer:","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(py)result":{"name":"result","abstract":"

    SuccessFrameGrabber recognizer results

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(py)slaveRecognizer":{"name":"slaveRecognizer","abstract":"

    Slave recognizer that is wrapped with SuccessFrameGrabber

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSubview.html#/c:objc(cs)MBSubview(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified on Overlay events

    ","parent_name":"MBSubview"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)debugRecognizerRunnerViewControllerDelegate":{"name":"debugRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)detectionRecognizerRunnerViewControllerDelegate":{"name":"detectionRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)ocrRecognizerRunnerViewControllerDelegate":{"name":"ocrRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)glareRecognizerRunnerViewControllerDelegate":{"name":"glareRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)firstSideFinishedRecognizerRunnerViewControllerDelegate":{"name":"firstSideFinishedRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)debugRecognizerRunnerDelegate":{"name":"debugRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)detectionRecognizerRunnerDelegate":{"name":"detectionRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)ocrRecognizerRunnerDelegate":{"name":"ocrRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)glareRecognizerRunnerDelegate":{"name":"glareRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)firstSideFinishedRecognizerRunnerDelegate":{"name":"firstSideFinishedRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)metadataDelegates":{"name":"metadataDelegates","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)scanningRecognizerRunnerDelegate":{"name":"scanningRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)imageProcessingRecognizerRunnerDelegate":{"name":"imageProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)stringProcessingRecognizerRunnerDelegate":{"name":"stringProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)coordinator":{"name":"coordinator","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)initWithRecognizerCollection:":{"name":"-initWithRecognizerCollection:","abstract":"

    Initializes the recognizer runner

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)resetState":{"name":"-resetState","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)resetState:":{"name":"-resetState:","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)cancelProcessing":{"name":"-cancelProcessing","abstract":"

    Cancels all dispatched, but not yet processed image processing requests issued with processImage.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)processImage:":{"name":"-processImage:","abstract":"

    Processes a MBImage object synchronously using current settings.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)processString:":{"name":"-processString:","abstract":"

    Processes a NSString object synchronously using current settings.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Method which is used to apply MBSettings object given by currentSettings property

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerResult.html#/c:objc(cs)MBRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerResult"},"Classes/MBRecognizerResult.html#/c:objc(cs)MBRecognizerResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerResult"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(im)initWithRecognizers:":{"name":"-initWithRecognizers:","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)recognizerList":{"name":"recognizerList","abstract":"

    Contains MBRecognizer objects - each individual recognizer.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)allowMultipleResults":{"name":"allowMultipleResults","abstract":"

    If NO, recognizer chain will stop when finds first valid scan results and will return just it.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)partialRecognitionTimeout":{"name":"partialRecognitionTimeout","abstract":"

    Timeout interval in which the partial scanning results will be returned to the user.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)recognitionMode":{"name":"recognitionMode","abstract":"

    Recognition mode.

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)frameQualityEstimationMode":{"name":"frameQualityEstimationMode","abstract":"

    Frame quality estimation mode. If frame quality estimation is on, some video frames will be skipped, if","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizer.html#/c:objc(cs)MBRecognizer(py)baseResult":{"name":"baseResult","abstract":"

    Base recognizer result.

    ","parent_name":"MBRecognizer"},"Classes/MBRecognizer.html#/c:objc(cs)MBRecognizer(im)getOptimalHudOrientation":{"name":"-getOptimalHudOrientation","abstract":"

    Undocumented

    ","parent_name":"MBRecognizer"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)upperLeft":{"name":"upperLeft","abstract":"

    Upper left point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)upperRight":{"name":"upperRight","abstract":"

    Upper right point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)lowerLeft":{"name":"lowerLeft","abstract":"

    Lower left point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)lowerRight":{"name":"lowerRight","abstract":"

    Lower right point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)initWithUpperLeft:upperRight:lowerLeft:lowerRight:":{"name":"-initWithUpperLeft:upperRight:lowerLeft:lowerRight:","abstract":"

    Designated initializer which initializes all four corners of the quadrangle

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)toPointsArray":{"name":"-toPointsArray","abstract":"

    Returns points of the quadrangle in array in the following order:

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)quadrangleWithTransformation:":{"name":"-quadrangleWithTransformation:","abstract":"

    Creates new quadrangle from this quadrangle, transformed by specified affine transformation.

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)center":{"name":"-center","abstract":"

    Returns the center point of the Quadrangle

    ","parent_name":"MBQuadrangle"},"Classes/MBProcessorResult.html#/c:objc(cs)MBProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBProcessorResult"},"Classes/MBProcessorResult.html#/c:objc(cs)MBProcessorResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBProcessorResult"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(im)initWithProcessingLocation:dewarpPolicy:andProcessors:":{"name":"-initWithProcessingLocation:dewarpPolicy:andProcessors:","abstract":"

    Constructor for MBProcessorGroup.

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(py)processors":{"name":"processors","abstract":"

    Processors that are members of the processor group

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessor.html#/c:objc(cs)MBProcessor(py)baseResult":{"name":"baseResult","abstract":"

    Base processor result

    ","parent_name":"MBProcessor"},"Classes/MBPassportRecognizerResult.html#/c:objc(cs)MBPassportRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPassportRecognizerResult"},"Classes/MBPassportRecognizerResult.html#/c:objc(cs)MBPassportRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone.

    ","parent_name":"MBPassportRecognizerResult"},"Classes/MBPassportRecognizer.html#/c:objc(cs)MBPassportRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPassportRecognizer"},"Classes/MBPassportRecognizer.html#/c:objc(cs)MBPassportRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning PassportRecognizer

    ","parent_name":"MBPassportRecognizer"},"Classes/MBParserGroupProcessorResult.html#/c:objc(cs)MBParserGroupProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessorResult"},"Classes/MBParserGroupProcessorResult.html#/c:objc(cs)MBParserGroupProcessorResult(py)ocrLayout":{"name":"ocrLayout","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessorResult"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(im)initWithParsers:":{"name":"-initWithParsers:","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)parsers":{"name":"parsers","abstract":"

    Getting array of readonly parsers

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)result":{"name":"result","abstract":"

    MBParserGroupProcessor processor result

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)oneOptionalElementInGroupShouldBeValid":{"name":"oneOptionalElementInGroupShouldBeValid","abstract":"

    Set if one optional element should be valid

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOverlayViewController"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(py)recognizerRunnerViewController":{"name":"recognizerRunnerViewController","abstract":"

    Overlay View’s delegate object. Responsible for sending messages to PhotoPay’s","parent_name":"MBOverlayViewController"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(py)cameraPausedView":{"name":"cameraPausedView","abstract":"

    Label which is displayed on screen when camera is paused, but still exists on the screen.

    ","parent_name":"MBOverlayViewController"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(py)language":{"name":"language","abstract":"

    If default overlay contains textual information, text will be localized to this language

    ","parent_name":"MBOverlaySettings"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(py)cameraSettings":{"name":"cameraSettings","abstract":"

    Camera settings

    ","parent_name":"MBOverlaySettings"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(im)init":{"name":"-init","abstract":"

    Initializes the object with default settings (see above for defaults).

    ","parent_name":"MBOverlaySettings"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ul":{"name":"ul","abstract":"

    Upper left corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ur":{"name":"ur","abstract":"

    Upper right corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ll":{"name":"ll","abstract":"

    Lower left corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)lr":{"name":"lr","abstract":"

    Lower right corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)initWithUpperLeft:upperRight:lowerLeft:lowerRight:":{"name":"-initWithUpperLeft:upperRight:lowerLeft:lowerRight:","abstract":"

    Initializer

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)positionWithOffset:":{"name":"-positionWithOffset:","abstract":"

    Creates a position with offset to a current position. Offset is added.

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)rect":{"name":"-rect","abstract":"

    Helper method converting Position to CGRect

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)center":{"name":"-center","abstract":"

    Helper method calculating the center of the Position

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)height":{"name":"-height","abstract":"

    Helper method calculating the height of the position

    ","parent_name":"MBPosition"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)value":{"name":"value","abstract":"

    Unicode value of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)position":{"name":"position","abstract":"

    Position of the char on the image, in the coordinate system of the image

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)height":{"name":"height","abstract":"

    Height of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)uncertain":{"name":"uncertain","abstract":"

    YES if char is uncertain

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)quality":{"name":"quality","abstract":"

    Integer value representing OCR quality of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)font":{"name":"font","abstract":"

    Font of the character

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(im)initWithValue:position:height:":{"name":"-initWithValue:position:height:","abstract":"

    Initializer for a char

    ","parent_name":"MBOcrChar"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(py)character":{"name":"character","abstract":"

    Character that was recognised

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(py)variants":{"name":"variants","abstract":"

    Alternative characters which are possible instead of this character.

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(im)initWithValue:":{"name":"-initWithValue:","abstract":"

    Initializer for a CharWithVariant

    ","parent_name":"MBCharWithVariants"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(py)chars":{"name":"chars","abstract":"

    Ocr chars of the line

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(py)position":{"name":"position","abstract":"

    Position of the line on the image, in the coordinate system of the image

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)initWithOcrChars:position:":{"name":"-initWithOcrChars:position:","abstract":"

    Initializer from chars

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr line

    ","parent_name":"MBOcrLine"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(py)lines":{"name":"lines","abstract":"

    Ocr lines of the block

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(py)position":{"name":"position","abstract":"

    Position of the block on the image, in the coordinate system of the image

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)initWithOcrLines:position:":{"name":"-initWithOcrLines:position:","abstract":"

    Initializer from lines

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr block

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)box":{"name":"box","abstract":"

    Bounding box of the layout. Given in the coordinate system of the image on which OCR was performed.

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)blocks":{"name":"blocks","abstract":"

    Ocr blocks of the layout

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)transform":{"name":"transform","abstract":"

    Tranformation matrix which transforms the coordinate system in which the OCR layout is given","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)transformInvalid":{"name":"transformInvalid","abstract":"

    YES if transform is not valid (e.g, there’s no UI to which it can be calculated. NO otherwise.

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)position":{"name":"position","abstract":"

    Position of layout on the image, in the coordinate system of the image

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)flipped":{"name":"flipped","abstract":"

    OCR layout was recognized from flipped image

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)initWithOcrBlocks:transform:box:flipped:":{"name":"-initWithOcrBlocks:transform:box:flipped:","abstract":"

    Initializer from blocks and transformation

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)initWithOcrBlocks:":{"name":"-initWithOcrBlocks:","abstract":"

    Initializer from blocks

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr layout

    ","parent_name":"MBOcrLayout"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default max allowed dewarp height used when using default constructor.

    ","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(im)initWithMaxAllowedDewarpHeight:":{"name":"-initWithMaxAllowedDewarpHeight:","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(py)maxAllowedDewarpHeight":{"name":"maxAllowedDewarpHeight","abstract":"

    Returns the max allowed dewarp height as specified by this policy.

    ","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentType":{"name":"documentType","abstract":"

    Returns the MRTD document type of recognized document.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)primaryID":{"name":"primaryID","abstract":"

    Returns the primary indentifier. If there is more than one component, they are separated with space.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)secondaryID":{"name":"secondaryID","abstract":"

    Returns the secondary identifier. If there is more than one component, they are separated with space.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)issuer":{"name":"issuer","abstract":"

    Returns three-letter or two-letter code which indicate the issuing State. Three-letter codes are based","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    Returns holder’s date of birth

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentNumber":{"name":"documentNumber","abstract":"

    Returns document number. Document number contains up to 9 characters.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)nationality":{"name":"nationality","abstract":"

    Returns nationality of the holder represented by a three-letter or two-letter code. Three-letter","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)gender":{"name":"gender","abstract":"

    Returns gender of the card holder. Gender is specified by use of the single initial, capital letter F for female,","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentCode":{"name":"documentCode","abstract":"

    Returns document code. Document code contains two characters. For MRTD the first character shall","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    Returns date of expiry

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)opt1":{"name":"opt1","abstract":"

    Returns first optional data. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)opt2":{"name":"opt2","abstract":"

    Returns second optional data. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)alienNumber":{"name":"alienNumber","abstract":"

    Returns alien number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)applicationReceiptNumber":{"name":"applicationReceiptNumber","abstract":"

    Returns application receipt number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)immigrantCaseNumber":{"name":"immigrantCaseNumber","abstract":"

    Returns immigrant case number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)mrzText":{"name":"mrzText","abstract":"

    Returns the entire Machine Readable Zone text from ID. This text is usually used for parsing","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)isParsed":{"name":"isParsed","abstract":"

    Returns true if Machine Readable Zone has been parsed, false otherwise.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)isVerified":{"name":"isVerified","abstract":"

    Returns true if all check digits inside MRZ are correct, false otherwise.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedOpt1":{"name":"sanitizedOpt1","abstract":"

    Sanitized field opt1

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedOpt2":{"name":"sanitizedOpt2","abstract":"

    Sanitized field opt2

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedNationality":{"name":"sanitizedNationality","abstract":"

    Sanitized field nationality

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedIssuer":{"name":"sanitizedIssuer","abstract":"

    Sanitized field issuer

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedDocumentCode":{"name":"sanitizedDocumentCode","abstract":"

    Sanitized document code

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedDocumentNumber":{"name":"sanitizedDocumentNumber","abstract":"

    Sanitized document number

    ","parent_name":"MBMrzResult"},"Classes/MBMrtdSpecification.html#/c:objc(cs)MBMrtdSpecification(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdSpecification"},"Classes/MBMrtdSpecification.html#/c:objc(cs)MBMrtdSpecification(cm)createFromPreset:":{"name":"+createFromPreset:","abstract":"

    Factory method which creates MRTD specification based on a preset

    ","parent_name":"MBMrtdSpecification"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    Returns the Data extracted from the machine readable zone.

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(py)rawOcrLayout":{"name":"rawOcrLayout","abstract":"

    Raw OCR layout from which the MRTD data was parsed.

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)result":{"name":"result","abstract":"

    Detector recognizer results

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowUnparsedResults":{"name":"allowUnparsedResults","abstract":"

    Whether returning of unparsed results is allowed

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowUnverifiedResults":{"name":"allowUnverifiedResults","abstract":"

    Whether returning of unverified results is allowed","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowSpecialCharacters":{"name":"allowSpecialCharacters","abstract":"

    Whether special characters are allowed

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)mrtdSpecifications":{"name":"mrtdSpecifications","abstract":"

    Get the mrtd specifications.

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)mrzFilterDelegate":{"name":"mrzFilterDelegate","abstract":"

    Filter for MRTDs (Machine Readable Travel Documents) that is used to determine which documents","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdCombinedRecognizerResult.html#/c:objc(cs)MBMrtdCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdCombinedRecognizerResult"},"Classes/MBMrtdCombinedRecognizerResult.html#/c:objc(cs)MBMrtdCombinedRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    Returns the Data extracted from the machine readable zone.

    ","parent_name":"MBMrtdCombinedRecognizerResult"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)result":{"name":"result","abstract":"

    Mrtd Combined recognizer result

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowUnparsedResults":{"name":"allowUnparsedResults","abstract":"

    Whether returning of unparsed results is allowed

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowUnverifiedResults":{"name":"allowUnverifiedResults","abstract":"

    Whether returning of unverified results is allowed","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowSpecialCharacters":{"name":"allowSpecialCharacters","abstract":"

    Whether special characters are allowed

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)detectorType":{"name":"detectorType","abstract":"

    Type of document this recognizer will scan.

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)sharedInstance":{"name":"+sharedInstance","abstract":"

    Undocumented

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(py)showLicenseKeyTimeLimitedWarning":{"name":"showLicenseKeyTimeLimitedWarning","abstract":"

    If YES, tooltip limited license key warning messages will appear on screen

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(py)resourcesBundle":{"name":"resourcesBundle","abstract":"

    Bundle in which the resources for the scanning process should be found. Usually, by default, this","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseBuffer:":{"name":"-setLicenseBuffer:","abstract":"

    Set license buffer and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseBuffer:andLicensee:":{"name":"-setLicenseBuffer:andLicensee:","abstract":"

    Set license buffer and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseKey:":{"name":"-setLicenseKey:","abstract":"

    Set license key and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseKey:andLicensee:":{"name":"-setLicenseKey:andLicensee:","abstract":"

    Set license key and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseResource:withExtension:inSubdirectory:forBundle:":{"name":"-setLicenseResource:withExtension:inSubdirectory:forBundle:","abstract":"

    Set the license file and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseResource:withExtension:inSubdirectory:forBundle:andLicensee:":{"name":"-setLicenseResource:withExtension:inSubdirectory:forBundle:andLicensee:","abstract":"

    Set the license file and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)buildVersionString":{"name":"+buildVersionString","abstract":"

    Returns the string that contains the library build version

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)isScanningUnsupportedForCameraType:error:":{"name":"+isScanningUnsupportedForCameraType:error:","abstract":"

    This method returns true when scanning is unsupported on a specific device.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(py)language":{"name":"language","abstract":"

    Undocumented

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(py)resourcesBundle":{"name":"resourcesBundle","abstract":"

    Bundle with resources used in framework

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(cm)instance":{"name":"+instance","abstract":"

    Obtain the shared instance

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)init":{"name":"-init","abstract":"

    Designated initializer

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)setDefaultLanguage":{"name":"-setDefaultLanguage","abstract":"

    Sets the language to default (i.e. language specified in the user’s device settings

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)pushStatusBarStyle:":{"name":"-pushStatusBarStyle:","abstract":"

    Pushes the UIApplication status bar style to a internally handled stack

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)popStatusBarStyle":{"name":"-popStatusBarStyle","abstract":"

    Returns the status bar style to the last saved value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)pushStatusBarHidden:":{"name":"-pushStatusBarHidden:","abstract":"

    Push the status bar hidden value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)popStatusBarHidden":{"name":"-popStatusBarHidden","abstract":"

    pops the status bar hidden value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)setHelpShown:":{"name":"-setHelpShown:","abstract":"

    Sets the key that the help was shown to true

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)isHelpShown":{"name":"-isHelpShown","abstract":"

    Returns true if the help was already shown

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(cm)getDefaultResourcesBundle":{"name":"+getDefaultResourcesBundle","abstract":"

    Returns the default resources bundle. If it doesn’t exist, it will be nil.

    ","parent_name":"MBMicroblinkApp"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(py)rawImage":{"name":"rawImage","abstract":"

    Returns the raw image saved by the processor. If no image was saved by processor, returns null.","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(py)encodedImage":{"name":"encodedImage","abstract":"

    JPEG-encoded image or nil, depending on whether image encoding was enabled.

    ","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBImageReturnProcessor"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(py)result":{"name":"result","abstract":"

    MBImageReturnProcessor processor result

    ","parent_name":"MBImageReturnProcessor"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(py)encodeImage":{"name":"encodeImage","abstract":"

    Defines whether saved image will also be encoded as JPEG. This is false by default, which","parent_name":"MBImageReturnProcessor"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)image":{"name":"image","abstract":"

    UIImage of wrapped image.","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)roi":{"name":"roi","abstract":"

    Region of the image used for scanning, where the whole image is specified with CGRectMake(0.0, 0.0, 1.0, 1.0).

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)orientation":{"name":"orientation","abstract":"

    Processing orientation of image. This is used in OCR where you can specify character orientation.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)mirroredHorizontally":{"name":"mirroredHorizontally","abstract":"

    Tells whether camera input images should be mirrored horizontally before processing

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)mirroredVertically":{"name":"mirroredVertically","abstract":"

    Tells whether camera input images should be mirrored vertically before processing

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)estimateFrameQuality":{"name":"estimateFrameQuality","abstract":"

    If YES, the image will prior to processing go through frame quality estimation phase, which might discard the frame

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)cameraFrame":{"name":"cameraFrame","abstract":"

    Property which tells if this frame is a camera or a single photo frame.","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithUIImage:":{"name":"+imageWithUIImage:","abstract":"

    Creates PPImage around UIImage.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithCmSampleBuffer:":{"name":"+imageWithCmSampleBuffer:","abstract":"

    Creates MBImage around CVImageBufferRef.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithCvPixelBuffer:":{"name":"+imageWithCvPixelBuffer:","abstract":"

    Creates MBImage around CVPixelBufferRef.

    ","parent_name":"MBImage"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(py)label":{"name":"label","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)glareDetectionFinishedWithResult:":{"name":"-glareDetectionFinishedWithResult:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(im)initWithFrameGrabberDelegate:":{"name":"-initWithFrameGrabberDelegate:","abstract":"

    Undocumented

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(py)grabFocusedFrames":{"name":"grabFocusedFrames","abstract":"

    Allow sending focused camera frames to MBFrameGrabberRecognizerDelegate.

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(py)grabUnfocusedFrames":{"name":"grabUnfocusedFrames","abstract":"

    Allow sending unfocused camera frames to MBFrameGrabberRecognizerDelegate.

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default dewarp height value used when using default constructor.

    ","parent_name":"MBFixedDewarpPolicy"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(im)initWithDewarpHeight:":{"name":"-initWithDewarpHeight:","parent_name":"MBFixedDewarpPolicy"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(py)dewarpHeight":{"name":"dewarpHeight","abstract":"

    Returns the desired dewarp height (in pixels) as specified by this policy.

    ","parent_name":"MBFixedDewarpPolicy"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsLayer":{"name":"dotsLayer","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsColor":{"name":"dotsColor","abstract":"

    Color of the dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsStrokeWidth":{"name":"dotsStrokeWidth","abstract":"

    Width of the dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsRadius":{"name":"dotsRadius","abstract":"

    Radius of dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)animationDuration":{"name":"animationDuration","abstract":"

    Duration of the animation

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Initializes the layer

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)foregroundColor":{"name":"foregroundColor","abstract":"

    Foreground color of dots.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)tintColor":{"name":"tintColor","abstract":"

    Border and shadow color of dots.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)shouldIgnoreFastResults":{"name":"shouldIgnoreFastResults","abstract":"

    If set YES, dots will not redraw until the animation is finished. This will make animation look much smoother on fast results.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)charFadeInDuration":{"name":"charFadeInDuration","abstract":"

    Duration of fade animation for each dot.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)dotCount":{"name":"dotCount","abstract":"

    Maximum number of dots shown on screen. This count has to be in range [20,50].

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)helpLabel":{"name":"helpLabel","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)helpImageView":{"name":"helpImageView","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(im)animateHelp":{"name":"-animateHelp","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)documentVerificationSubviewDelegate":{"name":"documentVerificationSubviewDelegate","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideInstructions":{"name":"firstSideInstructions","abstract":"

    Returns/sets user instructions that are shown above camera preview while the first side of the","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideInstructions":{"name":"secondSideInstructions","abstract":"

    Returns/sets user instructions that are shown above camera preview while the second side of the","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideSplashMessage":{"name":"firstSideSplashMessage","abstract":"

    Returns/sets splash message that is shown before scanning the first side of the document,","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideSplashMessage":{"name":"secondSideSplashMessage","abstract":"

    Returns/sets splash message that is shown before scanning the second side of the document,","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)scanningDoneSplashMessage":{"name":"scanningDoneSplashMessage","abstract":"

    Returns/sets splash message that is shown after scanning the document.

    ","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)glareMessage":{"name":"glareMessage","abstract":"

    Returns/sets glare status message that is shown if glare detection is turned on","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideSplashImage":{"name":"firstSideSplashImage","abstract":"

    Returns/sets splash image which is shown below splash message, before scanning the first side of","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideSplashImage":{"name":"secondSideSplashImage","abstract":"

    Returns/sets splash image which is shown below splash message, before scanning the second side of","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideInstructionsImage":{"name":"firstSideInstructionsImage","abstract":"

    Returns image that is shown above camera preview, next to the user instructions message, while","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideInstructionsImage":{"name":"secondSideInstructionsImage","abstract":"

    Returns image that is shown above camera preview, next to the user instructions message, while","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)captureHighResImage":{"name":"captureHighResImage","abstract":"

    Gets/sets capturing of high resolution image

    ","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationInstructionsSubview.html#/c:objc(cs)MBDocumentVerificationInstructionsSubview(py)instructionsLabel":{"name":"instructionsLabel","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationInstructionsSubview"},"Classes/MBDocumentVerificationInstructionsSubview.html#/c:objc(cs)MBDocumentVerificationInstructionsSubview(py)instructionsImageView":{"name":"instructionsImageView","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationInstructionsSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)viewfinderView":{"name":"viewfinderView","abstract":"

    Default implementation draws a rectangle with aspect ratio of viewfinderAspectRatio,","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)viewfinderWidthToHeightRatio":{"name":"viewfinderWidthToHeightRatio","abstract":"

    Default aspect ratio of the viewfinder, calculated as width / height.

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)tooltipLabel":{"name":"tooltipLabel","abstract":"

    Label displayed below the viewfinder view.

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Initialize the overlay subview with a given frame

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Initialize the overlay subview with a given coder

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)tooltipText":{"name":"tooltipText","abstract":"

    Gets/sets tootlip text that is defines under document view finder.

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)glareStatusMessage":{"name":"glareStatusMessage","abstract":"

    Returns/sets glare status message that is shown if glare detection is turned on","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)showTooltip":{"name":"showTooltip","abstract":"

    Gets/sets tooltip visibility

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)captureHighResImage":{"name":"captureHighResImage","abstract":"

    Gets/sets capturing of high resolution image

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(py)documentLocation":{"name":"documentLocation","abstract":"

    Quadrangle represeting corner points of the document within the input image.

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(py)faceLocation":{"name":"faceLocation","abstract":"

    Quadrangle represeting corner points of the face image within the input image.

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning Document Face Recognizer

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)detectorType":{"name":"detectorType","abstract":"

    Type of docment this recognizer will scan.

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDisplayableQuadDetection.html#/c:objc(cs)MBDisplayableQuadDetection(py)detectionLocation":{"name":"detectionLocation","abstract":"

    Exact location of detected object on image.","parent_name":"MBDisplayableQuadDetection"},"Classes/MBDisplayablePointsDetection.html#/c:objc(cs)MBDisplayablePointsDetection(py)points":{"name":"points","abstract":"

    Coordinates of points (CGPoint) of a detected object.

    ","parent_name":"MBDisplayablePointsDetection"},"Classes/MBDisplayableObject.html#/c:objc(cs)MBDisplayableObject(py)transform":{"name":"transform","abstract":"

    Tranformation matrix which transforms the coordinate system in which the OCR layout is given","parent_name":"MBDisplayableObject"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(im)initWithDetectionStatus:":{"name":"-initWithDetectionStatus:","abstract":"

    Initializes the displayable detection with matrix

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(py)detectionStatus":{"name":"detectionStatus","abstract":"

    Detection status which describes the status of detection

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDewarpPolicy.html#/c:objc(cs)MBDewarpPolicy(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDewarpPolicy"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(im)initWithDay:month:year:originalDateString:":{"name":"-initWithDay:month:year:originalDateString:","abstract":"

    Designated initializer

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)originalDateString":{"name":"originalDateString","abstract":"

    The original string used to create the date result

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)date":{"name":"date","abstract":"

    NSDate object which represents the same date as this result

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)day":{"name":"day","abstract":"

    Day in month.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)month":{"name":"month","abstract":"

    Month in year.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)year":{"name":"year","abstract":"

    Year of the current date.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(cm)dateResultWithDay:month:year:originalDateString:":{"name":"+dateResultWithDay:month:year:originalDateString:","abstract":"

    Factory method

    ","parent_name":"MBDateResult"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default DPI that will be used with default constructor.

    ","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(im)initWithDesiredDPI:":{"name":"-initWithDesiredDPI:","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(py)desiredDPI":{"name":"desiredDPI","abstract":"

    Returns the desired DPI as defined by this policy.

    ","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)recognizerCollection":{"name":"recognizerCollection","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)cameraSettings":{"name":"cameraSettings","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)metadataDelegates":{"name":"metadataDelegates","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)scanningRecognizerRunnerViewControllerDelegate":{"name":"scanningRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)recognizerRunnerViewControllerDelegate":{"name":"recognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)init":{"name":"-init","abstract":"

    Convenience initializer used for use cases when overlay view controller is instantiated from storyboard.","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)initWithRecognizerCollection:cameraSettings:":{"name":"-initWithRecognizerCollection:cameraSettings:","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)scanningRegion":{"name":"scanningRegion","abstract":"

    Scanning region","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)autorotateOverlay":{"name":"autorotateOverlay","abstract":"

    If YES, Overlay View Controller will be autorotated independently of ScanningViewController.

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)showStatusBar":{"name":"showStatusBar","abstract":"

    If YES, default camera overlay will display Status bar.","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    Default: UIInterfaceOrientationMaskPortrait

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan.

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraPreset":{"name":"cameraPreset","abstract":"

    Camera preset. With this property you can set the resolution of the camera

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraType":{"name":"cameraType","abstract":"

    Camera type. You can choose between front and back facing.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)autofocusInterval":{"name":"autofocusInterval","abstract":"

    Interval between forcing two camera focuses. If <= 0, forced focuses arent performed","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraAutofocusRestriction":{"name":"cameraAutofocusRestriction","abstract":"

    Range restriction for camera autofocus.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)videoGravity":{"name":"videoGravity","abstract":"

    Gravity of Camera preview on screen.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)focusPoint":{"name":"focusPoint","abstract":"

    Point against which the autofocus will be performed

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraMirroredHorizontally":{"name":"cameraMirroredHorizontally","abstract":"

    Tells whether camera input images should be mirrored horizontally before processing

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraMirroredVertically":{"name":"cameraMirroredVertically","abstract":"

    Tells whether camera input images should be mirrored vertically before processing

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)init":{"name":"-init","abstract":"

    Designated initializer. Initializes the object with default settings (see above for defaults)

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)calcSessionPreset":{"name":"-calcSessionPreset","abstract":"

    Returns an optimal AVFoundation session preset based on cameraPreset value.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)calcAutofocusRangeRestriction":{"name":"-calcAutofocusRangeRestriction","abstract":"

    Returns an optimal AVFoundation autofocus range restriction value based on cameraAutofocusRestriction.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isAnimating":{"name":"isAnimating","abstract":"

    Whether the reticle is currently animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isDetecting":{"name":"isDetecting","abstract":"

    Whether the reticle is currently detecting.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isConfirming":{"name":"isConfirming","abstract":"

    Whether the reticle is currently confirming.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startAnimating":{"name":"-startAnimating","abstract":"

    Starts animating the reticle. Does nothing if the reticle is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopAnimating":{"name":"-stopAnimating","abstract":"

    Stops animating the reticle. Does nothing if the reticle is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startDetecting":{"name":"-startDetecting","abstract":"

    Starts animating the detection spinner. Does nothing if the detection is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopDetecting":{"name":"-stopDetecting","abstract":"

    Stops animating the detection spinner. Does nothing if the detection is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startConfirming":{"name":"-startConfirming","abstract":"

    Starts animating the confirmation expanding ring. Does nothing if the detection is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopConfirming":{"name":"-stopConfirming","abstract":"

    Stops animating the confirmation expanding ring. Does nothing if the detection is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)resetAll":{"name":"-resetAll","abstract":"

    Stops all animations and remove all layers to reset state to beginning

    ","parent_name":"MBCameraReticle"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)address":{"name":"address","abstract":"

    The address of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)sex":{"name":"sex","abstract":"

    The sex of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)additionalNameInformation":{"name":"additionalNameInformation","abstract":"

    The additional name information of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)additionalAddressInformation":{"name":"additionalAddressInformation","abstract":"

    The additional address information of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)placeOfBirth":{"name":"placeOfBirth","abstract":"

    The place of birth of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)nationality":{"name":"nationality","abstract":"

    The nationality of the documet owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)race":{"name":"race","abstract":"

    The race of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)religion":{"name":"religion","abstract":"

    The religion of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)profession":{"name":"profession","abstract":"

    The profession of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)maritalStatus":{"name":"maritalStatus","abstract":"

    The marital status of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)residentialStatus":{"name":"residentialStatus","abstract":"

    The residential stauts of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)employer":{"name":"employer","abstract":"

    The employer of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)personalIdNumber":{"name":"personalIdNumber","abstract":"

    The personal identification number.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)documentAdditionalNumber":{"name":"documentAdditionalNumber","abstract":"

    The additional number of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)issuingAuthority":{"name":"issuingAuthority","abstract":"

    The issuing authority of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)driverLicenseDetailedInfo":{"name":"driverLicenseDetailedInfo","abstract":"

    The driver license detailed info.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)conditions":{"name":"conditions","abstract":"

    The driver license conditions.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning BlinkIDRecognizer

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)dewarpedImageDelegate":{"name":"dewarpedImageDelegate","abstract":"

    Full document dewarped imagedelegate

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)classifierDelegate":{"name":"classifierDelegate","abstract":"

    Document not supported classifier delegate

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)allowBlurFilter":{"name":"allowBlurFilter","abstract":"

    Defines whether blured frames filtering is allowed

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common BlinkId UI settings

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)requireDocumentSidesDataMatch":{"name":"requireDocumentSidesDataMatch","abstract":"

    If YES, MBBlinkIdCombinedRecognizer will check if sides do match when scanning is finished

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)showNotSupportedDialog":{"name":"showNotSupportedDialog","abstract":"

    Defines whether Document Not Supported dialog will be displayed in UI.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)backSideScanningTimeout":{"name":"backSideScanningTimeout","abstract":"

    Option to configure back side scanning timeout.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(im)init":{"name":"-init","abstract":"

    Designated initializer. Initializes the object with default settings.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)address":{"name":"address","abstract":"

    The address of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)sex":{"name":"sex","abstract":"

    The sex of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)additionalNameInformation":{"name":"additionalNameInformation","abstract":"

    The additional name information of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)additionalAddressInformation":{"name":"additionalAddressInformation","abstract":"

    The additional address information of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)placeOfBirth":{"name":"placeOfBirth","abstract":"

    The place of birth of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)nationality":{"name":"nationality","abstract":"

    The nationality of the documet owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)race":{"name":"race","abstract":"

    The race of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)religion":{"name":"religion","abstract":"

    The religion of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)profession":{"name":"profession","abstract":"

    The profession of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)maritalStatus":{"name":"maritalStatus","abstract":"

    The marital status of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)residentialStatus":{"name":"residentialStatus","abstract":"

    The residential stauts of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)employer":{"name":"employer","abstract":"

    The employer of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)personalIdNumber":{"name":"personalIdNumber","abstract":"

    The personal identification number.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)documentAdditionalNumber":{"name":"documentAdditionalNumber","abstract":"

    The additional number of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)issuingAuthority":{"name":"issuingAuthority","abstract":"

    The issuing authority of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)driverLicenseDetailedInfo":{"name":"driverLicenseDetailedInfo","abstract":"

    The driver license detailed info.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)conditions":{"name":"conditions","abstract":"

    The driver license conditions.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning BlinkIDCombinedRecognizer

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)dewarpedImageDelegate":{"name":"dewarpedImageDelegate","abstract":"

    Full document dewarped imagedelegate

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)classifierDelegate":{"name":"classifierDelegate","abstract":"

    Document not supported classifier delegate

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)allowBlurFilter":{"name":"allowBlurFilter","abstract":"

    Defines whether blured frames filtering is allowed

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBaseOverlayViewController.html#/c:objc(cs)MBBaseOverlayViewController(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan.

    ","parent_name":"MBBaseOverlayViewController"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)autorotateOverlay":{"name":"autorotateOverlay","abstract":"

    If YES, Overlay View Controller will be autorotated independently of ScanningViewController.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)showStatusBar":{"name":"showStatusBar","abstract":"

    If YES, default camera overlay will display Status bar.","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    Default: UIInterfaceOrientationMaskPortrait

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)soundFilePath":{"name":"soundFilePath","abstract":"

    Full path to the sound file which is played when the valid result is scanned.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)displayCancelButton":{"name":"displayCancelButton","abstract":"

    Default: YES.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)displayTorchButton":{"name":"displayTorchButton","abstract":"

    Default: YES.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOcrOverlaySettings.html#/c:objc(cs)MBBaseOcrOverlaySettings(py)showOcrDots":{"name":"showOcrDots","abstract":"

    Property that enables showing of flashing dots over characters being scanned.

    ","parent_name":"MBBaseOcrOverlaySettings"},"Classes/MBBaseOcrOverlaySettings.html":{"name":"MBBaseOcrOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlaySettings.html":{"name":"MBBaseOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlayViewController.html":{"name":"MBBaseOverlayViewController","abstract":"

    Common base class for default overlay view controllers

    "},"Classes/MBBlinkIdCombinedRecognizer.html":{"name":"MBBlinkIdCombinedRecognizer","abstract":"

    Recognizer which can scan front and back side of the United States driver license.

    "},"Classes/MBBlinkIdCombinedRecognizerResult.html":{"name":"MBBlinkIdCombinedRecognizerResult","abstract":"

    Recognizer which can scan front and back side of the United States driver license.

    "},"Classes/MBBlinkIdOverlaySettings.html":{"name":"MBBlinkIdOverlaySettings","abstract":"

    Settings class containing parameters for BlinkId UI

    "},"Classes/MBBlinkIdOverlayViewController.html":{"name":"MBBlinkIdOverlayViewController","abstract":"

    Default version of overlay view controller with modern design.

    "},"Classes/MBBlinkIdRecognizer.html":{"name":"MBBlinkIdRecognizer","abstract":"

    The Blink ID Recognizer is used for scanning Blink ID.

    "},"Classes/MBBlinkIdRecognizerResult.html":{"name":"MBBlinkIdRecognizerResult","abstract":"

    The Blink ID Recognizer is used for scanning Blink ID.

    "},"Classes/MBCameraReticle.html":{"name":"MBCameraReticle","abstract":"

    A camera reticle that locates at the center of screen and uses circle arc rotation to indicate that"},"Classes/MBCameraSettings.html":{"name":"MBCameraSettings","abstract":"

    Settings class containing parameters for camera capture

    "},"Classes/MBCustomOverlayViewController.html":{"name":"MBCustomOverlayViewController","abstract":"

    Custom Overlay View Controller is an abstract class for all custom overlay views placed on top View Controller."},"Classes/MBDPIBasedDewarpPolicy.html":{"name":"MBDPIBasedDewarpPolicy","abstract":"

    DPI based dewarp policy. Dewarp height will be calculated based on"},"Classes/MBDateResult.html":{"name":"MBDateResult","abstract":"

    This class represents a Date result scanned from the image. It supports obtaining raw NSDates, or raw strings"},"Classes/MBDewarpPolicy.html":{"name":"MBDewarpPolicy","abstract":"

    Base class for all dewarp policies

    "},"Classes/MBDisplayableDetection.html":{"name":"MBDisplayableDetection","abstract":"

    Represents a detection that can be displayed on screen.

    "},"Classes/MBDisplayableObject.html":{"name":"MBDisplayableObject","abstract":"

    Represents any object that can be displayed on screen in terms of drawing.

    "},"Classes/MBDisplayablePointsDetection.html":{"name":"MBDisplayablePointsDetection","abstract":"

    Result of the detection of a point detector. Point Detectors are used for QR and similar barcodes

    "},"Classes/MBDisplayableQuadDetection.html":{"name":"MBDisplayableQuadDetection","abstract":"

    Represents a detection that can be displayed on screen.

    "},"Classes/MBDocumentFaceRecognizer.html":{"name":"MBDocumentFaceRecognizer","abstract":"

    Class for configuring Document Face Recognizer Recognizer.

    "},"Classes/MBDocumentFaceRecognizerResult.html":{"name":"MBDocumentFaceRecognizerResult","abstract":"

    Class representing values obtained when scanning Document Face Recognizer

    "},"Classes/MBDocumentOverlaySettings.html":{"name":"MBDocumentOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentOverlayViewController.html":{"name":"MBDocumentOverlayViewController","abstract":"

    Default overlay when using ID card recognizers.

    "},"Classes/MBDocumentSubview.html":{"name":"MBDocumentSubview","abstract":"

    Overlay subview presenting the viewfinder for scanning ID documents

    "},"Classes/MBDocumentVerificationInstructionsSubview.html":{"name":"MBDocumentVerificationInstructionsSubview","abstract":"

    Undocumented

    "},"Classes/MBDocumentVerificationOverlaySettings.html":{"name":"MBDocumentVerificationOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentVerificationOverlayViewController.html":{"name":"MBDocumentVerificationOverlayViewController","abstract":"

    Default overlay when using ID card combined recognizers for verification.

    "},"Classes/MBDocumentVerificationSubview.html":{"name":"MBDocumentVerificationSubview","abstract":"

    Undocumented

    "},"Classes/MBDotsResultSubview.html":{"name":"MBDotsResultSubview","abstract":"

    Overlay subview presenting status of OCR detection. Dots are displayed over locations of detected characters.

    "},"Classes/MBDotsSubview.html":{"name":"MBDotsSubview","abstract":"

    A wrapper around CAShapeLayer which is used for presenting a status about barcode detections

    "},"Classes/MBDriverLicenseDetailedInfo.html":{"name":"MBDriverLicenseDetailedInfo","abstract":"

    Undocumented

    "},"Classes.html#/c:objc(cs)MBEntity":{"name":"MBEntity","abstract":"

    Base class for all entities processors, recognizers, detectors…

    "},"Classes.html#/c:objc(cs)MBErrorReticle":{"name":"MBErrorReticle","abstract":"

    A camera reticle detection that locates at the center of screen and uses circular rotation to indicate that"},"Classes/MBFixedDewarpPolicy.html":{"name":"MBFixedDewarpPolicy","abstract":"

    Fixed dewarp policy. Dewarp height will be exactly as defined by its dewarpHeight.

    "},"Classes/MBFrameGrabberRecognizer.html":{"name":"MBFrameGrabberRecognizer","abstract":"

    A recognizer that can returns success frame.

    "},"Classes/MBGlareStatusSubview.html":{"name":"MBGlareStatusSubview","abstract":"

    Overlay subview presenting the status of glare detection."},"Classes/MBImage.html":{"name":"MBImage","abstract":"

    Object which represents an image.

    "},"Classes/MBImageReturnProcessor.html":{"name":"MBImageReturnProcessor","abstract":"

    Processor that will simply save given image.

    "},"Classes/MBImageReturnProcessorResult.html":{"name":"MBImageReturnProcessorResult","abstract":"

    Processor that will simply save given image.

    "},"Classes/MBMicroblinkApp.html":{"name":"MBMicroblinkApp","abstract":"

    Undocumented

    "},"Classes/MBMicroblinkSDK.html":{"name":"MBMicroblinkSDK","abstract":"

    Entry class for all Microblink SDKs - used for setting up license key and to add support for"},"Classes/MBMrtdCombinedRecognizer.html":{"name":"MBMrtdCombinedRecognizer","abstract":"

    MRTD Combined recognizer

    "},"Classes/MBMrtdCombinedRecognizerResult.html":{"name":"MBMrtdCombinedRecognizerResult","abstract":"

    Class representing values obtained when scanning both front and back side of Croatian ID.

    "},"Classes/MBMrtdRecognizer.html":{"name":"MBMrtdRecognizer","abstract":"

    Recognizer that can recognizer Machine Readable Zone (MRZ) of the Machine Readable Travel Document (MRTD)

    "},"Classes/MBMrtdRecognizerResult.html":{"name":"MBMrtdRecognizerResult","abstract":"

    Result of MBMrtdDetectorRecognizer

    "},"Classes/MBMrtdSpecification.html":{"name":"MBMrtdSpecification","abstract":"

    Mrtd class describes a document which is being detected by MrtdDetector."},"Classes/MBMrzResult.html":{"name":"MBMrzResult","abstract":"

    Undocumented

    "},"Classes/MBNoUpScalingDewarpPolicy.html":{"name":"MBNoUpScalingDewarpPolicy","abstract":"

    No upscaling dewarp policy. Dewarp height will be calculated in a way"},"Classes/MBOcrLayout.html":{"name":"MBOcrLayout","abstract":"

    Class describing the layour of the document on which the OCR was preformed.

    "},"Classes/MBOcrBlock.html":{"name":"MBOcrBlock","abstract":"

    Class representing an Ocr Block. Block consists of one or more Ocr Lines.

    "},"Classes/MBOcrLine.html":{"name":"MBOcrLine","abstract":"

    Class representing an Ocr line. line consists of one or more Ocr chars

    "},"Classes/MBCharWithVariants.html":{"name":"MBCharWithVariants","abstract":"

    Undocumented

    "},"Classes/MBOcrChar.html":{"name":"MBOcrChar","abstract":"

    Class representing an individual OCR character obtained in the OCR process.

    "},"Classes/MBPosition.html":{"name":"MBPosition","abstract":"

    Class representing a position on the image. It’s given as a box, with"},"Classes/MBOverlaySettings.html":{"name":"MBOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBOverlayViewController.html":{"name":"MBOverlayViewController","abstract":"

    Overlay View Controller is an abstract class for all overlay views placed on top View Controller.

    "},"Classes/MBParserGroupProcessor.html":{"name":"MBParserGroupProcessor","abstract":"

    A processor for a group

    "},"Classes/MBParserGroupProcessorResult.html":{"name":"MBParserGroupProcessorResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBPassportRecognizer.html":{"name":"MBPassportRecognizer","abstract":"

    Recognizer which can scan all passports with MRZ.

    "},"Classes/MBPassportRecognizerResult.html":{"name":"MBPassportRecognizerResult","abstract":"

    Recognizer which can scan all passports with MRZ.

    "},"Classes/MBProcessor.html":{"name":"MBProcessor","abstract":"

    Base class for all processors

    "},"Classes/MBProcessorGroup.html":{"name":"MBProcessorGroup","abstract":"

    Class that represents a group of processors that will be executed on same dewarped image.

    "},"Classes/MBProcessorResult.html":{"name":"MBProcessorResult","abstract":"

    Base class for all processor results

    "},"Classes/MBQuadrangle.html":{"name":"MBQuadrangle","abstract":"

    Class represents the quadrangle (arbitrary geometric object with 4 different corner points

    "},"Classes/MBRecognizer.html":{"name":"MBRecognizer","abstract":"

    Base class for all recognizers

    "},"Classes/MBRecognizerCollection.html":{"name":"MBRecognizerCollection","abstract":"

    Settings class containing settings related to scanner behaviour

    "},"Classes/MBRecognizerResult.html":{"name":"MBRecognizerResult","abstract":"

    Base class for all recognizer results

    "},"Classes/MBRecognizerRunner.html":{"name":"MBRecognizerRunner","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBRecognizerRunnerMetadataDelegates.html":{"name":"MBRecognizerRunnerMetadataDelegates","abstract":"

    Class containing all metadata delegates

    "},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html":{"name":"MBRecognizerRunnerViewControllerMetadataDelegates","abstract":"

    Class containing all metadata delegates

    "},"Classes/MBSubview.html":{"name":"MBSubview","abstract":"

    Base class for all overlay subviews

    "},"Classes/MBSuccessFrameGrabberRecognizer.html":{"name":"MBSuccessFrameGrabberRecognizer","abstract":"

    A recognizer that can returns success frame.

    "},"Classes/MBSuccessFrameGrabberRecognizerResult.html":{"name":"MBSuccessFrameGrabberRecognizerResult","abstract":"

    A recognizer that returns SuccessFrameGrabber result.

    "},"Classes/MBTapToFocusSubview.html":{"name":"MBTapToFocusSubview","abstract":"

    Overlay subview presenting the effect which happens when the user taps to focus

    "},"Classes/MBTemplatingClass.html":{"name":"MBTemplatingClass","abstract":"

    Class that represents a specific class of documents when used within Templating API.

    "},"Classes/MBTemplatingRecognizer.html":{"name":"MBTemplatingRecognizer","abstract":"

    Base of all recognizers that support Templating API.

    "},"Classes/MBTemplatingRecognizerResult.html":{"name":"MBTemplatingRecognizerResult","abstract":"

    Base of all recognizers result that support Templating API.

    "},"Classes/MBUsdlCombinedRecognizer.html":{"name":"MBUsdlCombinedRecognizer","abstract":"

    USDL Combined Recognizer.

    "},"Classes/MBUsdlCombinedRecognizerResult.html":{"name":"MBUsdlCombinedRecognizerResult","abstract":"

    Class representing values obtained when scanning both front and back side of US Driver’s License.

    "},"Classes/MBUsdlRecognizer.html":{"name":"MBUsdlRecognizer","abstract":"

    A recognizer that can scan USDL.

    "},"Classes/MBUsdlRecognizerResult.html":{"name":"MBUsdlRecognizerResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBViewControllerFactory.html":{"name":"MBViewControllerFactory","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBVisaRecognizer.html":{"name":"MBVisaRecognizer","abstract":"

    Recognizer which can scan all visas with MRZ.

    "},"Classes/MBVisaRecognizerResult.html":{"name":"MBVisaRecognizerResult","abstract":"

    Recognizer which can scan all visas with MRZ.

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Constants.html":{"name":"Constants","abstract":"

    The following constants are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "},"Type Definitions.html":{"name":"Type Definitions","abstract":"

    The following type definitions are available globally.

    "},"Functions.html":{"name":"Functions","abstract":"

    The following functions are available globally.

    "},"Structs.html":{"name":"Structures","abstract":"

    The following structures are available globally.

    "}} \ No newline at end of file diff --git a/docs/docsets/PPBlinkID.docset/Contents/Resources/docSet.dsidx b/docs/docsets/PPBlinkID.docset/Contents/Resources/docSet.dsidx index 6b16537d..c88eee1d 100644 Binary files a/docs/docsets/PPBlinkID.docset/Contents/Resources/docSet.dsidx and b/docs/docsets/PPBlinkID.docset/Contents/Resources/docSet.dsidx differ diff --git a/docs/docsets/PPBlinkID.tgz b/docs/docsets/PPBlinkID.tgz index bfe2caf1..d2ef8724 100644 Binary files a/docs/docsets/PPBlinkID.tgz and b/docs/docsets/PPBlinkID.tgz differ diff --git a/docs/index.html b/docs/index.html index 0bb2bea5..bfc32f2c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -801,7 +801,7 @@

    Using CocoaPods

    platform :ios, '8.0'
     target 'Your-App-Name' do
    -    pod 'PPBlinkID', '~> 5.1.0'
    +    pod 'PPBlinkID', '~> 5.1.1'
     end
     
    @@ -1296,13 +1296,13 @@

    BlinkID Recognizer

    -

    The MBBlinkIdRecognizer scans and extracts data from the front side of the US driver license or ID. -You can find the list of the currently supported US documents here. +

    The MBBlinkIdRecognizer scans and extracts data from the front side of the supported document. +You can find the list of the currently supported documents here. We will continue expanding this recognizer by adding support for new document types in the future. Star this repo to stay updated.

    -

    Use MBBlinkIdCombinedRecognizer for scanning both sides of the US driver license and ID. First, it scans and extracts data from the front, then scans and extracts data from the barcode on the back, and finally, combines results from both sides. The BlinkIDCombinedRecognizer also performs data matching and returns a flag if the extracted data captured from the front side matches the data from the barcode on the back. -You can find the list of the currently supported US documents here. +

    Use MBBlinkIdCombinedRecognizer for scanning both sides of the supported document. First, it scans and extracts data from the front, then scans and extracts data from the barcode on the back, and finally, combines results from both sides. The BlinkIDCombinedRecognizer also performs data matching and returns a flag if the extracted data captured from the front side matches the data from the barcode on the back. +You can find the list of the currently supported documents here. We will continue expanding this recognizer by adding support for new document types in the future. Star this repo to stay updated.

    Troubleshooting

    Integration problems

    @@ -1404,7 +1404,7 @@

    Addit diff --git a/docs/search.json b/docs/search.json index c9e51c66..0769aa36 100644 --- a/docs/search.json +++ b/docs/search.json @@ -1 +1 @@ -{"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@top":{"name":"top","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@right":{"name":"right","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@bottom":{"name":"bottom","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@left":{"name":"left","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html":{"name":"_MBImageExtensionFactors","abstract":"

    Struct which describes image extension factors. Each factors denotes by what percentage is image extended."},"Functions.html#/c:@F@CGDeltaMake":{"name":"CGDeltaMake","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointWithDelta":{"name":"CGPointWithDelta","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointDistance":{"name":"CGPointDistance","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointAlongLine":{"name":"CGPointAlongLine","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointRotatedAroundPoint":{"name":"CGPointRotatedAroundPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineMake":{"name":"CGLineMake","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineEqualToLine":{"name":"CGLineEqualToLine","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineMidPoint":{"name":"CGLineMidPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineDirection":{"name":"CGLineDirection","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesAngle":{"name":"CGLinesAngle","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesIntersectAtPoint":{"name":"CGLinesIntersectAtPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineLength":{"name":"CGLineLength","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineScale":{"name":"CGLineScale","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineTranslate":{"name":"CGLineTranslate","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineScaleOnMidPoint":{"name":"CGLineScaleOnMidPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineDelta":{"name":"CGLineDelta","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesAreParallel":{"name":"CGLinesAreParallel","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectTopLeftPoint":{"name":"CGRectTopLeftPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectTopRightPoint":{"name":"CGRectTopRightPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectBottomLeftPoint":{"name":"CGRectBottomLeftPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectBottomRightPoint":{"name":"CGRectBottomRightPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectResize":{"name":"CGRectResize","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectInsetEdge":{"name":"CGRectInsetEdge","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectStackedWithinRectFromEdge":{"name":"CGRectStackedWithinRectFromEdge","abstract":"

    Calculates the stacking of rectangles within a larger rectangle."},"Functions.html#/c:@F@CGRectCenterPoint":{"name":"CGRectCenterPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectClosestTwoCornerPoints":{"name":"CGRectClosestTwoCornerPoints","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineIntersectsRectAtPoint":{"name":"CGLineIntersectsRectAtPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGControlPointsForArcBetweenPointsWithRadius":{"name":"CGControlPointsForArcBetweenPointsWithRadius","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@scanningRegionForFrameInBounds":{"name":"scanningRegionForFrameInBounds","abstract":"

    Undocumented

    "},"Functions.html#/c:MBImageExtensionFactors.h@F@MBMakeImageExtensionFactors":{"name":"MBMakeImageExtensionFactors","abstract":"

    Method which creates a image extension factors structure

    "},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@top":{"name":"top","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@right":{"name":"right","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@bottom":{"name":"bottom","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@left":{"name":"left","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html":{"name":"_MBImageExtensionFactors","abstract":"

    Struct which describes image extension factors. Each factors denotes by what percentage is image extended.","parent_name":"MBImageExtensionFactors"},"Type Definitions/CGLine/.html#/c:@SA@CGLine@FI@point1":{"name":"point1","abstract":"

    Undocumented

    "},"Type Definitions/CGLine/.html#/c:@SA@CGLine@FI@point2":{"name":"point2","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBException.h@T@MBExceptionName":{"name":"MBExceptionName","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBGeometry.h@T@CGDelta":{"name":"CGDelta","abstract":"

    Undocumented

    "},"Type Definitions/CGLine.html":{"name":"CGLine","abstract":"

    Undocumented

    "},"Type Definitions/MBImageExtensionFactors.html":{"name":"MBImageExtensionFactors","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBRecognizerRunnerViewController.h@T@MBCaptureHighResImage":{"name":"MBCaptureHighResImage","abstract":"

    Block for returning high resolution MBImage photo with capture or still output

    "},"Protocols/MBTemplatingClassifier.html#/c:objc(pl)MBTemplatingClassifier(im)classify":{"name":"-classify","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingClassifier"},"Protocols/MBSubviewDelegate.html#/c:objc(pl)MBSubviewDelegate(im)subviewAnimationDidStart:":{"name":"-subviewAnimationDidStart:","abstract":"

    Delegate method called when animation starts

    ","parent_name":"MBSubviewDelegate"},"Protocols/MBSubviewDelegate.html#/c:objc(pl)MBSubviewDelegate(im)subviewAnimationDidFinish:":{"name":"-subviewAnimationDidFinish:","abstract":"

    Delegate method called when animation finishes

    ","parent_name":"MBSubviewDelegate"},"Protocols/MBStringProcessingRecognizerRunnerDelegate.html#/c:objc(pl)MBStringProcessingRecognizerRunnerDelegate(im)recognizerRunner:didFinishProcessingString:":{"name":"-recognizerRunner:didFinishProcessingString:","abstract":"

    Called when MBRecognizerRunner finishes processing given string.","parent_name":"MBStringProcessingRecognizerRunnerDelegate"},"Protocols/MBSignatureImageResult.html#/c:objc(pl)MBSignatureImageResult(py)signatureImage":{"name":"signatureImage","abstract":"

    image of the signature if enabled with MBSignatureImage returnSignatureImage property.

    ","parent_name":"MBSignatureImageResult"},"Protocols/MBSignatureImageDpi.html#/c:objc(pl)MBSignatureImageDpi(py)signatureImageDpi":{"name":"signatureImageDpi","abstract":"

    Property for setting DPI for signature images","parent_name":"MBSignatureImageDpi"},"Protocols/MBSignatureImage.html#/c:objc(pl)MBSignatureImage(py)returnSignatureImage":{"name":"returnSignatureImage","abstract":"

    Sets whether signature image from ID card should be extracted.

    ","parent_name":"MBSignatureImage"},"Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBScanningRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishScanningWithState:":{"name":"-recognizerRunnerViewController:didFinishScanningWithState:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBScanningRecognizerRunnerViewControllerDelegate"},"Protocols/MBScanningRecognizerRunnerDelegate.html#/c:objc(pl)MBScanningRecognizerRunnerDelegate(im)recognizerRunner:didFinishScanningWithState:":{"name":"-recognizerRunner:didFinishScanningWithState:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBScanningRecognizerRunnerDelegate"},"Protocols/MBResultSubview.html#/c:objc(pl)MBResultSubview(im)scanningFinishedWithState:":{"name":"-scanningFinishedWithState:","abstract":"

    This method should be called when MBRecognizerResultState is obtained and reslt state need to be drawn/redrawn.

    ","parent_name":"MBResultSubview"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerUnauthorizedCamera:":{"name":"-recognizerRunnerViewControllerUnauthorizedCamera:","abstract":"

    Scanning library requested authorization for Camera access from the user, but the user declined it.","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFindError:":{"name":"-recognizerRunnerViewController:didFindError:","abstract":"

    Scanning library found an error. The error object is returned and contains","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidClose:":{"name":"-recognizerRunnerViewControllerDidClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerWillPresentHelp:":{"name":"-recognizerRunnerViewControllerWillPresentHelp:","abstract":"

    Called when Scanning library will display help. This can happen when the user presses","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidResumeScanning:":{"name":"-recognizerRunnerViewControllerDidResumeScanning:","abstract":"

    Called when Scanning library is resuming scanning.

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidStopScanning:":{"name":"-recognizerRunnerViewControllerDidStopScanning:","abstract":"

    Called when Scanning library is stopped scanning.

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(py)autorotate":{"name":"autorotate","abstract":"

    MBRecognizerRunnerViewController’s shouldAutorotate will return this value.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    MBRecognizerRunnerViewController’s supportedInterfaceOrientations will return this value.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)pauseScanning":{"name":"-pauseScanning","abstract":"

    Pause scanning without dismissing the camera view.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)isScanningPaused":{"name":"-isScanningPaused","abstract":"

    Retrieve the current state of scanning.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resumeScanningAndResetState:":{"name":"-resumeScanningAndResetState:","abstract":"

    Resumes scanning. Optionally, internal state of recognizers can be reset in the process.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resumeCamera":{"name":"-resumeCamera","abstract":"

    Resumes camera session. This method is automatically called in viewWillAppear when ScanningViewController enters screen.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)pauseCamera":{"name":"-pauseCamera","abstract":"

    Pauses camera session. This method is automatically called in viewDidDissapear when ScanningViewController exits screen.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)isCameraPaused":{"name":"-isCameraPaused","abstract":"

    Retrieve the current state of camera.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)playScanSuccessSound":{"name":"-playScanSuccessSound","abstract":"

    Play scan sound.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)willSetTorchOn:":{"name":"-willSetTorchOn:","abstract":"

    Call to turn on torch without camera overlay

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resetState":{"name":"-resetState","abstract":"
    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)captureHighResImage:":{"name":"-captureHighResImage:","abstract":"

    Method with block for getting high resoultion images

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBQuadDetectorSubview.html#/c:objc(pl)MBQuadDetectorSubview(im)detectionFinishedWithDisplayableQuad:":{"name":"-detectionFinishedWithDisplayableQuad:","abstract":"

    This method should be called when MBDisplayableQuadDetection is obtained and quad need to be drawn/redrawn.

    ","parent_name":"MBQuadDetectorSubview"},"Protocols/MBPointDetectorSubview.html#/c:objc(pl)MBPointDetectorSubview(im)detectionFinishedWithDisplayablePoints:":{"name":"-detectionFinishedWithDisplayablePoints:","abstract":"

    This method should be called when MBDisplayablePointsDetection is obtained and points need to be drawn/redrawn.

    ","parent_name":"MBPointDetectorSubview"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewControllerWillCloseCamera:":{"name":"-overlayViewControllerWillCloseCamera:","abstract":"

    Notification sent when Overlay View Controller wants to close camera, for example,","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewControllerShouldDisplayTorch:":{"name":"-overlayViewControllerShouldDisplayTorch:","abstract":"

    Overlay View Controller should ask it’s delegete if it’s necessary to display Torch (Light) button.","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewController:willSetTorch:":{"name":"-overlayViewController:willSetTorch:","abstract":"

    Overlay View Controller must notify it’s delegete to set the torch mode to On or Off

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)shouldDisplayHelpButton":{"name":"-shouldDisplayHelpButton","abstract":"

    If help mechanism is implemented using PPScanDelegate’s scanningViewControllerWillPresentHelp method,","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isStatusBarPresented":{"name":"-isStatusBarPresented","abstract":"

    Check if status bar is hidden or showed

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isTorchOn":{"name":"-isTorchOn","abstract":"

    Overlay View Controller can ask it’s delegete about the status of Torch

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isCameraAuthorized":{"name":"-isCameraAuthorized","abstract":"

    Overlay View Controller can ask it’s owner whether camera was authorized

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBOcrRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didObtainOcrResult:withResultName:":{"name":"-recognizerRunnerViewController:didObtainOcrResult:withResultName:","abstract":"

    Called when scanning library has MBOcrLayout ready to be displayed on UI.","parent_name":"MBOcrRecognizerRunnerViewControllerDelegate"},"Protocols/MBOcrRecognizerRunnerDelegate.html#/c:objc(pl)MBOcrRecognizerRunnerDelegate(im)recognizerRunner:didObtainOcrResult:withResultName:":{"name":"-recognizerRunner:didObtainOcrResult:withResultName:","abstract":"

    Called when Scanning library has MBOcrLayout available and ready to be displayed on UI.","parent_name":"MBOcrRecognizerRunnerDelegate"},"Protocols/MBNativeResult.html#/c:objc(pl)MBNativeResult(im)nativeResult":{"name":"-nativeResult","abstract":"

    Returns the native object containing the result. For example, for MBDateResult, this method","parent_name":"MBNativeResult"},"Protocols/MBNativeResult.html#/c:objc(pl)MBNativeResult(im)stringResult":{"name":"-stringResult","abstract":"

    Returns the string version of the result. For example, for MBDateResult, this method","parent_name":"MBNativeResult"},"Protocols/MBMrzImageResult.html#/c:objc(pl)MBMrzImageResult(py)mrzImage":{"name":"mrzImage","abstract":"

    face image from the document if enabled with MBMrzImage returnMrzImage property.

    ","parent_name":"MBMrzImageResult"},"Protocols/MBMrzImageDpi.html#/c:objc(pl)MBMrzImageDpi(py)mrzImageDpi":{"name":"mrzImageDpi","abstract":"

    Property for setting DPI for mrz images","parent_name":"MBMrzImageDpi"},"Protocols/MBMrzImage.html#/c:objc(pl)MBMrzImage(py)returnMrzImage":{"name":"returnMrzImage","abstract":"

    Sets whether MRZ image from ID card should be extracted

    ","parent_name":"MBMrzImage"},"Protocols/MBMrzFilter.html#/c:objc(pl)MBMrzFilter(im)mrzFilter":{"name":"-mrzFilter","abstract":"

    Determines whether document should be processed or it is filtered out.

    ","parent_name":"MBMrzFilter"},"Protocols/MBImageProcessingRecognizerRunnerDelegate.html#/c:objc(pl)MBImageProcessingRecognizerRunnerDelegate(im)recognizerRunner:didFinishProcessingImage:":{"name":"-recognizerRunner:didFinishProcessingImage:","abstract":"

    Called when MBRecognizerRunner finishes processing given image.","parent_name":"MBImageProcessingRecognizerRunnerDelegate"},"Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBGlareRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishGlareDetectionWithResult:":{"name":"-recognizerRunnerViewController:didFinishGlareDetectionWithResult:","abstract":"

    Called when scanning library finishes glare detection.","parent_name":"MBGlareRecognizerRunnerViewControllerDelegate"},"Protocols/MBGlareRecognizerRunnerDelegate.html#/c:objc(pl)MBGlareRecognizerRunnerDelegate(im)recognizerRunner:didFinishGlareDetectionWithResult:":{"name":"-recognizerRunner:didFinishGlareDetectionWithResult:","abstract":"

    Called when scanning library finishes glare detection.","parent_name":"MBGlareRecognizerRunnerDelegate"},"Protocols/MBGlareDetection.html#/c:objc(pl)MBGlareDetection(py)detectGlare":{"name":"detectGlare","abstract":"

    Defines if glare detection should be turned on/off.

    ","parent_name":"MBGlareDetection"},"Protocols/MBFullDocumentImageResult.html#/c:objc(pl)MBFullDocumentImageResult(py)fullDocumentImage":{"name":"fullDocumentImage","abstract":"

    full document image if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBFullDocumentImageResult"},"Protocols/MBFullDocumentImageExtensionFactors.html#/c:objc(pl)MBFullDocumentImageExtensionFactors(py)fullDocumentImageExtensionFactors":{"name":"fullDocumentImageExtensionFactors","abstract":"

    Image extension factors for full document image.

    ","parent_name":"MBFullDocumentImageExtensionFactors"},"Protocols/MBFullDocumentImageDpi.html#/c:objc(pl)MBFullDocumentImageDpi(py)fullDocumentImageDpi":{"name":"fullDocumentImageDpi","abstract":"

    Property for setting DPI for full document images","parent_name":"MBFullDocumentImageDpi"},"Protocols/MBFullDocumentImage.html#/c:objc(pl)MBFullDocumentImage(py)returnFullDocumentImage":{"name":"returnFullDocumentImage","abstract":"

    Sets whether full document image of ID card should be extracted.

    ","parent_name":"MBFullDocumentImage"},"Protocols/MBFrameGrabberRecognizerDelegate.html#/c:objc(pl)MBFrameGrabberRecognizerDelegate(im)onFrameAvailable:isFocused:frameQuality:":{"name":"-onFrameAvailable:isFocused:frameQuality:","abstract":"

    Called when {FrameGrabberRecognizer} received new frame for processing.","parent_name":"MBFrameGrabberRecognizerDelegate"},"Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBFirstSideFinishedRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidFinishRecognitionOfFirstSide:":{"name":"-recognizerRunnerViewControllerDidFinishRecognitionOfFirstSide:","abstract":"

    Called when scanning library finishes performing recognition of the first side of the document.","parent_name":"MBFirstSideFinishedRecognizerRunnerViewControllerDelegate"},"Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html#/c:objc(pl)MBFirstSideFinishedRecognizerRunnerDelegate(im)recognizerRunnerDidFinishRecognitionOfFirstSide:":{"name":"-recognizerRunnerDidFinishRecognitionOfFirstSide:","abstract":"

    Called when scanning library finishes performing recognition of the first side of the document.","parent_name":"MBFirstSideFinishedRecognizerRunnerDelegate"},"Protocols/MBFaceImageResult.html#/c:objc(pl)MBFaceImageResult(py)faceImage":{"name":"faceImage","abstract":"

    face image from the document if enabled with MBFaceImage returnFaceImage property.

    ","parent_name":"MBFaceImageResult"},"Protocols/MBFaceImageDpi.html#/c:objc(pl)MBFaceImageDpi(py)faceImageDpi":{"name":"faceImageDpi","abstract":"

    Property for setting DPI for face images","parent_name":"MBFaceImageDpi"},"Protocols/MBFaceImage.html#/c:objc(pl)MBFaceImage(py)returnFaceImage":{"name":"returnFaceImage","abstract":"

    Sets whether face image from ID card should be extracted

    ","parent_name":"MBFaceImage"},"Protocols/MBEncodedSignatureImageResult.html#/c:objc(pl)MBEncodedSignatureImageResult(py)encodedSignatureImage":{"name":"encodedSignatureImage","abstract":"

    JPEG-encoded image of the signature from the document. Available only if enabled with MBEncodeSignatureImage encodeSignatureImage property.

    ","parent_name":"MBEncodedSignatureImageResult"},"Protocols/MBEncodedMrzImageResult.html#/c:objc(pl)MBEncodedMrzImageResult(py)encodedMrzImage":{"name":"encodedMrzImage","abstract":"

    JPEG-encoded MRZ image from the document if enabled with MBEncodeMrzImage encodeMrzImage property.

    ","parent_name":"MBEncodedMrzImageResult"},"Protocols/MBEncodedFullDocumentImageResult.html#/c:objc(pl)MBEncodedFullDocumentImageResult(py)encodedFullDocumentImage":{"name":"encodedFullDocumentImage","abstract":"

    JPEG-encoded full document image if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedFullDocumentImageResult"},"Protocols/MBEncodedFaceImageResult.html#/c:objc(pl)MBEncodedFaceImageResult(py)encodedFaceImage":{"name":"encodedFaceImage","abstract":"

    JPEG-encoded face image from the document if enabled with MBEncodeFaceImage encodeFaceImage property.

    ","parent_name":"MBEncodedFaceImageResult"},"Protocols/MBEncodedCombinedFullDocumentImageResult.html#/c:objc(pl)MBEncodedCombinedFullDocumentImageResult(py)encodedFullDocumentFrontImage":{"name":"encodedFullDocumentFrontImage","abstract":"

    JPEG-encoded full document image of the front side of the document. Available only if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedCombinedFullDocumentImageResult"},"Protocols/MBEncodedCombinedFullDocumentImageResult.html#/c:objc(pl)MBEncodedCombinedFullDocumentImageResult(py)encodedFullDocumentBackImage":{"name":"encodedFullDocumentBackImage","abstract":"

    JPEG-encoded full document image of the back side of the document. Available only if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedCombinedFullDocumentImageResult"},"Protocols/MBEncodeSignatureImage.html#/c:objc(pl)MBEncodeSignatureImage(py)encodeSignatureImage":{"name":"encodeSignatureImage","abstract":"

    Sets whether image of signature on document should be extracted and JPEG-encoded.

    ","parent_name":"MBEncodeSignatureImage"},"Protocols/MBEncodeMrzImage.html#/c:objc(pl)MBEncodeMrzImage(py)encodeMrzImage":{"name":"encodeMrzImage","abstract":"

    Sets whether MRZ image should be extracted from document and JPEG-encoded.

    ","parent_name":"MBEncodeMrzImage"},"Protocols/MBEncodeFullDocumentImage.html#/c:objc(pl)MBEncodeFullDocumentImage(py)encodeFullDocumentImage":{"name":"encodeFullDocumentImage","abstract":"

    Sets whether full document image should be extracted and JPEG-encoded.

    ","parent_name":"MBEncodeFullDocumentImage"},"Protocols/MBEncodeFaceImage.html#/c:objc(pl)MBEncodeFaceImage(py)encodeFaceImage":{"name":"encodeFaceImage","abstract":"

    Sets whether face image should be extracted from document and JPEG-encoded.

    ","parent_name":"MBEncodeFaceImage"},"Protocols/MBDocumentVerificationSubviewDelegate.html#/c:objc(pl)MBDocumentVerificationSubviewDelegate(im)documentVerificationSubviewDidFinishAnimation:":{"name":"-documentVerificationSubviewDidFinishAnimation:","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubviewDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidFinishScanning:state:":{"name":"-documentVerificationOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidTapClose:":{"name":"-documentVerificationOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidFinishScanningFirstSide:":{"name":"-documentVerificationOverlayViewControllerDidFinishScanningFirstSide:","abstract":"

    Called when scanning library finished scanning first side of the document

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidCaptureHighResolutionImage:highResImage:state:":{"name":"-documentVerificationOverlayViewControllerDidCaptureHighResolutionImage:highResImage:state:","abstract":"

    Scanning library did output high resolution image

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidFinishScanning:state:":{"name":"-documentOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidTapClose:":{"name":"-documentOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidCaptureHighResolutionImage:highResImage:":{"name":"-documentOverlayViewControllerDidCaptureHighResolutionImage:highResImage:","abstract":"

    Scanning library did output high resolution image

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDigitalSignatureResult.html#/c:objc(pl)MBDigitalSignatureResult(py)digitalSignature":{"name":"digitalSignature","abstract":"

    Digital signature of the recognition result. Available only if enabled with MBDigitalSignature signResult property.

    ","parent_name":"MBDigitalSignatureResult"},"Protocols/MBDigitalSignatureResult.html#/c:objc(pl)MBDigitalSignatureResult(py)digitalSignatureVersion":{"name":"digitalSignatureVersion","abstract":"

    Version of the digital signature. Available only if enabled with MBDigitalSignature signResult property.

    ","parent_name":"MBDigitalSignatureResult"},"Protocols/MBDigitalSignature.html#/c:objc(pl)MBDigitalSignature(py)signResult":{"name":"signResult","abstract":"

    Whether or not recognition result should be signed.

    ","parent_name":"MBDigitalSignature"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad:":{"name":"-recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishDetectionWithDisplayablePoints:":{"name":"-recognizerRunnerViewController:didFinishDetectionWithDisplayablePoints:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidFailDetection:":{"name":"-recognizerRunnerViewControllerDidFailDetection:","abstract":"

    Called when Scanning library fails to detect any object with any of the currently active recognizers.

    ","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunner:didFinishDetectionWithDisplayableQuad:":{"name":"-recognizerRunner:didFinishDetectionWithDisplayableQuad:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunner:didFinishDetectionWithDisplayablePoints:":{"name":"-recognizerRunner:didFinishDetectionWithDisplayablePoints:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunnerDidFailDetection:":{"name":"-recognizerRunnerDidFailDetection:","abstract":"

    Called when Scanning library fails to detect any object with any of the currently active recognizers.

    ","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didOutputDebugImage:":{"name":"-recognizerRunnerViewController:didOutputDebugImage:","abstract":"

    Scanning library did output debug image","parent_name":"MBDebugRecognizerRunnerViewControllerDelegate"},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didOutputDebugText:":{"name":"-recognizerRunnerViewController:didOutputDebugText:","abstract":"

    Scanning library did output debug text","parent_name":"MBDebugRecognizerRunnerViewControllerDelegate"},"Protocols/MBDebugRecognizerRunnerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerDelegate(im)recognizerRunner:didOutputDebugImage:":{"name":"-recognizerRunner:didOutputDebugImage:","abstract":"

    Scanning library did output debug image","parent_name":"MBDebugRecognizerRunnerDelegate"},"Protocols/MBDebugRecognizerRunnerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerDelegate(im)recognizerRunner:didOutputDebugText:":{"name":"-recognizerRunner:didOutputDebugText:","abstract":"

    Scanning library did output debug text","parent_name":"MBDebugRecognizerRunnerDelegate"},"Protocols/MBCombinedRecognizerResult.html#/c:objc(pl)MBCombinedRecognizerResult(py)documentDataMatch":{"name":"documentDataMatch","abstract":"

    Returns MBDataMatchResultSuccess if data from scanned parts/sides of the document match,","parent_name":"MBCombinedRecognizerResult"},"Protocols/MBCombinedRecognizerResult.html#/c:objc(pl)MBCombinedRecognizerResult(py)scanningFirstSideDone":{"name":"scanningFirstSideDone","abstract":"

    Returns YES if recognizer has finished scanning first side and is now scanning back side,","parent_name":"MBCombinedRecognizerResult"},"Protocols/MBCombinedRecognizer.html#/c:objc(pl)MBCombinedRecognizer(py)combinedResult":{"name":"combinedResult","abstract":"

    Combined result which is associated with this combined recognizer.

    ","parent_name":"MBCombinedRecognizer"},"Protocols/MBCombinedFullDocumentImageResult.html#/c:objc(pl)MBCombinedFullDocumentImageResult(py)fullDocumentFrontImage":{"name":"fullDocumentFrontImage","abstract":"

    front side image of the document if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBCombinedFullDocumentImageResult"},"Protocols/MBCombinedFullDocumentImageResult.html#/c:objc(pl)MBCombinedFullDocumentImageResult(py)fullDocumentBackImage":{"name":"fullDocumentBackImage","abstract":"

    back side image of the document if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBCombinedFullDocumentImageResult"},"Protocols/MBBlinkIdRecognizerDelegate.html#/c:objc(pl)MBBlinkIdRecognizerDelegate(im)onImageAvailable:":{"name":"-onImageAvailable:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerDelegate"},"Protocols/MBBlinkIdRecognizerDelegate.html#/c:objc(pl)MBBlinkIdRecognizerDelegate(im)onDocumentSupportStatus:":{"name":"-onDocumentSupportStatus:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidFinishScanning:state:":{"name":"-blinkIdOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidTapClose:":{"name":"-blinkIdOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidFinishScanningFirstSide:":{"name":"-blinkIdOverlayViewControllerDidFinishScanningFirstSide:","abstract":"

    Called when scanning library finished scanning first side of the document

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html#/c:objc(pl)MBBlinkIdCombinedRecognizerDelegate(im)onCombinedImageAvailable:":{"name":"-onCombinedImageAvailable:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html#/c:objc(pl)MBBlinkIdCombinedRecognizerDelegate(im)onCombinedDocumentSupportStatus:":{"name":"-onCombinedDocumentSupportStatus:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html":{"name":"MBBlinkIdCombinedRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html":{"name":"MBBlinkIdOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBBlinkIdRecognizerDelegate.html":{"name":"MBBlinkIdRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBCombinedFullDocumentImageResult.html":{"name":"MBCombinedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBCombinedRecognizer.html":{"name":"MBCombinedRecognizer","abstract":"

    Undocumented

    "},"Protocols/MBCombinedRecognizerResult.html":{"name":"MBCombinedRecognizerResult","abstract":"

    Undocumented

    "},"Protocols/MBDebugRecognizerRunnerDelegate.html":{"name":"MBDebugRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining debug metadata

    "},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html":{"name":"MBDebugRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining debug metadata

    "},"Protocols/MBDetectionRecognizerRunnerDelegate.html":{"name":"MBDetectionRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining detection results

    "},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html":{"name":"MBDetectionRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining detection results

    "},"Protocols/MBDigitalSignature.html":{"name":"MBDigitalSignature","abstract":"

    Undocumented

    "},"Protocols/MBDigitalSignatureResult.html":{"name":"MBDigitalSignatureResult","abstract":"

    Undocumented

    "},"Protocols/MBDocumentOverlayViewControllerDelegate.html":{"name":"MBDocumentOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html":{"name":"MBDocumentVerificationOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBDocumentVerificationSubviewDelegate.html":{"name":"MBDocumentVerificationSubviewDelegate","abstract":"

    Undocumented

    "},"Protocols/MBEncodeFaceImage.html":{"name":"MBEncodeFaceImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeFullDocumentImage.html":{"name":"MBEncodeFullDocumentImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeMrzImage.html":{"name":"MBEncodeMrzImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeSignatureImage.html":{"name":"MBEncodeSignatureImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodedCombinedFullDocumentImageResult.html":{"name":"MBEncodedCombinedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedFaceImageResult.html":{"name":"MBEncodedFaceImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedFullDocumentImageResult.html":{"name":"MBEncodedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedMrzImageResult.html":{"name":"MBEncodedMrzImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedSignatureImageResult.html":{"name":"MBEncodedSignatureImageResult","abstract":"

    Undocumented

    "},"Protocols/MBFaceImage.html":{"name":"MBFaceImage","abstract":"

    Undocumented

    "},"Protocols/MBFaceImageDpi.html":{"name":"MBFaceImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBFaceImageResult.html":{"name":"MBFaceImageResult","abstract":"

    Undocumented

    "},"Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html":{"name":"MBFirstSideFinishedRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html":{"name":"MBFirstSideFinishedRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFrameGrabberRecognizerDelegate.html":{"name":"MBFrameGrabberRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImage.html":{"name":"MBFullDocumentImage","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageDpi.html":{"name":"MBFullDocumentImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageExtensionFactors.html":{"name":"MBFullDocumentImageExtensionFactors","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageResult.html":{"name":"MBFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBGlareDetection.html":{"name":"MBGlareDetection","abstract":"

    Undocumented

    "},"Protocols/MBGlareRecognizerRunnerDelegate.html":{"name":"MBGlareRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html":{"name":"MBGlareRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBImageProcessingRecognizerRunnerDelegate.html":{"name":"MBImageProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBMrzFilter.html":{"name":"MBMrzFilter","abstract":"

    Undocumented

    "},"Protocols/MBMrzImage.html":{"name":"MBMrzImage","abstract":"

    Undocumented

    "},"Protocols/MBMrzImageDpi.html":{"name":"MBMrzImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBMrzImageResult.html":{"name":"MBMrzImageResult","abstract":"

    Undocumented

    "},"Protocols/MBNativeResult.html":{"name":"MBNativeResult","abstract":"

    Undocumented

    "},"Protocols/MBOcrRecognizerRunnerDelegate.html":{"name":"MBOcrRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining ocr results

    "},"Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html":{"name":"MBOcrRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining ocr results

    "},"Protocols/MBOverlayContainerViewController.html":{"name":"MBOverlayContainerViewController","abstract":"

    Overlay View Controller also needs to notify CameraViewController on certain events."},"Protocols/MBPointDetectorSubview.html":{"name":"MBPointDetectorSubview","abstract":"

    Protocol for processing MBDisplayablePointsDetection. Subviews implementing this protocol process and draw points on the screen (e.g. flashing dots)

    "},"Protocols/MBQuadDetectorSubview.html":{"name":"MBQuadDetectorSubview","abstract":"

    Protocol for processing MBDisplayableQuadDetection. Subviews implementing this protocol process and draw quad on the screen (e.g. viewfinder drawing document outlining)

    "},"Protocols/MBRecognizerRunnerViewController.html":{"name":"MBRecognizerRunnerViewController","abstract":"

    Protocol for View controllers which present camera and provide scanning features

    "},"Protocols/MBRecognizerRunnerViewControllerDelegate.html":{"name":"MBRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for MBRecognizerRunnerViewController actions

    "},"Protocols/MBResultSubview.html":{"name":"MBResultSubview","abstract":"

    Protocol for processing MBRecognizerResult. Subviews implementing this protocol process and draw result data on the screen (e.g. letting users know is scanning was successful)

    "},"Protocols/MBScanningRecognizerRunnerDelegate.html":{"name":"MBScanningRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html":{"name":"MBScanningRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBSignatureImage.html":{"name":"MBSignatureImage","abstract":"

    Undocumented

    "},"Protocols/MBSignatureImageDpi.html":{"name":"MBSignatureImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBSignatureImageResult.html":{"name":"MBSignatureImageResult","abstract":"

    Undocumented

    "},"Protocols/MBStringProcessingRecognizerRunnerDelegate.html":{"name":"MBStringProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBSubviewDelegate.html":{"name":"MBSubviewDelegate","abstract":"

    Protocol which all objects interested in receiving information about overlay subviews need to implement

    "},"Protocols/MBTemplatingClassifier.html":{"name":"MBTemplatingClassifier","abstract":"

    Undocumented

    "},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentType":{"name":"DocumentType","abstract":"

    Mandatory on all driver’s licenses. All barcodes which are using 3-track magnetic","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardVersionNumber":{"name":"StandardVersionNumber","abstract":"

    Mandatory on all driver’s licenses.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFamilyName":{"name":"CustomerFamilyName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFirstName":{"name":"CustomerFirstName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFullName":{"name":"CustomerFullName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DateOfBirth":{"name":"DateOfBirth","abstract":"

    Mandatory on all AAMVA, Magentic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Sex":{"name":"Sex","abstract":"

    Mandatory on all AAMVA, Magentic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@EyeColor":{"name":"EyeColor","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressStreet":{"name":"AddressStreet","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressCity":{"name":"AddressCity","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressJurisdictionCode":{"name":"AddressJurisdictionCode","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressPostalCode":{"name":"AddressPostalCode","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FullAddress":{"name":"FullAddress","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Height":{"name":"Height","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HeightIn":{"name":"HeightIn","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HeightCm":{"name":"HeightCm","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerMiddleName":{"name":"CustomerMiddleName","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HairColor":{"name":"HairColor","abstract":"

    Optional on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NameSuffix":{"name":"NameSuffix","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAFullName":{"name":"AKAFullName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAFamilyName":{"name":"AKAFamilyName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAGivenName":{"name":"AKAGivenName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKASuffixName":{"name":"AKASuffixName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightRange":{"name":"WeightRange","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightPounds":{"name":"WeightPounds","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightKilograms":{"name":"WeightKilograms","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerIdNumber":{"name":"CustomerIdNumber","abstract":"

    Mandatory on all AAMVA and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FamilyNameTruncation":{"name":"FamilyNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FirstNameTruncation":{"name":"FirstNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@MiddleNameTruncation":{"name":"MiddleNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PlaceOfBirth":{"name":"PlaceOfBirth","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressStreet2":{"name":"AddressStreet2","abstract":"

    Optional on all AAMVA barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@RaceEthnicity":{"name":"RaceEthnicity","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NamePrefix":{"name":"NamePrefix","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CountryIdentification":{"name":"CountryIdentification","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceStreetAddress":{"name":"ResidenceStreetAddress","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceStreetAddress2":{"name":"ResidenceStreetAddress2","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceCity":{"name":"ResidenceCity","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceJurisdictionCode":{"name":"ResidenceJurisdictionCode","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidencePostalCode":{"name":"ResidencePostalCode","abstract":"

    Optional on AAMVA 01 barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceFullAddress":{"name":"ResidenceFullAddress","abstract":"

    Optional on AAMVA 01 barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under18":{"name":"Under18","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under19":{"name":"Under19","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under21":{"name":"Under21","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@SocialSecurityNumber":{"name":"SocialSecurityNumber","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKASocialSecurityNumber":{"name":"AKASocialSecurityNumber","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAMiddleName":{"name":"AKAMiddleName","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAPrefixName":{"name":"AKAPrefixName","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@OrganDonor":{"name":"OrganDonor","abstract":"

    Optional on AAMVA 01, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Veteran":{"name":"Veteran","abstract":"

    Optional on AAMVA 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKADateOfBirth":{"name":"AKADateOfBirth","abstract":"

    Optional on AAMVA 01. (MMDDCCYY format)

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuerIdentificationNumber":{"name":"IssuerIdentificationNumber","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentExpirationDate":{"name":"DocumentExpirationDate","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVersionNumber":{"name":"JurisdictionVersionNumber","abstract":"

    Mandatory on all AAMVA and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVehicleClass":{"name":"JurisdictionVehicleClass","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionRestrictionCodes":{"name":"JurisdictionRestrictionCodes","abstract":"

    Mandatory on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionEndorsementCodes":{"name":"JurisdictionEndorsementCodes","abstract":"

    Mandatory on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentIssueDate":{"name":"DocumentIssueDate","abstract":"

    Mandatory on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FederalCommercialVehicleCodes":{"name":"FederalCommercialVehicleCodes","abstract":"

    Mandatory on AAMVA versions 02 and 03.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuingJurisdiction":{"name":"IssuingJurisdiction","abstract":"

    Optional on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardVehicleClassification":{"name":"StandardVehicleClassification","abstract":"

    Optional on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuingJurisdictionName":{"name":"IssuingJurisdictionName","abstract":"

    Optional on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardEndorsementCode":{"name":"StandardEndorsementCode","abstract":"

    Optional on all AAMVA barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardRestrictionCode":{"name":"StandardRestrictionCode","abstract":"

    Optional on all AAMVA barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVehicleClassificationDescription":{"name":"JurisdictionVehicleClassificationDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionEndorsmentCodeDescription":{"name":"JurisdictionEndorsmentCodeDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionRestrictionCodeDescription":{"name":"JurisdictionRestrictionCodeDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@InventoryControlNumber":{"name":"InventoryControlNumber","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CardRevisionDate":{"name":"CardRevisionDate","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentDiscriminator":{"name":"DocumentDiscriminator","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Magnetic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@LimitedDurationDocument":{"name":"LimitedDurationDocument","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AuditInformation":{"name":"AuditInformation","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ComplianceType":{"name":"ComplianceType","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssueTimestamp":{"name":"IssueTimestamp","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitExpirationDate":{"name":"PermitExpirationDate","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitIdentifier":{"name":"PermitIdentifier","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitIssueDate":{"name":"PermitIssueDate","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NumberOfDuplicates":{"name":"NumberOfDuplicates","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HAZMATExpirationDate":{"name":"HAZMATExpirationDate","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@MedicalIndicator":{"name":"MedicalIndicator","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NonResident":{"name":"NonResident","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@UniqueCustomerId":{"name":"UniqueCustomerId","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DataDiscriminator":{"name":"DataDiscriminator","abstract":"

    Optional on compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentExpirationMonth":{"name":"DocumentExpirationMonth","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentNonexpiring":{"name":"DocumentNonexpiring","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@SecurityVersion":{"name":"SecurityVersion","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateEmpty":{"name":"MBRecognizerResultStateEmpty","abstract":"

    Empty

    ","parent_name":"MBRecognizerResultState"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateUncertain":{"name":"MBRecognizerResultStateUncertain","abstract":"

    Uncertain

    ","parent_name":"MBRecognizerResultState"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateValid":{"name":"MBRecognizerResultStateValid","abstract":"

    Valid

    ","parent_name":"MBRecognizerResultState"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeDefault":{"name":"MBFrameQualityEstimationModeDefault","abstract":"

    Default. Frame quality estimation is ON if enabled recognizers require it by default.

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeOn":{"name":"MBFrameQualityEstimationModeOn","abstract":"

    Frame quality estimation is always on

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeOff":{"name":"MBFrameQualityEstimationModeOff","abstract":"

    Frame quality estimation is always off

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeDefault":{"name":"MBRecognitionModeDefault","abstract":"

    Classic, production mode. Results are returned after first valid scanning

    ","parent_name":"MBRecognitionMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeTest":{"name":"MBRecognitionModeTest","abstract":"

    Recognition Test. Results are never returned, recognition is performed repeatedly

    ","parent_name":"MBRecognitionMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeDetectionTest":{"name":"MBRecognitionModeDetectionTest","abstract":"

    Recognition Test. Results are never returned, only detection is performed repeatedly

    ","parent_name":"MBRecognitionMode"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateEmpty":{"name":"MBProcessorResultStateEmpty","abstract":"

    Empty

    ","parent_name":"MBProcessorResultState"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateUncertain":{"name":"MBProcessorResultStateUncertain","abstract":"

    Uncertain

    ","parent_name":"MBProcessorResultState"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateValid":{"name":"MBProcessorResultStateValid","abstract":"

    Valid

    ","parent_name":"MBProcessorResultState"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_AKZIDENZ_GROTESK":{"name":"MB_OCR_FONT_AKZIDENZ_GROTESK","abstract":"

    Akzidenz Grotesk font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARIAL":{"name":"MB_OCR_FONT_ARIAL","abstract":"

    Arial font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARIAL_BLACK":{"name":"MB_OCR_FONT_ARIAL_BLACK","abstract":"

    Arial black font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARNHEM":{"name":"MB_OCR_FONT_ARNHEM","abstract":"

    Arnhem font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_AVANT_GARDE":{"name":"MB_OCR_FONT_AVANT_GARDE","abstract":"

    Avant garde font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_BEMBO":{"name":"MB_OCR_FONT_BEMBO","abstract":"

    Bembo font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_BODONI":{"name":"MB_OCR_FONT_BODONI","abstract":"

    Bodoni font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CALIBRI":{"name":"MB_OCR_FONT_CALIBRI","abstract":"

    Calibri font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CALIBRI_BOLD":{"name":"MB_OCR_FONT_CALIBRI_BOLD","abstract":"

    Calibri bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CHAINPRINTER":{"name":"MB_OCR_FONT_CHAINPRINTER","abstract":"

    Chainprinter font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COMIC_SANS":{"name":"MB_OCR_FONT_COMIC_SANS","abstract":"

    Comic sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CONCERTO_ROUNDED_SG":{"name":"MB_OCR_FONT_CONCERTO_ROUNDED_SG","abstract":"

    Concerto rounded SG font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER":{"name":"MB_OCR_FONT_COURIER","abstract":"

    Courier font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_BOLD":{"name":"MB_OCR_FONT_COURIER_BOLD","abstract":"

    Courier bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_MEDIUM_BOLD":{"name":"MB_OCR_FONT_COURIER_MEDIUM_BOLD","abstract":"

    Courier medium bold","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_NEW_BOLD":{"name":"MB_OCR_FONT_COURIER_NEW_BOLD","abstract":"

    Courier new bold","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_NEW_CE":{"name":"MB_OCR_FONT_COURIER_NEW_CE","abstract":"

    Courier new ce font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_CONDENSED":{"name":"MB_OCR_FONT_COURIER_CONDENSED","abstract":"

    Courier censored font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_DEJAVU_SANS_MONO":{"name":"MB_OCR_FONT_DEJAVU_SANS_MONO","abstract":"

    Dejavu sans mono font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_DIN":{"name":"MB_OCR_FONT_DIN","abstract":"

    Din font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GROTESK_NO_2_SB_BOLD":{"name":"MB_OCR_FONT_EUROPA_GROTESK_NO_2_SB_BOLD","abstract":"

    Europa grotesk no 2 SB bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROSTILE":{"name":"MB_OCR_FONT_EUROSTILE","abstract":"

    Eurostile font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_F25_BANK_PRINTER_BOLD":{"name":"MB_OCR_FONT_F25_BANK_PRINTER_BOLD","abstract":"

    F25 bank printer bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FRANKLIN_GOTHIC":{"name":"MB_OCR_FONT_FRANKLIN_GOTHIC","abstract":"

    Franklin gothic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FRUTIGER":{"name":"MB_OCR_FONT_FRUTIGER","abstract":"

    Frutiger font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FUTURA":{"name":"MB_OCR_FONT_FUTURA","abstract":"

    Futura font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FUTURA_BOLD":{"name":"MB_OCR_FONT_FUTURA_BOLD","abstract":"

    Futura bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GARAMOND":{"name":"MB_OCR_FONT_GARAMOND","abstract":"

    Garamond font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GEORGIA":{"name":"MB_OCR_FONT_GEORGIA","abstract":"

    Georgia font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GILL_SANS":{"name":"MB_OCR_FONT_GILL_SANS","abstract":"

    Gill sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HANDWRITTEN":{"name":"MB_OCR_FONT_HANDWRITTEN","abstract":"

    Handwritten font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA":{"name":"MB_OCR_FONT_HELVETICA","abstract":"

    Helvetica font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA_BOLD":{"name":"MB_OCR_FONT_HELVETICA_BOLD","abstract":"

    Helvetica bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA_CONDENSED_LIGHT":{"name":"MB_OCR_FONT_HELVETICA_CONDENSED_LIGHT","abstract":"

    Helvetica condensed light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HYPERMARKET":{"name":"MB_OCR_FONT_HYPERMARKET","abstract":"

    Hypermarket font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_INTERSTATE":{"name":"MB_OCR_FONT_INTERSTATE","abstract":"

    Interstate font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LATIN_MODERN":{"name":"MB_OCR_FONT_LATIN_MODERN","abstract":"

    Latin modern math font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LATIN_MODERN_ITALIC":{"name":"MB_OCR_FONT_LATIN_MODERN_ITALIC","abstract":"

    Latin modern italic font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LETTER_GOTHIC":{"name":"MB_OCR_FONT_LETTER_GOTHIC","abstract":"

    Letter gothic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LUCIDA":{"name":"MB_OCR_FONT_LUCIDA","abstract":"

    Lucida font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LUCIDA_SANS":{"name":"MB_OCR_FONT_LUCIDA_SANS","abstract":"

    Lucida sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MATRIX":{"name":"MB_OCR_FONT_MATRIX","abstract":"

    Matrix font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_META":{"name":"MB_OCR_FONT_META","abstract":"

    Meta font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MINION":{"name":"MB_OCR_FONT_MINION","abstract":"

    Minion font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OCRA":{"name":"MB_OCR_FONT_OCRA","abstract":"

    OCR A font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OCRB":{"name":"MB_OCR_FONT_OCRB","abstract":"

    OCR B font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OFFICINA":{"name":"MB_OCR_FONT_OFFICINA","abstract":"

    Officina font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OPTIMA":{"name":"MB_OCR_FONT_OPTIMA","abstract":"

    Optima font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_PRINTF":{"name":"MB_OCR_FONT_PRINTF","abstract":"

    Printf font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROCKWELL":{"name":"MB_OCR_FONT_ROCKWELL","abstract":"

    Rockwell font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROTIS_SANS_SERIF":{"name":"MB_OCR_FONT_ROTIS_SANS_SERIF","abstract":"

    Rotis sans serif font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROTIS_SERIF":{"name":"MB_OCR_FONT_ROTIS_SERIF","abstract":"

    Rotis serif font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_SABON":{"name":"MB_OCR_FONT_SABON","abstract":"

    Sabon font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_STONE":{"name":"MB_OCR_FONT_STONE","abstract":"

    Stone font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_SV_BASIC_MANUAL":{"name":"MB_OCR_FONT_SV_BASIC_MANUAL","abstract":"

    SV basic manual font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TAHOMA":{"name":"MB_OCR_FONT_TAHOMA","abstract":"

    Tahoma font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TAHOMA_BOLD":{"name":"MB_OCR_FONT_TAHOMA_BOLD","abstract":"

    Tahoma bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TEX_GYRE_TERMES":{"name":"MB_OCR_FONT_TEX_GYRE_TERMES","abstract":"

    Tex gyre termes font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TEX_GYRE_TERMES_ITALIC":{"name":"MB_OCR_FONT_TEX_GYRE_TERMES_ITALIC","abstract":"

    Tex gyre termes italic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_THE_SANS_MONO_CONDENSED_BLACK":{"name":"MB_OCR_FONT_THE_SANS_MONO_CONDENSED_BLACK","abstract":"

    Sans mono condensed black font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_THESIS":{"name":"MB_OCR_FONT_THESIS","abstract":"

    Thesis font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TICKET_DE_CAISSE":{"name":"MB_OCR_FONT_TICKET_DE_CAISSE","abstract":"

    Ticket de caisse font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TIMES_NEW_ROMAN":{"name":"MB_OCR_FONT_TIMES_NEW_ROMAN","abstract":"

    Times new roman font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TRAJAN":{"name":"MB_OCR_FONT_TRAJAN","abstract":"

    Trajan font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TRINITE":{"name":"MB_OCR_FONT_TRINITE","abstract":"

    Trinite font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNIVERS":{"name":"MB_OCR_FONT_UNIVERS","abstract":"

    Univers font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_VERDANA":{"name":"MB_OCR_FONT_VERDANA","abstract":"

    Verdana font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_VOLTAIRE":{"name":"MB_OCR_FONT_VOLTAIRE","abstract":"

    Voltaire font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_WALBAUM":{"name":"MB_OCR_FONT_WALBAUM","abstract":"

    Walbaum font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GRO_SB":{"name":"MB_OCR_FONT_EUROPA_GRO_SB","abstract":"

    Europa gro sb font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GRO_SB_LIGHT":{"name":"MB_OCR_FONT_EUROPA_GRO_SB_LIGHT","abstract":"

    Europa gro sb light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ANTONIO_REGULAR":{"name":"MB_OCR_FONT_ANTONIO_REGULAR","abstract":"

    Antonio regular font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CORPORATE_LIGHT":{"name":"MB_OCR_FONT_CORPORATE_LIGHT","abstract":"

    Corporate S Light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MICR":{"name":"MB_OCR_FONT_MICR","abstract":"

    MICR font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARABIC_NILE":{"name":"MB_OCR_FONT_ARABIC_NILE","abstract":"

    Arabic font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNKNOWN":{"name":"MB_OCR_FONT_UNKNOWN","abstract":"

    Unknown font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_XITS_MATH":{"name":"MB_OCR_FONT_XITS_MATH","abstract":"

    XITS Math font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ANY":{"name":"MB_OCR_FONT_ANY","abstract":"

    Any of the other listed fonts

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNKNOWN_MATH":{"name":"MB_OCR_FONT_UNKNOWN_MATH","abstract":"

    Unknown math font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UKDL_LIGHT":{"name":"MB_OCR_FONT_UKDL_LIGHT","abstract":"

    Font found on UKDL licenses

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COUNT":{"name":"MB_OCR_FONT_COUNT","abstract":"

    Must be last as it holds the number of available fonts

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FE_SCHRIFT":{"name":"MB_OCR_FONT_FE_SCHRIFT","abstract":"

    German license plate font *

    ","parent_name":"MBOcrFont"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeUnknown":{"name":"MBMrtdTypeUnknown","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeIdentityCard":{"name":"MBMrtdTypeIdentityCard","abstract":"

    Identity card

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypePassport":{"name":"MBMrtdTypePassport","abstract":"

    Passport

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeVisa":{"name":"MBMrtdTypeVisa","abstract":"

    Visa

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeGreenCard":{"name":"MBMrtdTypeGreenCard","abstract":"

    US Green Card

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd1":{"name":"MBMrtdSpecificationTd1","abstract":"

    Preset for detecting TD1 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd2":{"name":"MBMrtdSpecificationTd2","abstract":"

    Preset for detecting TD2 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd3":{"name":"MBMrtdSpecificationTd3","abstract":"

    Preset for detecting TD3 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationUp":{"name":"MBProcessingOrientationUp","abstract":"

    Text oriented same as picture

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationRight":{"name":"MBProcessingOrientationRight","abstract":"

    Text is rotated 90 degrees clockwise

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationDown":{"name":"MBProcessingOrientationDown","abstract":"

    Text is upside down

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationLeft":{"name":"MBProcessingOrientationLeft","abstract":"

    Text is rotated 90 degrees counterclockwise

    ","parent_name":"MBProcessingOrientation"},"Enums/MBDocumentVerificationHighResImageState.html#/c:@E@MBDocumentVerificationHighResImageState@MBDocumentVerificationHighResImageStateFrontSide":{"name":"MBDocumentVerificationHighResImageStateFrontSide","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationHighResImageState"},"Enums/MBDocumentVerificationHighResImageState.html#/c:@E@MBDocumentVerificationHighResImageState@MBDocumentVerificationHighResImageStateBackSideSide":{"name":"MBDocumentVerificationHighResImageStateBackSideSide","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationHighResImageState"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypeTD1":{"name":"MBDocumentFaceDetectorTypeTD1","abstract":"

    Uses document detector for TD1 size identity cards

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypeTD2":{"name":"MBDocumentFaceDetectorTypeTD2","abstract":"

    Uses document detector for TD2 size identity cards

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypePassportsAndVisas":{"name":"MBDocumentFaceDetectorTypePassportsAndVisas","abstract":"

    Uses MRTD detector for detecting documents with MRZ

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusSuccess":{"name":"MBDetectionStatusSuccess","abstract":"

    Object was successfuly detected.

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusFail":{"name":"MBDetectionStatusFail","abstract":"

    Object was not detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraTooHigh":{"name":"MBDetectionStatusCameraTooHigh","abstract":"

    Object was successfully detected, but the camera was too far above the object for processing

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraAtAngle":{"name":"MBDetectionStatusCameraAtAngle","abstract":"

    Object was successfully detected, but the perspective angle of camera is too high

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraRotated":{"name":"MBDetectionStatusCameraRotated","abstract":"

    Object was successfully detected, but the object is rotated and not aligned to the camera edges

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusQRSuccess":{"name":"MBDetectionStatusQRSuccess","abstract":"

    QR code was successfully detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusPdf417Success":{"name":"MBDetectionStatusPdf417Success","abstract":"

    PDF417 barcode was successfully detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusFallbackSuccess":{"name":"MBDetectionStatusFallbackSuccess","abstract":"

    Object was successfully detected using a fallback algorithm

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusPartialForm":{"name":"MBDetectionStatusPartialForm","abstract":"

    Object was detected, but is only partially visible on screen

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraTooNear":{"name":"MBDetectionStatusCameraTooNear","abstract":"

    Object was successfully detected, but the camera is too near to the object for processing

    ","parent_name":"MBDetectionStatus"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultNotPerformed":{"name":"MBDataMatchResultNotPerformed","abstract":"

    Data matching has not been performed.

    ","parent_name":"MBDataMatchResult"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultFailed":{"name":"MBDataMatchResultFailed","abstract":"

    Data does not match.

    ","parent_name":"MBDataMatchResult"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultSuccess":{"name":"MBDataMatchResultSuccess","abstract":"

    Data match.

    ","parent_name":"MBDataMatchResult"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionNone":{"name":"MBCameraAutofocusRestrictionNone","abstract":"

    Default. Indicates that the autofocus system should not restrict the focus range.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionNear":{"name":"MBCameraAutofocusRestrictionNear","abstract":"

    Indicates that the autofocus system should restrict the focus range for subject matter that is near to the camera.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionFar":{"name":"MBCameraAutofocusRestrictionFar","abstract":"

    Indicates that the autofocus system should restrict the focus range for subject matter that is far from the camera.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraType.html#/c:@E@MBCameraType@MBCameraTypeBack":{"name":"MBCameraTypeBack","abstract":"

    Back facing camera

    ","parent_name":"MBCameraType"},"Enums/MBCameraType.html#/c:@E@MBCameraType@MBCameraTypeFront":{"name":"MBCameraTypeFront","abstract":"

    Front facing camera

    ","parent_name":"MBCameraType"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPreset480p":{"name":"MBCameraPreset480p","abstract":"

    480p video will always be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPreset720p":{"name":"MBCameraPreset720p","abstract":"

    720p video will always be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetOptimal":{"name":"MBCameraPresetOptimal","abstract":"

    The library will calculate optimal resolution based on the use case and device used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetMax":{"name":"MBCameraPresetMax","abstract":"

    Device’s maximal video resolution will be used.

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetPhoto":{"name":"MBCameraPresetPhoto","abstract":"

    Device’s photo preview resolution will be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html":{"name":"MBCameraPreset","abstract":"

    Camera resolution preset

    "},"Enums/MBCameraType.html":{"name":"MBCameraType","abstract":"

    Camera type

    "},"Enums/MBCameraAutofocusRestriction.html":{"name":"MBCameraAutofocusRestriction","abstract":"

    Camera autofocus restricion mode

    "},"Enums/MBDataMatchResult.html":{"name":"MBDataMatchResult","abstract":"

    Result of the data matching algorithm for scanned parts/sides of the document.

    "},"Enums/MBDetectionStatus.html":{"name":"MBDetectionStatus","abstract":"

    Status of the object detection in Microblink SDK

    "},"Enums/MBDocumentFaceDetectorType.html":{"name":"MBDocumentFaceDetectorType","abstract":"

    Enumeration of all supported document types for MBDocumentFaceRecognizer

    "},"Enums/MBDocumentVerificationHighResImageState.html":{"name":"MBDocumentVerificationHighResImageState","abstract":"

    Undocumented

    "},"Enums/MBProcessingOrientation.html":{"name":"MBProcessingOrientation","abstract":"

    Enum which describes text orientation on an image.

    "},"Enums/MBMrtdSpecificationPreset.html":{"name":"MBMrtdSpecificationPreset","abstract":"

    Presets which can be used to instantiate mrtd specification for a specific mrtd format

    "},"Enums/MBMrtdDocumentType.html":{"name":"MBMrtdDocumentType","abstract":"

    Supported MRTD document types

    "},"Enums/MBOcrFont.html":{"name":"MBOcrFont","abstract":"

    A list of fonts supported by BlinkOCR

    "},"Enums/MBProcessorResultState.html":{"name":"MBProcessorResultState","abstract":"

    Enumeration of posibble processor result state

    "},"Enums/MBRecognitionMode.html":{"name":"MBRecognitionMode","abstract":"

    Denotes the mode in which Recognizers performs recognition

    "},"Enums/MBFrameQualityEstimationMode.html":{"name":"MBFrameQualityEstimationMode","abstract":"

    Denotes the mode in which FrameQuality estimation works

    "},"Enums/MBRecognizerResultState.html":{"name":"MBRecognizerResultState","abstract":"

    Enumeration of posibble recognizer result state

    "},"Enums/MBUsdlKeys.html":{"name":"MBUsdlKeys","abstract":"

    Possible keys that can be used for obtaining USDL result elements.

    "},"Constants.html#/c:@MBIllegalModificationException":{"name":"MBIllegalModificationException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseKeyException":{"name":"MBInvalidLicenseKeyException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseeKeyException":{"name":"MBInvalidLicenseeKeyException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseResourceException":{"name":"MBInvalidLicenseResourceException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidBundleException":{"name":"MBInvalidBundleException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBMissingSettingsException":{"name":"MBMissingSettingsException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidArgumentException":{"name":"MBInvalidArgumentException","abstract":"

    Undocumented

    "},"Classes/MBVisaRecognizerResult.html#/c:objc(cs)MBVisaRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVisaRecognizerResult"},"Classes/MBVisaRecognizerResult.html#/c:objc(cs)MBVisaRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone.

    ","parent_name":"MBVisaRecognizerResult"},"Classes/MBVisaRecognizer.html#/c:objc(cs)MBVisaRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVisaRecognizer"},"Classes/MBVisaRecognizer.html#/c:objc(cs)MBVisaRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning VisaRecognizer

    ","parent_name":"MBVisaRecognizer"},"Classes/MBViewControllerFactory.html#/c:objc(cs)MBViewControllerFactory(cm)recognizerRunnerViewControllerWithOverlayViewController:":{"name":"+recognizerRunnerViewControllerWithOverlayViewController:","abstract":"

    Method creates a camera view controller which is responsible for displaying the","parent_name":"MBViewControllerFactory"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)address":{"name":"address","abstract":"

    The full address of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)sex":{"name":"sex","abstract":"

    TThe sex of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)getField:":{"name":"-getField:","abstract":"

    Returns a string value for a given key.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)optionalElements":{"name":"-optionalElements","abstract":"

    Array of elements that are not part of AAMVA standard and are specific to each US state.","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)result":{"name":"result","abstract":"

    USDL recognizer results

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)address":{"name":"address","abstract":"

    The full address of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)sex":{"name":"sex","abstract":"

    TThe sex of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)getField:":{"name":"-getField:","abstract":"

    Returns a string value for a given key.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)optionalElements":{"name":"-optionalElements","abstract":"

    Array of elements that are not part of AAMVA standard and are specific to each US state.","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning both sides of USDL

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)type":{"name":"type","abstract":"

    Type of document this recognizer will scan.

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBTemplatingRecognizerResult.html#/c:objc(cs)MBTemplatingRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingRecognizerResult"},"Classes/MBTemplatingRecognizerResult.html#/c:objc(cs)MBTemplatingRecognizerResult(py)templatingClass":{"name":"templatingClass","abstract":"

    Returns the MBTemplatingClass for recognized document. If classification failed,","parent_name":"MBTemplatingRecognizerResult"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)templatingResult":{"name":"templatingResult","abstract":"

    Templating recognizer result

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)useGlareDetector":{"name":"useGlareDetector","abstract":"

    Defines if glare detection should be turned on/off for Templating Recognizer.

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)templatingClasses":{"name":"templatingClasses","abstract":"

    Returns all available templating classes

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setClassificationProcessorGroups:":{"name":"-setClassificationProcessorGroups:","abstract":"

    Sets processor groups that will be executed before classification

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)getClassificationProcessorGroups":{"name":"-getClassificationProcessorGroups","abstract":"

    Returns the currently set array of classification processor groups.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setNonClassificationProcessorGroups:":{"name":"-setNonClassificationProcessorGroups:","abstract":"

    Sets processor groups that will be executed if MBTemplatingClassifier’s classify returns YES.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)getNonClassificationProcessorGroups":{"name":"-getNonClassificationProcessorGroups","abstract":"

    Returns the currently set array of non-classification processor groups.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setTemplatingClassifier:":{"name":"-setTemplatingClassifier:","abstract":"

    Sets the classifier which will tell whether currently processed document belongs to this class.","parent_name":"MBTemplatingClass"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Designated initializer

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)willFocusAtPoint:":{"name":"-willFocusAtPoint:","abstract":"

    Undocumented

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBSuccessFrameGrabberRecognizerResult.html#/c:objc(cs)MBSuccessFrameGrabberRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizerResult"},"Classes/MBSuccessFrameGrabberRecognizerResult.html#/c:objc(cs)MBSuccessFrameGrabberRecognizerResult(py)successFrame":{"name":"successFrame","abstract":"

    Success frame PPImage of successful frame

    ","parent_name":"MBSuccessFrameGrabberRecognizerResult"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(im)initWithRecognizer:":{"name":"-initWithRecognizer:","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(py)result":{"name":"result","abstract":"

    SuccessFrameGrabber recognizer results

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(py)slaveRecognizer":{"name":"slaveRecognizer","abstract":"

    Slave recognizer that is wrapped with SuccessFrameGrabber

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSubview.html#/c:objc(cs)MBSubview(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified on Overlay events

    ","parent_name":"MBSubview"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)debugRecognizerRunnerViewControllerDelegate":{"name":"debugRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)detectionRecognizerRunnerViewControllerDelegate":{"name":"detectionRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)ocrRecognizerRunnerViewControllerDelegate":{"name":"ocrRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)glareRecognizerRunnerViewControllerDelegate":{"name":"glareRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)firstSideFinishedRecognizerRunnerViewControllerDelegate":{"name":"firstSideFinishedRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)debugRecognizerRunnerDelegate":{"name":"debugRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)detectionRecognizerRunnerDelegate":{"name":"detectionRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)ocrRecognizerRunnerDelegate":{"name":"ocrRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)glareRecognizerRunnerDelegate":{"name":"glareRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)firstSideFinishedRecognizerRunnerDelegate":{"name":"firstSideFinishedRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)metadataDelegates":{"name":"metadataDelegates","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)scanningRecognizerRunnerDelegate":{"name":"scanningRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)imageProcessingRecognizerRunnerDelegate":{"name":"imageProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)stringProcessingRecognizerRunnerDelegate":{"name":"stringProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)coordinator":{"name":"coordinator","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)initWithRecognizerCollection:":{"name":"-initWithRecognizerCollection:","abstract":"

    Initializes the recognizer runner

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)resetState":{"name":"-resetState","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)resetState:":{"name":"-resetState:","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)cancelProcessing":{"name":"-cancelProcessing","abstract":"

    Cancels all dispatched, but not yet processed image processing requests issued with processImage.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)processImage:":{"name":"-processImage:","abstract":"

    Processes a MBImage object synchronously using current settings.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)processString:":{"name":"-processString:","abstract":"

    Processes a NSString object synchronously using current settings.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Method which is used to apply MBSettings object given by currentSettings property

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerResult.html#/c:objc(cs)MBRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerResult"},"Classes/MBRecognizerResult.html#/c:objc(cs)MBRecognizerResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerResult"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(im)initWithRecognizers:":{"name":"-initWithRecognizers:","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)recognizerList":{"name":"recognizerList","abstract":"

    Contains MBRecognizer objects - each individual recognizer.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)allowMultipleResults":{"name":"allowMultipleResults","abstract":"

    If NO, recognizer chain will stop when finds first valid scan results and will return just it.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)partialRecognitionTimeout":{"name":"partialRecognitionTimeout","abstract":"

    Timeout interval in which the partial scanning results will be returned to the user.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)recognitionMode":{"name":"recognitionMode","abstract":"

    Recognition mode.

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)frameQualityEstimationMode":{"name":"frameQualityEstimationMode","abstract":"

    Frame quality estimation mode. If frame quality estimation is on, some video frames will be skipped, if","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizer.html#/c:objc(cs)MBRecognizer(py)baseResult":{"name":"baseResult","abstract":"

    Base recognizer result.

    ","parent_name":"MBRecognizer"},"Classes/MBRecognizer.html#/c:objc(cs)MBRecognizer(im)getOptimalHudOrientation":{"name":"-getOptimalHudOrientation","abstract":"

    Undocumented

    ","parent_name":"MBRecognizer"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)upperLeft":{"name":"upperLeft","abstract":"

    Upper left point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)upperRight":{"name":"upperRight","abstract":"

    Upper right point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)lowerLeft":{"name":"lowerLeft","abstract":"

    Lower left point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)lowerRight":{"name":"lowerRight","abstract":"

    Lower right point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)initWithUpperLeft:upperRight:lowerLeft:lowerRight:":{"name":"-initWithUpperLeft:upperRight:lowerLeft:lowerRight:","abstract":"

    Designated initializer which initializes all four corners of the quadrangle

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)toPointsArray":{"name":"-toPointsArray","abstract":"

    Returns points of the quadrangle in array in the following order:

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)quadrangleWithTransformation:":{"name":"-quadrangleWithTransformation:","abstract":"

    Creates new quadrangle from this quadrangle, transformed by specified affine transformation.

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)center":{"name":"-center","abstract":"

    Returns the center point of the Quadrangle

    ","parent_name":"MBQuadrangle"},"Classes/MBProcessorResult.html#/c:objc(cs)MBProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBProcessorResult"},"Classes/MBProcessorResult.html#/c:objc(cs)MBProcessorResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBProcessorResult"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(im)initWithProcessingLocation:dewarpPolicy:andProcessors:":{"name":"-initWithProcessingLocation:dewarpPolicy:andProcessors:","abstract":"

    Constructor for MBProcessorGroup.

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(py)processors":{"name":"processors","abstract":"

    Processors that are members of the processor group

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessor.html#/c:objc(cs)MBProcessor(py)baseResult":{"name":"baseResult","abstract":"

    Base processor result

    ","parent_name":"MBProcessor"},"Classes/MBPassportRecognizerResult.html#/c:objc(cs)MBPassportRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPassportRecognizerResult"},"Classes/MBPassportRecognizerResult.html#/c:objc(cs)MBPassportRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone.

    ","parent_name":"MBPassportRecognizerResult"},"Classes/MBPassportRecognizer.html#/c:objc(cs)MBPassportRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPassportRecognizer"},"Classes/MBPassportRecognizer.html#/c:objc(cs)MBPassportRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning PassportRecognizer

    ","parent_name":"MBPassportRecognizer"},"Classes/MBParserGroupProcessorResult.html#/c:objc(cs)MBParserGroupProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessorResult"},"Classes/MBParserGroupProcessorResult.html#/c:objc(cs)MBParserGroupProcessorResult(py)ocrLayout":{"name":"ocrLayout","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessorResult"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(im)initWithParsers:":{"name":"-initWithParsers:","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)parsers":{"name":"parsers","abstract":"

    Getting array of readonly parsers

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)result":{"name":"result","abstract":"

    MBParserGroupProcessor processor result

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)oneOptionalElementInGroupShouldBeValid":{"name":"oneOptionalElementInGroupShouldBeValid","abstract":"

    Set if one optional element should be valid

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOverlayViewController"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(py)recognizerRunnerViewController":{"name":"recognizerRunnerViewController","abstract":"

    Overlay View’s delegate object. Responsible for sending messages to PhotoPay’s","parent_name":"MBOverlayViewController"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(py)cameraPausedView":{"name":"cameraPausedView","abstract":"

    Label which is displayed on screen when camera is paused, but still exists on the screen.

    ","parent_name":"MBOverlayViewController"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(py)language":{"name":"language","abstract":"

    If default overlay contains textual information, text will be localized to this language

    ","parent_name":"MBOverlaySettings"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(py)cameraSettings":{"name":"cameraSettings","abstract":"

    Camera settings

    ","parent_name":"MBOverlaySettings"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(im)init":{"name":"-init","abstract":"

    Initializes the object with default settings (see above for defaults).

    ","parent_name":"MBOverlaySettings"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ul":{"name":"ul","abstract":"

    Upper left corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ur":{"name":"ur","abstract":"

    Upper right corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ll":{"name":"ll","abstract":"

    Lower left corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)lr":{"name":"lr","abstract":"

    Lower right corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)initWithUpperLeft:upperRight:lowerLeft:lowerRight:":{"name":"-initWithUpperLeft:upperRight:lowerLeft:lowerRight:","abstract":"

    Initializer

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)positionWithOffset:":{"name":"-positionWithOffset:","abstract":"

    Creates a position with offset to a current position. Offset is added.

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)rect":{"name":"-rect","abstract":"

    Helper method converting Position to CGRect

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)center":{"name":"-center","abstract":"

    Helper method calculating the center of the Position

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)height":{"name":"-height","abstract":"

    Helper method calculating the height of the position

    ","parent_name":"MBPosition"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)value":{"name":"value","abstract":"

    Unicode value of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)position":{"name":"position","abstract":"

    Position of the char on the image, in the coordinate system of the image

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)height":{"name":"height","abstract":"

    Height of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)uncertain":{"name":"uncertain","abstract":"

    YES if char is uncertain

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)quality":{"name":"quality","abstract":"

    Integer value representing OCR quality of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)font":{"name":"font","abstract":"

    Font of the character

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(im)initWithValue:position:height:":{"name":"-initWithValue:position:height:","abstract":"

    Initializer for a char

    ","parent_name":"MBOcrChar"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(py)character":{"name":"character","abstract":"

    Character that was recognised

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(py)variants":{"name":"variants","abstract":"

    Alternative characters which are possible instead of this character.

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(im)initWithValue:":{"name":"-initWithValue:","abstract":"

    Initializer for a CharWithVariant

    ","parent_name":"MBCharWithVariants"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(py)chars":{"name":"chars","abstract":"

    Ocr chars of the line

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(py)position":{"name":"position","abstract":"

    Position of the line on the image, in the coordinate system of the image

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)initWithOcrChars:position:":{"name":"-initWithOcrChars:position:","abstract":"

    Initializer from chars

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr line

    ","parent_name":"MBOcrLine"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(py)lines":{"name":"lines","abstract":"

    Ocr lines of the block

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(py)position":{"name":"position","abstract":"

    Position of the block on the image, in the coordinate system of the image

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)initWithOcrLines:position:":{"name":"-initWithOcrLines:position:","abstract":"

    Initializer from lines

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr block

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)box":{"name":"box","abstract":"

    Bounding box of the layout. Given in the coordinate system of the image on which OCR was performed.

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)blocks":{"name":"blocks","abstract":"

    Ocr blocks of the layout

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)transform":{"name":"transform","abstract":"

    Tranformation matrix which transforms the coordinate system in which the OCR layout is given","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)transformInvalid":{"name":"transformInvalid","abstract":"

    YES if transform is not valid (e.g, there’s no UI to which it can be calculated. NO otherwise.

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)position":{"name":"position","abstract":"

    Position of layout on the image, in the coordinate system of the image

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)flipped":{"name":"flipped","abstract":"

    OCR layout was recognized from flipped image

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)initWithOcrBlocks:transform:box:flipped:":{"name":"-initWithOcrBlocks:transform:box:flipped:","abstract":"

    Initializer from blocks and transformation

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)initWithOcrBlocks:":{"name":"-initWithOcrBlocks:","abstract":"

    Initializer from blocks

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr layout

    ","parent_name":"MBOcrLayout"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default max allowed dewarp height used when using default constructor.

    ","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(im)initWithMaxAllowedDewarpHeight:":{"name":"-initWithMaxAllowedDewarpHeight:","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(py)maxAllowedDewarpHeight":{"name":"maxAllowedDewarpHeight","abstract":"

    Returns the max allowed dewarp height as specified by this policy.

    ","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentType":{"name":"documentType","abstract":"

    Returns the MRTD document type of recognized document.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)primaryID":{"name":"primaryID","abstract":"

    Returns the primary indentifier. If there is more than one component, they are separated with space.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)secondaryID":{"name":"secondaryID","abstract":"

    Returns the secondary identifier. If there is more than one component, they are separated with space.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)issuer":{"name":"issuer","abstract":"

    Returns three-letter or two-letter code which indicate the issuing State. Three-letter codes are based","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    Returns holder’s date of birth

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentNumber":{"name":"documentNumber","abstract":"

    Returns document number. Document number contains up to 9 characters.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)nationality":{"name":"nationality","abstract":"

    Returns nationality of the holder represented by a three-letter or two-letter code. Three-letter","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)gender":{"name":"gender","abstract":"

    Returns gender of the card holder. Gender is specified by use of the single initial, capital letter F for female,","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentCode":{"name":"documentCode","abstract":"

    Returns document code. Document code contains two characters. For MRTD the first character shall","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    Returns date of expiry

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)opt1":{"name":"opt1","abstract":"

    Returns first optional data. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)opt2":{"name":"opt2","abstract":"

    Returns second optional data. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)alienNumber":{"name":"alienNumber","abstract":"

    Returns alien number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)applicationReceiptNumber":{"name":"applicationReceiptNumber","abstract":"

    Returns application receipt number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)immigrantCaseNumber":{"name":"immigrantCaseNumber","abstract":"

    Returns immigrant case number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)mrzText":{"name":"mrzText","abstract":"

    Returns the entire Machine Readable Zone text from ID. This text is usually used for parsing","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)isParsed":{"name":"isParsed","abstract":"

    Returns true if Machine Readable Zone has been parsed, false otherwise.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)isVerified":{"name":"isVerified","abstract":"

    Returns true if all check digits inside MRZ are correct, false otherwise.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedOpt1":{"name":"sanitizedOpt1","abstract":"

    Sanitized field opt1

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedOpt2":{"name":"sanitizedOpt2","abstract":"

    Sanitized field opt2

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedNationality":{"name":"sanitizedNationality","abstract":"

    Sanitized field nationality

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedIssuer":{"name":"sanitizedIssuer","abstract":"

    Sanitized field issuer

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedDocumentCode":{"name":"sanitizedDocumentCode","abstract":"

    Sanitized document code

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedDocumentNumber":{"name":"sanitizedDocumentNumber","abstract":"

    Sanitized document number

    ","parent_name":"MBMrzResult"},"Classes/MBMrtdSpecification.html#/c:objc(cs)MBMrtdSpecification(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdSpecification"},"Classes/MBMrtdSpecification.html#/c:objc(cs)MBMrtdSpecification(cm)createFromPreset:":{"name":"+createFromPreset:","abstract":"

    Factory method which creates MRTD specification based on a preset

    ","parent_name":"MBMrtdSpecification"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    Returns the Data extracted from the machine readable zone.

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(py)rawOcrLayout":{"name":"rawOcrLayout","abstract":"

    Raw OCR layout from which the MRTD data was parsed.

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)result":{"name":"result","abstract":"

    Detector recognizer results

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowUnparsedResults":{"name":"allowUnparsedResults","abstract":"

    Whether returning of unparsed results is allowed

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowUnverifiedResults":{"name":"allowUnverifiedResults","abstract":"

    Whether returning of unverified results is allowed","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowSpecialCharacters":{"name":"allowSpecialCharacters","abstract":"

    Whether special characters are allowed

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)mrtdSpecifications":{"name":"mrtdSpecifications","abstract":"

    Get the mrtd specifications.

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(im)setMrzFilter:":{"name":"-setMrzFilter:","abstract":"

    Filter for MRTDs (Machine Readable Travel Documents) that is used to determine which documents","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdCombinedRecognizerResult.html#/c:objc(cs)MBMrtdCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdCombinedRecognizerResult"},"Classes/MBMrtdCombinedRecognizerResult.html#/c:objc(cs)MBMrtdCombinedRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    Returns the Data extracted from the machine readable zone.

    ","parent_name":"MBMrtdCombinedRecognizerResult"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)result":{"name":"result","abstract":"

    Mrtd Combined recognizer result

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowUnparsedResults":{"name":"allowUnparsedResults","abstract":"

    Whether returning of unparsed results is allowed

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowUnverifiedResults":{"name":"allowUnverifiedResults","abstract":"

    Whether returning of unverified results is allowed","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowSpecialCharacters":{"name":"allowSpecialCharacters","abstract":"

    Whether special characters are allowed

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)detectorType":{"name":"detectorType","abstract":"

    Type of document this recognizer will scan.

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)sharedInstance":{"name":"+sharedInstance","abstract":"

    Undocumented

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(py)showLicenseKeyTimeLimitedWarning":{"name":"showLicenseKeyTimeLimitedWarning","abstract":"

    If YES, tooltip limited license key warning messages will appear on screen

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(py)resourcesBundle":{"name":"resourcesBundle","abstract":"

    Bundle in which the resources for the scanning process should be found. Usually, by default, this","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseBuffer:":{"name":"-setLicenseBuffer:","abstract":"

    Set license buffer and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseBuffer:andLicensee:":{"name":"-setLicenseBuffer:andLicensee:","abstract":"

    Set license buffer and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseKey:":{"name":"-setLicenseKey:","abstract":"

    Set license key and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseKey:andLicensee:":{"name":"-setLicenseKey:andLicensee:","abstract":"

    Set license key and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseResource:withExtension:inSubdirectory:forBundle:":{"name":"-setLicenseResource:withExtension:inSubdirectory:forBundle:","abstract":"

    Set the license file and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseResource:withExtension:inSubdirectory:forBundle:andLicensee:":{"name":"-setLicenseResource:withExtension:inSubdirectory:forBundle:andLicensee:","abstract":"

    Set the license file and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)buildVersionString":{"name":"+buildVersionString","abstract":"

    Returns the string that contains the library build version

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)isScanningUnsupportedForCameraType:error:":{"name":"+isScanningUnsupportedForCameraType:error:","abstract":"

    This method returns true when scanning is unsupported on a specific device.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(py)language":{"name":"language","abstract":"

    Undocumented

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(py)resourcesBundle":{"name":"resourcesBundle","abstract":"

    Bundle with resources used in framework

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(cm)instance":{"name":"+instance","abstract":"

    Obtain the shared instance

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)init":{"name":"-init","abstract":"

    Designated initializer

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)setDefaultLanguage":{"name":"-setDefaultLanguage","abstract":"

    Sets the language to default (i.e. language specified in the user’s device settings

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)pushStatusBarStyle:":{"name":"-pushStatusBarStyle:","abstract":"

    Pushes the UIApplication status bar style to a internally handled stack

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)popStatusBarStyle":{"name":"-popStatusBarStyle","abstract":"

    Returns the status bar style to the last saved value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)pushStatusBarHidden:":{"name":"-pushStatusBarHidden:","abstract":"

    Push the status bar hidden value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)popStatusBarHidden":{"name":"-popStatusBarHidden","abstract":"

    pops the status bar hidden value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)setHelpShown:":{"name":"-setHelpShown:","abstract":"

    Sets the key that the help was shown to true

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)isHelpShown":{"name":"-isHelpShown","abstract":"

    Returns true if the help was already shown

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(cm)getDefaultResourcesBundle":{"name":"+getDefaultResourcesBundle","abstract":"

    Returns the default resources bundle. If it doesn’t exist, it will be nil.

    ","parent_name":"MBMicroblinkApp"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(py)rawImage":{"name":"rawImage","abstract":"

    Returns the raw image saved by the processor. If no image was saved by processor, returns null.","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(py)encodedImage":{"name":"encodedImage","abstract":"

    JPEG-encoded image or nil, depending on whether image encoding was enabled.

    ","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBImageReturnProcessor"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(py)result":{"name":"result","abstract":"

    MBImageReturnProcessor processor result

    ","parent_name":"MBImageReturnProcessor"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(py)encodeImage":{"name":"encodeImage","abstract":"

    Defines whether saved image will also be encoded as JPEG. This is false by default, which","parent_name":"MBImageReturnProcessor"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)image":{"name":"image","abstract":"

    UIImage of wrapped image.","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)roi":{"name":"roi","abstract":"

    Region of the image used for scanning, where the whole image is specified with CGRectMake(0.0, 0.0, 1.0, 1.0).

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)orientation":{"name":"orientation","abstract":"

    Processing orientation of image. This is used in OCR where you can specify character orientation.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)mirroredHorizontally":{"name":"mirroredHorizontally","abstract":"

    Tells whether camera input images should be mirrored horizontally before processing

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)mirroredVertically":{"name":"mirroredVertically","abstract":"

    Tells whether camera input images should be mirrored vertically before processing

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)estimateFrameQuality":{"name":"estimateFrameQuality","abstract":"

    If YES, the image will prior to processing go through frame quality estimation phase, which might discard the frame

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)cameraFrame":{"name":"cameraFrame","abstract":"

    Property which tells if this frame is a camera or a single photo frame.","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithUIImage:":{"name":"+imageWithUIImage:","abstract":"

    Creates PPImage around UIImage.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithCmSampleBuffer:":{"name":"+imageWithCmSampleBuffer:","abstract":"

    Creates MBImage around CVImageBufferRef.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithCvPixelBuffer:":{"name":"+imageWithCvPixelBuffer:","abstract":"

    Creates MBImage around CVPixelBufferRef.

    ","parent_name":"MBImage"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(py)label":{"name":"label","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)glareDetectionFinishedWithResult:":{"name":"-glareDetectionFinishedWithResult:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(im)initWithFrameGrabberDelegate:":{"name":"-initWithFrameGrabberDelegate:","abstract":"

    Undocumented

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(py)grabFocusedFrames":{"name":"grabFocusedFrames","abstract":"

    Allow sending focused camera frames to MBFrameGrabberRecognizerDelegate.

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(py)grabUnfocusedFrames":{"name":"grabUnfocusedFrames","abstract":"

    Allow sending unfocused camera frames to MBFrameGrabberRecognizerDelegate.

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default dewarp height value used when using default constructor.

    ","parent_name":"MBFixedDewarpPolicy"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(im)initWithDewarpHeight:":{"name":"-initWithDewarpHeight:","parent_name":"MBFixedDewarpPolicy"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(py)dewarpHeight":{"name":"dewarpHeight","abstract":"

    Returns the desired dewarp height (in pixels) as specified by this policy.

    ","parent_name":"MBFixedDewarpPolicy"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsLayer":{"name":"dotsLayer","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsColor":{"name":"dotsColor","abstract":"

    Color of the dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsStrokeWidth":{"name":"dotsStrokeWidth","abstract":"

    Width of the dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsRadius":{"name":"dotsRadius","abstract":"

    Radius of dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)animationDuration":{"name":"animationDuration","abstract":"

    Duration of the animation

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Initializes the layer

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)foregroundColor":{"name":"foregroundColor","abstract":"

    Foreground color of dots.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)tintColor":{"name":"tintColor","abstract":"

    Border and shadow color of dots.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)shouldIgnoreFastResults":{"name":"shouldIgnoreFastResults","abstract":"

    If set YES, dots will not redraw until the animation is finished. This will make animation look much smoother on fast results.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)charFadeInDuration":{"name":"charFadeInDuration","abstract":"

    Duration of fade animation for each dot.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)dotCount":{"name":"dotCount","abstract":"

    Maximum number of dots shown on screen. This count has to be in range [20,50].

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)helpLabel":{"name":"helpLabel","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)helpImageView":{"name":"helpImageView","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(im)animateHelp":{"name":"-animateHelp","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)documentVerificationSubviewDelegate":{"name":"documentVerificationSubviewDelegate","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideInstructions":{"name":"firstSideInstructions","abstract":"

    Returns/sets user instructions that are shown above camera preview while the first side of the","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideInstructions":{"name":"secondSideInstructions","abstract":"

    Returns/sets user instructions that are shown above camera preview while the second side of the","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideSplashMessage":{"name":"firstSideSplashMessage","abstract":"

    Returns/sets splash message that is shown before scanning the first side of the document,","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideSplashMessage":{"name":"secondSideSplashMessage","abstract":"

    Returns/sets splash message that is shown before scanning the second side of the document,","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)scanningDoneSplashMessage":{"name":"scanningDoneSplashMessage","abstract":"

    Returns/sets splash message that is shown after scanning the document.

    ","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)glareMessage":{"name":"glareMessage","abstract":"

    Returns/sets glare status message that is shown if glare detection is turned on","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideSplashImage":{"name":"firstSideSplashImage","abstract":"

    Returns/sets splash image which is shown below splash message, before scanning the first side of","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideSplashImage":{"name":"secondSideSplashImage","abstract":"

    Returns/sets splash image which is shown below splash message, before scanning the second side of","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideInstructionsImage":{"name":"firstSideInstructionsImage","abstract":"

    Returns image that is shown above camera preview, next to the user instructions message, while","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideInstructionsImage":{"name":"secondSideInstructionsImage","abstract":"

    Returns image that is shown above camera preview, next to the user instructions message, while","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)captureHighResImage":{"name":"captureHighResImage","abstract":"

    Gets/sets capturing of high resolution image

    ","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationInstructionsSubview.html#/c:objc(cs)MBDocumentVerificationInstructionsSubview(py)instructionsLabel":{"name":"instructionsLabel","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationInstructionsSubview"},"Classes/MBDocumentVerificationInstructionsSubview.html#/c:objc(cs)MBDocumentVerificationInstructionsSubview(py)instructionsImageView":{"name":"instructionsImageView","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationInstructionsSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)viewfinderView":{"name":"viewfinderView","abstract":"

    Default implementation draws a rectangle with aspect ratio of viewfinderAspectRatio,","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)viewfinderWidthToHeightRatio":{"name":"viewfinderWidthToHeightRatio","abstract":"

    Default aspect ratio of the viewfinder, calculated as width / height.

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)tooltipLabel":{"name":"tooltipLabel","abstract":"

    Label displayed below the viewfinder view.

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Initialize the overlay subview with a given frame

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Initialize the overlay subview with a given coder

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)tooltipText":{"name":"tooltipText","abstract":"

    Gets/sets tootlip text that is defines under document view finder.

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)glareStatusMessage":{"name":"glareStatusMessage","abstract":"

    Returns/sets glare status message that is shown if glare detection is turned on","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)showTooltip":{"name":"showTooltip","abstract":"

    Gets/sets tooltip visibility

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)captureHighResImage":{"name":"captureHighResImage","abstract":"

    Gets/sets capturing of high resolution image

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(py)documentLocation":{"name":"documentLocation","abstract":"

    Quadrangle represeting corner points of the document within the input image.

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(py)faceLocation":{"name":"faceLocation","abstract":"

    Quadrangle represeting corner points of the face image within the input image.

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning Document Face Recognizer

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)detectorType":{"name":"detectorType","abstract":"

    Type of docment this recognizer will scan.

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDisplayableQuadDetection.html#/c:objc(cs)MBDisplayableQuadDetection(py)detectionLocation":{"name":"detectionLocation","abstract":"

    Exact location of detected object on image.","parent_name":"MBDisplayableQuadDetection"},"Classes/MBDisplayablePointsDetection.html#/c:objc(cs)MBDisplayablePointsDetection(py)points":{"name":"points","abstract":"

    Coordinates of points (CGPoint) of a detected object.

    ","parent_name":"MBDisplayablePointsDetection"},"Classes/MBDisplayableObject.html#/c:objc(cs)MBDisplayableObject(py)transform":{"name":"transform","abstract":"

    Tranformation matrix which transforms the coordinate system in which the OCR layout is given","parent_name":"MBDisplayableObject"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(im)initWithDetectionStatus:":{"name":"-initWithDetectionStatus:","abstract":"

    Initializes the displayable detection with matrix

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(py)detectionStatus":{"name":"detectionStatus","abstract":"

    Detection status which describes the status of detection

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDewarpPolicy.html#/c:objc(cs)MBDewarpPolicy(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDewarpPolicy"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(im)initWithDay:month:year:originalDateString:":{"name":"-initWithDay:month:year:originalDateString:","abstract":"

    Designated initializer

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)originalDateString":{"name":"originalDateString","abstract":"

    The original string used to create the date result

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)date":{"name":"date","abstract":"

    NSDate object which represents the same date as this result

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)day":{"name":"day","abstract":"

    Day in month.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)month":{"name":"month","abstract":"

    Month in year.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)year":{"name":"year","abstract":"

    Year of the current date.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(cm)dateResultWithDay:month:year:originalDateString:":{"name":"+dateResultWithDay:month:year:originalDateString:","abstract":"

    Factory method

    ","parent_name":"MBDateResult"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default DPI that will be used with default constructor.

    ","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(im)initWithDesiredDPI:":{"name":"-initWithDesiredDPI:","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(py)desiredDPI":{"name":"desiredDPI","abstract":"

    Returns the desired DPI as defined by this policy.

    ","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)recognizerCollection":{"name":"recognizerCollection","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)cameraSettings":{"name":"cameraSettings","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)metadataDelegates":{"name":"metadataDelegates","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)scanningRecognizerRunnerViewControllerDelegate":{"name":"scanningRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)recognizerRunnerViewControllerDelegate":{"name":"recognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)init":{"name":"-init","abstract":"

    Convenience initializer used for use cases when overlay view controller is instantiated from storyboard.","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)initWithRecognizerCollection:cameraSettings:":{"name":"-initWithRecognizerCollection:cameraSettings:","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)scanningRegion":{"name":"scanningRegion","abstract":"

    Scanning region","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)autorotateOverlay":{"name":"autorotateOverlay","abstract":"

    If YES, Overlay View Controller will be autorotated independently of ScanningViewController.

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)showStatusBar":{"name":"showStatusBar","abstract":"

    If YES, default camera overlay will display Status bar.","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    Default: UIInterfaceOrientationMaskPortrait

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan.

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraPreset":{"name":"cameraPreset","abstract":"

    Camera preset. With this property you can set the resolution of the camera

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraType":{"name":"cameraType","abstract":"

    Camera type. You can choose between front and back facing.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)autofocusInterval":{"name":"autofocusInterval","abstract":"

    Interval between forcing two camera focuses. If <= 0, forced focuses arent performed","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraAutofocusRestriction":{"name":"cameraAutofocusRestriction","abstract":"

    Range restriction for camera autofocus.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)videoGravity":{"name":"videoGravity","abstract":"

    Gravity of Camera preview on screen.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)focusPoint":{"name":"focusPoint","abstract":"

    Point against which the autofocus will be performed

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraMirroredHorizontally":{"name":"cameraMirroredHorizontally","abstract":"

    Tells whether camera input images should be mirrored horizontally before processing

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraMirroredVertically":{"name":"cameraMirroredVertically","abstract":"

    Tells whether camera input images should be mirrored vertically before processing

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)init":{"name":"-init","abstract":"

    Designated initializer. Initializes the object with default settings (see above for defaults)

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)calcSessionPreset":{"name":"-calcSessionPreset","abstract":"

    Returns an optimal AVFoundation session preset based on cameraPreset value.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)calcAutofocusRangeRestriction":{"name":"-calcAutofocusRangeRestriction","abstract":"

    Returns an optimal AVFoundation autofocus range restriction value based on cameraAutofocusRestriction.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isAnimating":{"name":"isAnimating","abstract":"

    Whether the reticle is currently animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isDetecting":{"name":"isDetecting","abstract":"

    Whether the reticle is currently detecting.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isConfirming":{"name":"isConfirming","abstract":"

    Whether the reticle is currently confirming.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startAnimating":{"name":"-startAnimating","abstract":"

    Starts animating the reticle. Does nothing if the reticle is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopAnimating":{"name":"-stopAnimating","abstract":"

    Stops animating the reticle. Does nothing if the reticle is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startDetecting":{"name":"-startDetecting","abstract":"

    Starts animating the detection spinner. Does nothing if the detection is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopDetecting":{"name":"-stopDetecting","abstract":"

    Stops animating the detection spinner. Does nothing if the detection is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startConfirming":{"name":"-startConfirming","abstract":"

    Starts animating the confirmation expanding ring. Does nothing if the detection is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopConfirming":{"name":"-stopConfirming","abstract":"

    Stops animating the confirmation expanding ring. Does nothing if the detection is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)resetAll":{"name":"-resetAll","abstract":"

    Stops all animations and remove all layers to reset state to beginning

    ","parent_name":"MBCameraReticle"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)address":{"name":"address","abstract":"

    The address of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)sex":{"name":"sex","abstract":"

    The sex of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)additionalNameInformation":{"name":"additionalNameInformation","abstract":"

    The additional name information of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)additionalAddressInformation":{"name":"additionalAddressInformation","abstract":"

    The additional address information of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)placeOfBirth":{"name":"placeOfBirth","abstract":"

    The place of birth of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)nationality":{"name":"nationality","abstract":"

    The nationality of the documet owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)race":{"name":"race","abstract":"

    The race of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)religion":{"name":"religion","abstract":"

    The religion of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)profession":{"name":"profession","abstract":"

    The profession of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)maritalStatus":{"name":"maritalStatus","abstract":"

    The marital status of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)residentialStatus":{"name":"residentialStatus","abstract":"

    The residential stauts of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)employer":{"name":"employer","abstract":"

    The employer of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)personalIdNumber":{"name":"personalIdNumber","abstract":"

    The personal identification number.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)documentAdditionalNumber":{"name":"documentAdditionalNumber","abstract":"

    The additional number of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)issuingAuthority":{"name":"issuingAuthority","abstract":"

    The issuing authority of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)driverLicenseDetailedInfo":{"name":"driverLicenseDetailedInfo","abstract":"

    The driver license detailed info.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)conditions":{"name":"conditions","abstract":"

    The driver license conditions.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning BlinkIDRecognizer

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(im)setDewarpedImageDelegate:":{"name":"-setDewarpedImageDelegate:","abstract":"

    Called with dewarped full document image

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(im)setClassifierDelegate:":{"name":"-setClassifierDelegate:","abstract":"

    Called when document is not supported

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)allowBlurFilter":{"name":"allowBlurFilter","abstract":"

    Defines whether blured frames filtering is allowed

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common BlinkId UI settings

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)requireDocumentSidesDataMatch":{"name":"requireDocumentSidesDataMatch","abstract":"

    If YES, MBBlinkIdCombinedRecognizer will check if sides do match when scanning is finished

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)showNotSupportedDialog":{"name":"showNotSupportedDialog","abstract":"

    Defines whether Document Not Supported dialog will be displayed in UI.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)backSideScanningTimeout":{"name":"backSideScanningTimeout","abstract":"

    Option to configure back side scanning timeout.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(im)init":{"name":"-init","abstract":"

    Designated initializer. Initializes the object with default settings.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)address":{"name":"address","abstract":"

    The address of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)sex":{"name":"sex","abstract":"

    The sex of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)additionalNameInformation":{"name":"additionalNameInformation","abstract":"

    The additional name information of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)additionalAddressInformation":{"name":"additionalAddressInformation","abstract":"

    The additional address information of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)placeOfBirth":{"name":"placeOfBirth","abstract":"

    The place of birth of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)nationality":{"name":"nationality","abstract":"

    The nationality of the documet owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)race":{"name":"race","abstract":"

    The race of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)religion":{"name":"religion","abstract":"

    The religion of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)profession":{"name":"profession","abstract":"

    The profession of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)maritalStatus":{"name":"maritalStatus","abstract":"

    The marital status of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)residentialStatus":{"name":"residentialStatus","abstract":"

    The residential stauts of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)employer":{"name":"employer","abstract":"

    The employer of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)personalIdNumber":{"name":"personalIdNumber","abstract":"

    The personal identification number.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)documentAdditionalNumber":{"name":"documentAdditionalNumber","abstract":"

    The additional number of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)issuingAuthority":{"name":"issuingAuthority","abstract":"

    The issuing authority of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)driverLicenseDetailedInfo":{"name":"driverLicenseDetailedInfo","abstract":"

    The driver license detailed info.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)conditions":{"name":"conditions","abstract":"

    The driver license conditions.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning BlinkIDCombinedRecognizer

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(im)setDewarpedImageDelegate:":{"name":"-setDewarpedImageDelegate:","abstract":"

    Called with dewarped full document image

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(im)setClassifierDelegate:":{"name":"-setClassifierDelegate:","abstract":"

    Called when document is not supported

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)allowBlurFilter":{"name":"allowBlurFilter","abstract":"

    Defines whether blured frames filtering is allowed

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBaseOverlayViewController.html#/c:objc(cs)MBBaseOverlayViewController(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan.

    ","parent_name":"MBBaseOverlayViewController"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)autorotateOverlay":{"name":"autorotateOverlay","abstract":"

    If YES, Overlay View Controller will be autorotated independently of ScanningViewController.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)showStatusBar":{"name":"showStatusBar","abstract":"

    If YES, default camera overlay will display Status bar.","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    Default: UIInterfaceOrientationMaskPortrait

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)soundFilePath":{"name":"soundFilePath","abstract":"

    Full path to the sound file which is played when the valid result is scanned.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)displayCancelButton":{"name":"displayCancelButton","abstract":"

    Default: YES.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)displayTorchButton":{"name":"displayTorchButton","abstract":"

    Default: YES.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOcrOverlaySettings.html#/c:objc(cs)MBBaseOcrOverlaySettings(py)showOcrDots":{"name":"showOcrDots","abstract":"

    Property that enables showing of flashing dots over characters being scanned.

    ","parent_name":"MBBaseOcrOverlaySettings"},"Classes/MBBaseOcrOverlaySettings.html":{"name":"MBBaseOcrOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlaySettings.html":{"name":"MBBaseOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlayViewController.html":{"name":"MBBaseOverlayViewController","abstract":"

    Common base class for default overlay view controllers

    "},"Classes/MBBlinkIdCombinedRecognizer.html":{"name":"MBBlinkIdCombinedRecognizer","abstract":"

    Recognizer which can scan front and back side of the United States driver license.

    "},"Classes/MBBlinkIdCombinedRecognizerResult.html":{"name":"MBBlinkIdCombinedRecognizerResult","abstract":"

    Recognizer which can scan front and back side of the United States driver license.

    "},"Classes/MBBlinkIdOverlaySettings.html":{"name":"MBBlinkIdOverlaySettings","abstract":"

    Settings class containing parameters for BlinkId UI

    "},"Classes/MBBlinkIdOverlayViewController.html":{"name":"MBBlinkIdOverlayViewController","abstract":"

    Default version of overlay view controller with modern design.

    "},"Classes/MBBlinkIdRecognizer.html":{"name":"MBBlinkIdRecognizer","abstract":"

    The Blink ID Recognizer is used for scanning Blink ID.

    "},"Classes/MBBlinkIdRecognizerResult.html":{"name":"MBBlinkIdRecognizerResult","abstract":"

    The Blink ID Recognizer is used for scanning Blink ID.

    "},"Classes/MBCameraReticle.html":{"name":"MBCameraReticle","abstract":"

    A camera reticle that locates at the center of screen and uses circle arc rotation to indicate that"},"Classes/MBCameraSettings.html":{"name":"MBCameraSettings","abstract":"

    Settings class containing parameters for camera capture

    "},"Classes/MBCustomOverlayViewController.html":{"name":"MBCustomOverlayViewController","abstract":"

    Custom Overlay View Controller is an abstract class for all custom overlay views placed on top View Controller."},"Classes/MBDPIBasedDewarpPolicy.html":{"name":"MBDPIBasedDewarpPolicy","abstract":"

    DPI based dewarp policy. Dewarp height will be calculated based on"},"Classes/MBDateResult.html":{"name":"MBDateResult","abstract":"

    This class represents a Date result scanned from the image. It supports obtaining raw NSDates, or raw strings"},"Classes/MBDewarpPolicy.html":{"name":"MBDewarpPolicy","abstract":"

    Base class for all dewarp policies

    "},"Classes/MBDisplayableDetection.html":{"name":"MBDisplayableDetection","abstract":"

    Represents a detection that can be displayed on screen.

    "},"Classes/MBDisplayableObject.html":{"name":"MBDisplayableObject","abstract":"

    Represents any object that can be displayed on screen in terms of drawing.

    "},"Classes/MBDisplayablePointsDetection.html":{"name":"MBDisplayablePointsDetection","abstract":"

    Result of the detection of a point detector. Point Detectors are used for QR and similar barcodes

    "},"Classes/MBDisplayableQuadDetection.html":{"name":"MBDisplayableQuadDetection","abstract":"

    Represents a detection that can be displayed on screen.

    "},"Classes/MBDocumentFaceRecognizer.html":{"name":"MBDocumentFaceRecognizer","abstract":"

    Class for configuring Document Face Recognizer Recognizer.

    "},"Classes/MBDocumentFaceRecognizerResult.html":{"name":"MBDocumentFaceRecognizerResult","abstract":"

    Class representing values obtained when scanning Document Face Recognizer

    "},"Classes/MBDocumentOverlaySettings.html":{"name":"MBDocumentOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentOverlayViewController.html":{"name":"MBDocumentOverlayViewController","abstract":"

    Default overlay when using ID card recognizers.

    "},"Classes/MBDocumentSubview.html":{"name":"MBDocumentSubview","abstract":"

    Overlay subview presenting the viewfinder for scanning ID documents

    "},"Classes/MBDocumentVerificationInstructionsSubview.html":{"name":"MBDocumentVerificationInstructionsSubview","abstract":"

    Undocumented

    "},"Classes/MBDocumentVerificationOverlaySettings.html":{"name":"MBDocumentVerificationOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentVerificationOverlayViewController.html":{"name":"MBDocumentVerificationOverlayViewController","abstract":"

    Default overlay when using ID card combined recognizers for verification.

    "},"Classes/MBDocumentVerificationSubview.html":{"name":"MBDocumentVerificationSubview","abstract":"

    Undocumented

    "},"Classes/MBDotsResultSubview.html":{"name":"MBDotsResultSubview","abstract":"

    Overlay subview presenting status of OCR detection. Dots are displayed over locations of detected characters.

    "},"Classes/MBDotsSubview.html":{"name":"MBDotsSubview","abstract":"

    A wrapper around CAShapeLayer which is used for presenting a status about barcode detections

    "},"Classes/MBDriverLicenseDetailedInfo.html":{"name":"MBDriverLicenseDetailedInfo","abstract":"

    Undocumented

    "},"Classes.html#/c:objc(cs)MBEntity":{"name":"MBEntity","abstract":"

    Base class for all entities processors, recognizers, detectors…

    "},"Classes.html#/c:objc(cs)MBErrorReticle":{"name":"MBErrorReticle","abstract":"

    A camera reticle detection that locates at the center of screen and uses circular rotation to indicate that"},"Classes/MBFixedDewarpPolicy.html":{"name":"MBFixedDewarpPolicy","abstract":"

    Fixed dewarp policy. Dewarp height will be exactly as defined by its dewarpHeight.

    "},"Classes/MBFrameGrabberRecognizer.html":{"name":"MBFrameGrabberRecognizer","abstract":"

    A recognizer that can returns success frame.

    "},"Classes/MBGlareStatusSubview.html":{"name":"MBGlareStatusSubview","abstract":"

    Overlay subview presenting the status of glare detection."},"Classes/MBImage.html":{"name":"MBImage","abstract":"

    Object which represents an image.

    "},"Classes/MBImageReturnProcessor.html":{"name":"MBImageReturnProcessor","abstract":"

    Processor that will simply save given image.

    "},"Classes/MBImageReturnProcessorResult.html":{"name":"MBImageReturnProcessorResult","abstract":"

    Processor that will simply save given image.

    "},"Classes/MBMicroblinkApp.html":{"name":"MBMicroblinkApp","abstract":"

    Undocumented

    "},"Classes/MBMicroblinkSDK.html":{"name":"MBMicroblinkSDK","abstract":"

    Entry class for all Microblink SDKs - used for setting up license key and to add support for"},"Classes/MBMrtdCombinedRecognizer.html":{"name":"MBMrtdCombinedRecognizer","abstract":"

    MRTD Combined recognizer

    "},"Classes/MBMrtdCombinedRecognizerResult.html":{"name":"MBMrtdCombinedRecognizerResult","abstract":"

    Class representing values obtained when scanning both front and back side of Croatian ID.

    "},"Classes/MBMrtdRecognizer.html":{"name":"MBMrtdRecognizer","abstract":"

    Recognizer that can recognizer Machine Readable Zone (MRZ) of the Machine Readable Travel Document (MRTD)

    "},"Classes/MBMrtdRecognizerResult.html":{"name":"MBMrtdRecognizerResult","abstract":"

    Result of MBMrtdDetectorRecognizer

    "},"Classes/MBMrtdSpecification.html":{"name":"MBMrtdSpecification","abstract":"

    Mrtd class describes a document which is being detected by MrtdDetector."},"Classes/MBMrzResult.html":{"name":"MBMrzResult","abstract":"

    Undocumented

    "},"Classes/MBNoUpScalingDewarpPolicy.html":{"name":"MBNoUpScalingDewarpPolicy","abstract":"

    No upscaling dewarp policy. Dewarp height will be calculated in a way"},"Classes/MBOcrLayout.html":{"name":"MBOcrLayout","abstract":"

    Class describing the layour of the document on which the OCR was preformed.

    "},"Classes/MBOcrBlock.html":{"name":"MBOcrBlock","abstract":"

    Class representing an Ocr Block. Block consists of one or more Ocr Lines.

    "},"Classes/MBOcrLine.html":{"name":"MBOcrLine","abstract":"

    Class representing an Ocr line. line consists of one or more Ocr chars

    "},"Classes/MBCharWithVariants.html":{"name":"MBCharWithVariants","abstract":"

    Undocumented

    "},"Classes/MBOcrChar.html":{"name":"MBOcrChar","abstract":"

    Class representing an individual OCR character obtained in the OCR process.

    "},"Classes/MBPosition.html":{"name":"MBPosition","abstract":"

    Class representing a position on the image. It’s given as a box, with"},"Classes/MBOverlaySettings.html":{"name":"MBOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBOverlayViewController.html":{"name":"MBOverlayViewController","abstract":"

    Overlay View Controller is an abstract class for all overlay views placed on top View Controller.

    "},"Classes/MBParserGroupProcessor.html":{"name":"MBParserGroupProcessor","abstract":"

    A processor for a group

    "},"Classes/MBParserGroupProcessorResult.html":{"name":"MBParserGroupProcessorResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBPassportRecognizer.html":{"name":"MBPassportRecognizer","abstract":"

    Recognizer which can scan all passports with MRZ.

    "},"Classes/MBPassportRecognizerResult.html":{"name":"MBPassportRecognizerResult","abstract":"

    Recognizer which can scan all passports with MRZ.

    "},"Classes/MBProcessor.html":{"name":"MBProcessor","abstract":"

    Base class for all processors

    "},"Classes/MBProcessorGroup.html":{"name":"MBProcessorGroup","abstract":"

    Class that represents a group of processors that will be executed on same dewarped image.

    "},"Classes/MBProcessorResult.html":{"name":"MBProcessorResult","abstract":"

    Base class for all processor results

    "},"Classes/MBQuadrangle.html":{"name":"MBQuadrangle","abstract":"

    Class represents the quadrangle (arbitrary geometric object with 4 different corner points

    "},"Classes/MBRecognizer.html":{"name":"MBRecognizer","abstract":"

    Base class for all recognizers

    "},"Classes/MBRecognizerCollection.html":{"name":"MBRecognizerCollection","abstract":"

    Settings class containing settings related to scanner behaviour

    "},"Classes/MBRecognizerResult.html":{"name":"MBRecognizerResult","abstract":"

    Base class for all recognizer results

    "},"Classes/MBRecognizerRunner.html":{"name":"MBRecognizerRunner","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBRecognizerRunnerMetadataDelegates.html":{"name":"MBRecognizerRunnerMetadataDelegates","abstract":"

    Class containing all metadata delegates

    "},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html":{"name":"MBRecognizerRunnerViewControllerMetadataDelegates","abstract":"

    Class containing all metadata delegates

    "},"Classes/MBSubview.html":{"name":"MBSubview","abstract":"

    Base class for all overlay subviews

    "},"Classes/MBSuccessFrameGrabberRecognizer.html":{"name":"MBSuccessFrameGrabberRecognizer","abstract":"

    A recognizer that can returns success frame.

    "},"Classes/MBSuccessFrameGrabberRecognizerResult.html":{"name":"MBSuccessFrameGrabberRecognizerResult","abstract":"

    A recognizer that returns SuccessFrameGrabber result.

    "},"Classes/MBTapToFocusSubview.html":{"name":"MBTapToFocusSubview","abstract":"

    Overlay subview presenting the effect which happens when the user taps to focus

    "},"Classes/MBTemplatingClass.html":{"name":"MBTemplatingClass","abstract":"

    Class that represents a specific class of documents when used within Templating API.

    "},"Classes/MBTemplatingRecognizer.html":{"name":"MBTemplatingRecognizer","abstract":"

    Base of all recognizers that support Templating API.

    "},"Classes/MBTemplatingRecognizerResult.html":{"name":"MBTemplatingRecognizerResult","abstract":"

    Base of all recognizers result that support Templating API.

    "},"Classes/MBUsdlCombinedRecognizer.html":{"name":"MBUsdlCombinedRecognizer","abstract":"

    USDL Combined Recognizer.

    "},"Classes/MBUsdlCombinedRecognizerResult.html":{"name":"MBUsdlCombinedRecognizerResult","abstract":"

    Class representing values obtained when scanning both front and back side of US Driver’s License.

    "},"Classes/MBUsdlRecognizer.html":{"name":"MBUsdlRecognizer","abstract":"

    A recognizer that can scan USDL.

    "},"Classes/MBUsdlRecognizerResult.html":{"name":"MBUsdlRecognizerResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBViewControllerFactory.html":{"name":"MBViewControllerFactory","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBVisaRecognizer.html":{"name":"MBVisaRecognizer","abstract":"

    Recognizer which can scan all visas with MRZ.

    "},"Classes/MBVisaRecognizerResult.html":{"name":"MBVisaRecognizerResult","abstract":"

    Recognizer which can scan all visas with MRZ.

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Constants.html":{"name":"Constants","abstract":"

    The following constants are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "},"Type Definitions.html":{"name":"Type Definitions","abstract":"

    The following type definitions are available globally.

    "},"Functions.html":{"name":"Functions","abstract":"

    The following functions are available globally.

    "},"Structs.html":{"name":"Structures","abstract":"

    The following structures are available globally.

    "}} \ No newline at end of file +{"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@top":{"name":"top","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@right":{"name":"right","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@bottom":{"name":"bottom","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@left":{"name":"left","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Structs/_MBImageExtensionFactors.html":{"name":"_MBImageExtensionFactors","abstract":"

    Struct which describes image extension factors. Each factors denotes by what percentage is image extended."},"Functions.html#/c:@F@CGDeltaMake":{"name":"CGDeltaMake","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointWithDelta":{"name":"CGPointWithDelta","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointDistance":{"name":"CGPointDistance","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointAlongLine":{"name":"CGPointAlongLine","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGPointRotatedAroundPoint":{"name":"CGPointRotatedAroundPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineMake":{"name":"CGLineMake","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineEqualToLine":{"name":"CGLineEqualToLine","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineMidPoint":{"name":"CGLineMidPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineDirection":{"name":"CGLineDirection","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesAngle":{"name":"CGLinesAngle","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesIntersectAtPoint":{"name":"CGLinesIntersectAtPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineLength":{"name":"CGLineLength","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineScale":{"name":"CGLineScale","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineTranslate":{"name":"CGLineTranslate","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineScaleOnMidPoint":{"name":"CGLineScaleOnMidPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineDelta":{"name":"CGLineDelta","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLinesAreParallel":{"name":"CGLinesAreParallel","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectTopLeftPoint":{"name":"CGRectTopLeftPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectTopRightPoint":{"name":"CGRectTopRightPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectBottomLeftPoint":{"name":"CGRectBottomLeftPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectBottomRightPoint":{"name":"CGRectBottomRightPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectResize":{"name":"CGRectResize","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectInsetEdge":{"name":"CGRectInsetEdge","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectStackedWithinRectFromEdge":{"name":"CGRectStackedWithinRectFromEdge","abstract":"

    Calculates the stacking of rectangles within a larger rectangle."},"Functions.html#/c:@F@CGRectCenterPoint":{"name":"CGRectCenterPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGRectClosestTwoCornerPoints":{"name":"CGRectClosestTwoCornerPoints","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGLineIntersectsRectAtPoint":{"name":"CGLineIntersectsRectAtPoint","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@CGControlPointsForArcBetweenPointsWithRadius":{"name":"CGControlPointsForArcBetweenPointsWithRadius","abstract":"

    Undocumented

    "},"Functions.html#/c:@F@scanningRegionForFrameInBounds":{"name":"scanningRegionForFrameInBounds","abstract":"

    Undocumented

    "},"Functions.html#/c:MBImageExtensionFactors.h@F@MBMakeImageExtensionFactors":{"name":"MBMakeImageExtensionFactors","abstract":"

    Method which creates a image extension factors structure

    "},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@top":{"name":"top","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@right":{"name":"right","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@bottom":{"name":"bottom","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html#/c:@S@_MBImageExtensionFactors@FI@left":{"name":"left","abstract":"

    Undocumented

    ","parent_name":"_MBImageExtensionFactors"},"Type Definitions/MBImageExtensionFactors/_MBImageExtensionFactors.html":{"name":"_MBImageExtensionFactors","abstract":"

    Struct which describes image extension factors. Each factors denotes by what percentage is image extended.","parent_name":"MBImageExtensionFactors"},"Type Definitions/CGLine/.html#/c:@SA@CGLine@FI@point1":{"name":"point1","abstract":"

    Undocumented

    "},"Type Definitions/CGLine/.html#/c:@SA@CGLine@FI@point2":{"name":"point2","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBException.h@T@MBExceptionName":{"name":"MBExceptionName","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBGeometry.h@T@CGDelta":{"name":"CGDelta","abstract":"

    Undocumented

    "},"Type Definitions/CGLine.html":{"name":"CGLine","abstract":"

    Undocumented

    "},"Type Definitions/MBImageExtensionFactors.html":{"name":"MBImageExtensionFactors","abstract":"

    Undocumented

    "},"Type Definitions.html#/c:MBRecognizerRunnerViewController.h@T@MBCaptureHighResImage":{"name":"MBCaptureHighResImage","abstract":"

    Block for returning high resolution MBImage photo with capture or still output

    "},"Protocols/MBTemplatingClassifier.html#/c:objc(pl)MBTemplatingClassifier(im)classify":{"name":"-classify","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingClassifier"},"Protocols/MBSubviewDelegate.html#/c:objc(pl)MBSubviewDelegate(im)subviewAnimationDidStart:":{"name":"-subviewAnimationDidStart:","abstract":"

    Delegate method called when animation starts

    ","parent_name":"MBSubviewDelegate"},"Protocols/MBSubviewDelegate.html#/c:objc(pl)MBSubviewDelegate(im)subviewAnimationDidFinish:":{"name":"-subviewAnimationDidFinish:","abstract":"

    Delegate method called when animation finishes

    ","parent_name":"MBSubviewDelegate"},"Protocols/MBStringProcessingRecognizerRunnerDelegate.html#/c:objc(pl)MBStringProcessingRecognizerRunnerDelegate(im)recognizerRunner:didFinishProcessingString:":{"name":"-recognizerRunner:didFinishProcessingString:","abstract":"

    Called when MBRecognizerRunner finishes processing given string.","parent_name":"MBStringProcessingRecognizerRunnerDelegate"},"Protocols/MBSignatureImageResult.html#/c:objc(pl)MBSignatureImageResult(py)signatureImage":{"name":"signatureImage","abstract":"

    image of the signature if enabled with MBSignatureImage returnSignatureImage property.

    ","parent_name":"MBSignatureImageResult"},"Protocols/MBSignatureImageDpi.html#/c:objc(pl)MBSignatureImageDpi(py)signatureImageDpi":{"name":"signatureImageDpi","abstract":"

    Property for setting DPI for signature images","parent_name":"MBSignatureImageDpi"},"Protocols/MBSignatureImage.html#/c:objc(pl)MBSignatureImage(py)returnSignatureImage":{"name":"returnSignatureImage","abstract":"

    Sets whether signature image from ID card should be extracted.

    ","parent_name":"MBSignatureImage"},"Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBScanningRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishScanningWithState:":{"name":"-recognizerRunnerViewController:didFinishScanningWithState:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBScanningRecognizerRunnerViewControllerDelegate"},"Protocols/MBScanningRecognizerRunnerDelegate.html#/c:objc(pl)MBScanningRecognizerRunnerDelegate(im)recognizerRunner:didFinishScanningWithState:":{"name":"-recognizerRunner:didFinishScanningWithState:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBScanningRecognizerRunnerDelegate"},"Protocols/MBResultSubview.html#/c:objc(pl)MBResultSubview(im)scanningFinishedWithState:":{"name":"-scanningFinishedWithState:","abstract":"

    This method should be called when MBRecognizerResultState is obtained and reslt state need to be drawn/redrawn.

    ","parent_name":"MBResultSubview"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerUnauthorizedCamera:":{"name":"-recognizerRunnerViewControllerUnauthorizedCamera:","abstract":"

    Scanning library requested authorization for Camera access from the user, but the user declined it.","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFindError:":{"name":"-recognizerRunnerViewController:didFindError:","abstract":"

    Scanning library found an error. The error object is returned and contains","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidClose:":{"name":"-recognizerRunnerViewControllerDidClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerWillPresentHelp:":{"name":"-recognizerRunnerViewControllerWillPresentHelp:","abstract":"

    Called when Scanning library will display help. This can happen when the user presses","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidResumeScanning:":{"name":"-recognizerRunnerViewControllerDidResumeScanning:","abstract":"

    Called when Scanning library is resuming scanning.

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidStopScanning:":{"name":"-recognizerRunnerViewControllerDidStopScanning:","abstract":"

    Called when Scanning library is stopped scanning.

    ","parent_name":"MBRecognizerRunnerViewControllerDelegate"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(py)autorotate":{"name":"autorotate","abstract":"

    MBRecognizerRunnerViewController’s shouldAutorotate will return this value.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    MBRecognizerRunnerViewController’s supportedInterfaceOrientations will return this value.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)pauseScanning":{"name":"-pauseScanning","abstract":"

    Pause scanning without dismissing the camera view.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)isScanningPaused":{"name":"-isScanningPaused","abstract":"

    Retrieve the current state of scanning.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resumeScanningAndResetState:":{"name":"-resumeScanningAndResetState:","abstract":"

    Resumes scanning. Optionally, internal state of recognizers can be reset in the process.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resumeCamera":{"name":"-resumeCamera","abstract":"

    Resumes camera session. This method is automatically called in viewWillAppear when ScanningViewController enters screen.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)pauseCamera":{"name":"-pauseCamera","abstract":"

    Pauses camera session. This method is automatically called in viewDidDissapear when ScanningViewController exits screen.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)isCameraPaused":{"name":"-isCameraPaused","abstract":"

    Retrieve the current state of camera.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)playScanSuccessSound":{"name":"-playScanSuccessSound","abstract":"

    Play scan sound.

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)willSetTorchOn:":{"name":"-willSetTorchOn:","abstract":"

    Call to turn on torch without camera overlay

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)resetState":{"name":"-resetState","abstract":"
    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBRecognizerRunnerViewController.html#/c:objc(pl)MBRecognizerRunnerViewController(im)captureHighResImage:":{"name":"-captureHighResImage:","abstract":"

    Method with block for getting high resoultion images

    ","parent_name":"MBRecognizerRunnerViewController"},"Protocols/MBQuadDetectorSubview.html#/c:objc(pl)MBQuadDetectorSubview(im)detectionFinishedWithDisplayableQuad:":{"name":"-detectionFinishedWithDisplayableQuad:","abstract":"

    This method should be called when MBDisplayableQuadDetection is obtained and quad need to be drawn/redrawn.

    ","parent_name":"MBQuadDetectorSubview"},"Protocols/MBPointDetectorSubview.html#/c:objc(pl)MBPointDetectorSubview(im)detectionFinishedWithDisplayablePoints:":{"name":"-detectionFinishedWithDisplayablePoints:","abstract":"

    This method should be called when MBDisplayablePointsDetection is obtained and points need to be drawn/redrawn.

    ","parent_name":"MBPointDetectorSubview"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewControllerWillCloseCamera:":{"name":"-overlayViewControllerWillCloseCamera:","abstract":"

    Notification sent when Overlay View Controller wants to close camera, for example,","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewControllerShouldDisplayTorch:":{"name":"-overlayViewControllerShouldDisplayTorch:","abstract":"

    Overlay View Controller should ask it’s delegete if it’s necessary to display Torch (Light) button.","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)overlayViewController:willSetTorch:":{"name":"-overlayViewController:willSetTorch:","abstract":"

    Overlay View Controller must notify it’s delegete to set the torch mode to On or Off

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)shouldDisplayHelpButton":{"name":"-shouldDisplayHelpButton","abstract":"

    If help mechanism is implemented using PPScanDelegate’s scanningViewControllerWillPresentHelp method,","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isStatusBarPresented":{"name":"-isStatusBarPresented","abstract":"

    Check if status bar is hidden or showed

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isTorchOn":{"name":"-isTorchOn","abstract":"

    Overlay View Controller can ask it’s delegete about the status of Torch

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOverlayContainerViewController.html#/c:objc(pl)MBOverlayContainerViewController(im)isCameraAuthorized":{"name":"-isCameraAuthorized","abstract":"

    Overlay View Controller can ask it’s owner whether camera was authorized

    ","parent_name":"MBOverlayContainerViewController"},"Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBOcrRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didObtainOcrResult:withResultName:":{"name":"-recognizerRunnerViewController:didObtainOcrResult:withResultName:","abstract":"

    Called when scanning library has MBOcrLayout ready to be displayed on UI.","parent_name":"MBOcrRecognizerRunnerViewControllerDelegate"},"Protocols/MBOcrRecognizerRunnerDelegate.html#/c:objc(pl)MBOcrRecognizerRunnerDelegate(im)recognizerRunner:didObtainOcrResult:withResultName:":{"name":"-recognizerRunner:didObtainOcrResult:withResultName:","abstract":"

    Called when Scanning library has MBOcrLayout available and ready to be displayed on UI.","parent_name":"MBOcrRecognizerRunnerDelegate"},"Protocols/MBNativeResult.html#/c:objc(pl)MBNativeResult(im)nativeResult":{"name":"-nativeResult","abstract":"

    Returns the native object containing the result. For example, for MBDateResult, this method","parent_name":"MBNativeResult"},"Protocols/MBNativeResult.html#/c:objc(pl)MBNativeResult(im)stringResult":{"name":"-stringResult","abstract":"

    Returns the string version of the result. For example, for MBDateResult, this method","parent_name":"MBNativeResult"},"Protocols/MBMrzImageResult.html#/c:objc(pl)MBMrzImageResult(py)mrzImage":{"name":"mrzImage","abstract":"

    face image from the document if enabled with MBMrzImage returnMrzImage property.

    ","parent_name":"MBMrzImageResult"},"Protocols/MBMrzImageDpi.html#/c:objc(pl)MBMrzImageDpi(py)mrzImageDpi":{"name":"mrzImageDpi","abstract":"

    Property for setting DPI for mrz images","parent_name":"MBMrzImageDpi"},"Protocols/MBMrzImage.html#/c:objc(pl)MBMrzImage(py)returnMrzImage":{"name":"returnMrzImage","abstract":"

    Sets whether MRZ image from ID card should be extracted

    ","parent_name":"MBMrzImage"},"Protocols/MBMrzFilter.html#/c:objc(pl)MBMrzFilter(im)mrzFilter":{"name":"-mrzFilter","abstract":"

    Determines whether document should be processed or it is filtered out.

    ","parent_name":"MBMrzFilter"},"Protocols/MBImageProcessingRecognizerRunnerDelegate.html#/c:objc(pl)MBImageProcessingRecognizerRunnerDelegate(im)recognizerRunner:didFinishProcessingImage:":{"name":"-recognizerRunner:didFinishProcessingImage:","abstract":"

    Called when MBRecognizerRunner finishes processing given image.","parent_name":"MBImageProcessingRecognizerRunnerDelegate"},"Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBGlareRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishGlareDetectionWithResult:":{"name":"-recognizerRunnerViewController:didFinishGlareDetectionWithResult:","abstract":"

    Called when scanning library finishes glare detection.","parent_name":"MBGlareRecognizerRunnerViewControllerDelegate"},"Protocols/MBGlareRecognizerRunnerDelegate.html#/c:objc(pl)MBGlareRecognizerRunnerDelegate(im)recognizerRunner:didFinishGlareDetectionWithResult:":{"name":"-recognizerRunner:didFinishGlareDetectionWithResult:","abstract":"

    Called when scanning library finishes glare detection.","parent_name":"MBGlareRecognizerRunnerDelegate"},"Protocols/MBGlareDetection.html#/c:objc(pl)MBGlareDetection(py)detectGlare":{"name":"detectGlare","abstract":"

    Defines if glare detection should be turned on/off.

    ","parent_name":"MBGlareDetection"},"Protocols/MBFullDocumentImageResult.html#/c:objc(pl)MBFullDocumentImageResult(py)fullDocumentImage":{"name":"fullDocumentImage","abstract":"

    full document image if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBFullDocumentImageResult"},"Protocols/MBFullDocumentImageExtensionFactors.html#/c:objc(pl)MBFullDocumentImageExtensionFactors(py)fullDocumentImageExtensionFactors":{"name":"fullDocumentImageExtensionFactors","abstract":"

    Image extension factors for full document image.

    ","parent_name":"MBFullDocumentImageExtensionFactors"},"Protocols/MBFullDocumentImageDpi.html#/c:objc(pl)MBFullDocumentImageDpi(py)fullDocumentImageDpi":{"name":"fullDocumentImageDpi","abstract":"

    Property for setting DPI for full document images","parent_name":"MBFullDocumentImageDpi"},"Protocols/MBFullDocumentImage.html#/c:objc(pl)MBFullDocumentImage(py)returnFullDocumentImage":{"name":"returnFullDocumentImage","abstract":"

    Sets whether full document image of ID card should be extracted.

    ","parent_name":"MBFullDocumentImage"},"Protocols/MBFrameGrabberRecognizerDelegate.html#/c:objc(pl)MBFrameGrabberRecognizerDelegate(im)onFrameAvailable:isFocused:frameQuality:":{"name":"-onFrameAvailable:isFocused:frameQuality:","abstract":"

    Called when {FrameGrabberRecognizer} received new frame for processing.","parent_name":"MBFrameGrabberRecognizerDelegate"},"Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBFirstSideFinishedRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidFinishRecognitionOfFirstSide:":{"name":"-recognizerRunnerViewControllerDidFinishRecognitionOfFirstSide:","abstract":"

    Called when scanning library finishes performing recognition of the first side of the document.","parent_name":"MBFirstSideFinishedRecognizerRunnerViewControllerDelegate"},"Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html#/c:objc(pl)MBFirstSideFinishedRecognizerRunnerDelegate(im)recognizerRunnerDidFinishRecognitionOfFirstSide:":{"name":"-recognizerRunnerDidFinishRecognitionOfFirstSide:","abstract":"

    Called when scanning library finishes performing recognition of the first side of the document.","parent_name":"MBFirstSideFinishedRecognizerRunnerDelegate"},"Protocols/MBFaceImageResult.html#/c:objc(pl)MBFaceImageResult(py)faceImage":{"name":"faceImage","abstract":"

    face image from the document if enabled with MBFaceImage returnFaceImage property.

    ","parent_name":"MBFaceImageResult"},"Protocols/MBFaceImageDpi.html#/c:objc(pl)MBFaceImageDpi(py)faceImageDpi":{"name":"faceImageDpi","abstract":"

    Property for setting DPI for face images","parent_name":"MBFaceImageDpi"},"Protocols/MBFaceImage.html#/c:objc(pl)MBFaceImage(py)returnFaceImage":{"name":"returnFaceImage","abstract":"

    Sets whether face image from ID card should be extracted

    ","parent_name":"MBFaceImage"},"Protocols/MBEncodedSignatureImageResult.html#/c:objc(pl)MBEncodedSignatureImageResult(py)encodedSignatureImage":{"name":"encodedSignatureImage","abstract":"

    JPEG-encoded image of the signature from the document. Available only if enabled with MBEncodeSignatureImage encodeSignatureImage property.

    ","parent_name":"MBEncodedSignatureImageResult"},"Protocols/MBEncodedMrzImageResult.html#/c:objc(pl)MBEncodedMrzImageResult(py)encodedMrzImage":{"name":"encodedMrzImage","abstract":"

    JPEG-encoded MRZ image from the document if enabled with MBEncodeMrzImage encodeMrzImage property.

    ","parent_name":"MBEncodedMrzImageResult"},"Protocols/MBEncodedFullDocumentImageResult.html#/c:objc(pl)MBEncodedFullDocumentImageResult(py)encodedFullDocumentImage":{"name":"encodedFullDocumentImage","abstract":"

    JPEG-encoded full document image if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedFullDocumentImageResult"},"Protocols/MBEncodedFaceImageResult.html#/c:objc(pl)MBEncodedFaceImageResult(py)encodedFaceImage":{"name":"encodedFaceImage","abstract":"

    JPEG-encoded face image from the document if enabled with MBEncodeFaceImage encodeFaceImage property.

    ","parent_name":"MBEncodedFaceImageResult"},"Protocols/MBEncodedCombinedFullDocumentImageResult.html#/c:objc(pl)MBEncodedCombinedFullDocumentImageResult(py)encodedFullDocumentFrontImage":{"name":"encodedFullDocumentFrontImage","abstract":"

    JPEG-encoded full document image of the front side of the document. Available only if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedCombinedFullDocumentImageResult"},"Protocols/MBEncodedCombinedFullDocumentImageResult.html#/c:objc(pl)MBEncodedCombinedFullDocumentImageResult(py)encodedFullDocumentBackImage":{"name":"encodedFullDocumentBackImage","abstract":"

    JPEG-encoded full document image of the back side of the document. Available only if enabled with MBEncodeFullDocumentImage encodeFullDocumentImage property.

    ","parent_name":"MBEncodedCombinedFullDocumentImageResult"},"Protocols/MBEncodeSignatureImage.html#/c:objc(pl)MBEncodeSignatureImage(py)encodeSignatureImage":{"name":"encodeSignatureImage","abstract":"

    Sets whether image of signature on document should be extracted and JPEG-encoded.

    ","parent_name":"MBEncodeSignatureImage"},"Protocols/MBEncodeMrzImage.html#/c:objc(pl)MBEncodeMrzImage(py)encodeMrzImage":{"name":"encodeMrzImage","abstract":"

    Sets whether MRZ image should be extracted from document and JPEG-encoded.

    ","parent_name":"MBEncodeMrzImage"},"Protocols/MBEncodeFullDocumentImage.html#/c:objc(pl)MBEncodeFullDocumentImage(py)encodeFullDocumentImage":{"name":"encodeFullDocumentImage","abstract":"

    Sets whether full document image should be extracted and JPEG-encoded.

    ","parent_name":"MBEncodeFullDocumentImage"},"Protocols/MBEncodeFaceImage.html#/c:objc(pl)MBEncodeFaceImage(py)encodeFaceImage":{"name":"encodeFaceImage","abstract":"

    Sets whether face image should be extracted from document and JPEG-encoded.

    ","parent_name":"MBEncodeFaceImage"},"Protocols/MBDocumentVerificationSubviewDelegate.html#/c:objc(pl)MBDocumentVerificationSubviewDelegate(im)documentVerificationSubviewDidFinishAnimation:":{"name":"-documentVerificationSubviewDidFinishAnimation:","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubviewDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidFinishScanning:state:":{"name":"-documentVerificationOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidTapClose:":{"name":"-documentVerificationOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidFinishScanningFirstSide:":{"name":"-documentVerificationOverlayViewControllerDidFinishScanningFirstSide:","abstract":"

    Called when scanning library finished scanning first side of the document

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentVerificationOverlayViewControllerDelegate(im)documentVerificationOverlayViewControllerDidCaptureHighResolutionImage:highResImage:state:":{"name":"-documentVerificationOverlayViewControllerDidCaptureHighResolutionImage:highResImage:state:","abstract":"

    Scanning library did output high resolution image

    ","parent_name":"MBDocumentVerificationOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidFinishScanning:state:":{"name":"-documentOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidTapClose:":{"name":"-documentOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDocumentOverlayViewControllerDelegate.html#/c:objc(pl)MBDocumentOverlayViewControllerDelegate(im)documentOverlayViewControllerDidCaptureHighResolutionImage:highResImage:":{"name":"-documentOverlayViewControllerDidCaptureHighResolutionImage:highResImage:","abstract":"

    Scanning library did output high resolution image

    ","parent_name":"MBDocumentOverlayViewControllerDelegate"},"Protocols/MBDigitalSignatureResult.html#/c:objc(pl)MBDigitalSignatureResult(py)digitalSignature":{"name":"digitalSignature","abstract":"

    Digital signature of the recognition result. Available only if enabled with MBDigitalSignature signResult property.

    ","parent_name":"MBDigitalSignatureResult"},"Protocols/MBDigitalSignatureResult.html#/c:objc(pl)MBDigitalSignatureResult(py)digitalSignatureVersion":{"name":"digitalSignatureVersion","abstract":"

    Version of the digital signature. Available only if enabled with MBDigitalSignature signResult property.

    ","parent_name":"MBDigitalSignatureResult"},"Protocols/MBDigitalSignature.html#/c:objc(pl)MBDigitalSignature(py)signResult":{"name":"signResult","abstract":"

    Whether or not recognition result should be signed.

    ","parent_name":"MBDigitalSignature"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad:":{"name":"-recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didFinishDetectionWithDisplayablePoints:":{"name":"-recognizerRunnerViewController:didFinishDetectionWithDisplayablePoints:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewControllerDidFailDetection:":{"name":"-recognizerRunnerViewControllerDidFailDetection:","abstract":"

    Called when Scanning library fails to detect any object with any of the currently active recognizers.

    ","parent_name":"MBDetectionRecognizerRunnerViewControllerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunner:didFinishDetectionWithDisplayableQuad:":{"name":"-recognizerRunner:didFinishDetectionWithDisplayableQuad:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunner:didFinishDetectionWithDisplayablePoints:":{"name":"-recognizerRunner:didFinishDetectionWithDisplayablePoints:","abstract":"

    Called when Scanning library finishes detection of objects.","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDetectionRecognizerRunnerDelegate.html#/c:objc(pl)MBDetectionRecognizerRunnerDelegate(im)recognizerRunnerDidFailDetection:":{"name":"-recognizerRunnerDidFailDetection:","abstract":"

    Called when Scanning library fails to detect any object with any of the currently active recognizers.

    ","parent_name":"MBDetectionRecognizerRunnerDelegate"},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didOutputDebugImage:":{"name":"-recognizerRunnerViewController:didOutputDebugImage:","abstract":"

    Scanning library did output debug image","parent_name":"MBDebugRecognizerRunnerViewControllerDelegate"},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerViewControllerDelegate(im)recognizerRunnerViewController:didOutputDebugText:":{"name":"-recognizerRunnerViewController:didOutputDebugText:","abstract":"

    Scanning library did output debug text","parent_name":"MBDebugRecognizerRunnerViewControllerDelegate"},"Protocols/MBDebugRecognizerRunnerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerDelegate(im)recognizerRunner:didOutputDebugImage:":{"name":"-recognizerRunner:didOutputDebugImage:","abstract":"

    Scanning library did output debug image","parent_name":"MBDebugRecognizerRunnerDelegate"},"Protocols/MBDebugRecognizerRunnerDelegate.html#/c:objc(pl)MBDebugRecognizerRunnerDelegate(im)recognizerRunner:didOutputDebugText:":{"name":"-recognizerRunner:didOutputDebugText:","abstract":"

    Scanning library did output debug text","parent_name":"MBDebugRecognizerRunnerDelegate"},"Protocols/MBCombinedRecognizerResult.html#/c:objc(pl)MBCombinedRecognizerResult(py)documentDataMatch":{"name":"documentDataMatch","abstract":"

    Returns MBDataMatchResultSuccess if data from scanned parts/sides of the document match,","parent_name":"MBCombinedRecognizerResult"},"Protocols/MBCombinedRecognizerResult.html#/c:objc(pl)MBCombinedRecognizerResult(py)scanningFirstSideDone":{"name":"scanningFirstSideDone","abstract":"

    Returns YES if recognizer has finished scanning first side and is now scanning back side,","parent_name":"MBCombinedRecognizerResult"},"Protocols/MBCombinedRecognizer.html#/c:objc(pl)MBCombinedRecognizer(py)combinedResult":{"name":"combinedResult","abstract":"

    Combined result which is associated with this combined recognizer.

    ","parent_name":"MBCombinedRecognizer"},"Protocols/MBCombinedFullDocumentImageResult.html#/c:objc(pl)MBCombinedFullDocumentImageResult(py)fullDocumentFrontImage":{"name":"fullDocumentFrontImage","abstract":"

    front side image of the document if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBCombinedFullDocumentImageResult"},"Protocols/MBCombinedFullDocumentImageResult.html#/c:objc(pl)MBCombinedFullDocumentImageResult(py)fullDocumentBackImage":{"name":"fullDocumentBackImage","abstract":"

    back side image of the document if enabled with MBFullDocumentImage returnFullDocumentImage property.

    ","parent_name":"MBCombinedFullDocumentImageResult"},"Protocols/MBBlinkIdRecognizerDelegate.html#/c:objc(pl)MBBlinkIdRecognizerDelegate(im)onImageAvailable:":{"name":"-onImageAvailable:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerDelegate"},"Protocols/MBBlinkIdRecognizerDelegate.html#/c:objc(pl)MBBlinkIdRecognizerDelegate(im)onDocumentSupportStatus:":{"name":"-onDocumentSupportStatus:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidFinishScanning:state:":{"name":"-blinkIdOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidTapClose:":{"name":"-blinkIdOverlayViewControllerDidTapClose:","abstract":"

    Scanning library was closed, usually by the user pressing close button and cancelling the scan

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html#/c:objc(pl)MBBlinkIdOverlayViewControllerDelegate(im)blinkIdOverlayViewControllerDidFinishScanningFirstSide:":{"name":"-blinkIdOverlayViewControllerDidFinishScanningFirstSide:","abstract":"

    Called when scanning library finished scanning first side of the document

    ","parent_name":"MBBlinkIdOverlayViewControllerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html#/c:objc(pl)MBBlinkIdCombinedRecognizerDelegate(im)onCombinedImageAvailable:":{"name":"-onCombinedImageAvailable:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html#/c:objc(pl)MBBlinkIdCombinedRecognizerDelegate(im)onCombinedDocumentSupportStatus:":{"name":"-onCombinedDocumentSupportStatus:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerDelegate"},"Protocols/MBBlinkIdCombinedRecognizerDelegate.html":{"name":"MBBlinkIdCombinedRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBBlinkIdOverlayViewControllerDelegate.html":{"name":"MBBlinkIdOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBBlinkIdRecognizerDelegate.html":{"name":"MBBlinkIdRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBCombinedFullDocumentImageResult.html":{"name":"MBCombinedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBCombinedRecognizer.html":{"name":"MBCombinedRecognizer","abstract":"

    Undocumented

    "},"Protocols/MBCombinedRecognizerResult.html":{"name":"MBCombinedRecognizerResult","abstract":"

    Undocumented

    "},"Protocols/MBDebugRecognizerRunnerDelegate.html":{"name":"MBDebugRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining debug metadata

    "},"Protocols/MBDebugRecognizerRunnerViewControllerDelegate.html":{"name":"MBDebugRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining debug metadata

    "},"Protocols/MBDetectionRecognizerRunnerDelegate.html":{"name":"MBDetectionRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining detection results

    "},"Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html":{"name":"MBDetectionRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining detection results

    "},"Protocols/MBDigitalSignature.html":{"name":"MBDigitalSignature","abstract":"

    Undocumented

    "},"Protocols/MBDigitalSignatureResult.html":{"name":"MBDigitalSignatureResult","abstract":"

    Undocumented

    "},"Protocols/MBDocumentOverlayViewControllerDelegate.html":{"name":"MBDocumentOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBDocumentVerificationOverlayViewControllerDelegate.html":{"name":"MBDocumentVerificationOverlayViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBDocumentVerificationSubviewDelegate.html":{"name":"MBDocumentVerificationSubviewDelegate","abstract":"

    Undocumented

    "},"Protocols/MBEncodeFaceImage.html":{"name":"MBEncodeFaceImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeFullDocumentImage.html":{"name":"MBEncodeFullDocumentImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeMrzImage.html":{"name":"MBEncodeMrzImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodeSignatureImage.html":{"name":"MBEncodeSignatureImage","abstract":"

    Undocumented

    "},"Protocols/MBEncodedCombinedFullDocumentImageResult.html":{"name":"MBEncodedCombinedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedFaceImageResult.html":{"name":"MBEncodedFaceImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedFullDocumentImageResult.html":{"name":"MBEncodedFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedMrzImageResult.html":{"name":"MBEncodedMrzImageResult","abstract":"

    Undocumented

    "},"Protocols/MBEncodedSignatureImageResult.html":{"name":"MBEncodedSignatureImageResult","abstract":"

    Undocumented

    "},"Protocols/MBFaceImage.html":{"name":"MBFaceImage","abstract":"

    Undocumented

    "},"Protocols/MBFaceImageDpi.html":{"name":"MBFaceImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBFaceImageResult.html":{"name":"MBFaceImageResult","abstract":"

    Undocumented

    "},"Protocols/MBFirstSideFinishedRecognizerRunnerDelegate.html":{"name":"MBFirstSideFinishedRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFirstSideFinishedRecognizerRunnerViewControllerDelegate.html":{"name":"MBFirstSideFinishedRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFrameGrabberRecognizerDelegate.html":{"name":"MBFrameGrabberRecognizerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImage.html":{"name":"MBFullDocumentImage","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageDpi.html":{"name":"MBFullDocumentImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageExtensionFactors.html":{"name":"MBFullDocumentImageExtensionFactors","abstract":"

    Undocumented

    "},"Protocols/MBFullDocumentImageResult.html":{"name":"MBFullDocumentImageResult","abstract":"

    Undocumented

    "},"Protocols/MBGlareDetection.html":{"name":"MBGlareDetection","abstract":"

    Undocumented

    "},"Protocols/MBGlareRecognizerRunnerDelegate.html":{"name":"MBGlareRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBGlareRecognizerRunnerViewControllerDelegate.html":{"name":"MBGlareRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBImageProcessingRecognizerRunnerDelegate.html":{"name":"MBImageProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBMrzFilter.html":{"name":"MBMrzFilter","abstract":"

    Undocumented

    "},"Protocols/MBMrzImage.html":{"name":"MBMrzImage","abstract":"

    Undocumented

    "},"Protocols/MBMrzImageDpi.html":{"name":"MBMrzImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBMrzImageResult.html":{"name":"MBMrzImageResult","abstract":"

    Undocumented

    "},"Protocols/MBNativeResult.html":{"name":"MBNativeResult","abstract":"

    Undocumented

    "},"Protocols/MBOcrRecognizerRunnerDelegate.html":{"name":"MBOcrRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining ocr results

    "},"Protocols/MBOcrRecognizerRunnerViewControllerDelegate.html":{"name":"MBOcrRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining ocr results

    "},"Protocols/MBOverlayContainerViewController.html":{"name":"MBOverlayContainerViewController","abstract":"

    Overlay View Controller also needs to notify CameraViewController on certain events."},"Protocols/MBPointDetectorSubview.html":{"name":"MBPointDetectorSubview","abstract":"

    Protocol for processing MBDisplayablePointsDetection. Subviews implementing this protocol process and draw points on the screen (e.g. flashing dots)

    "},"Protocols/MBQuadDetectorSubview.html":{"name":"MBQuadDetectorSubview","abstract":"

    Protocol for processing MBDisplayableQuadDetection. Subviews implementing this protocol process and draw quad on the screen (e.g. viewfinder drawing document outlining)

    "},"Protocols/MBRecognizerRunnerViewController.html":{"name":"MBRecognizerRunnerViewController","abstract":"

    Protocol for View controllers which present camera and provide scanning features

    "},"Protocols/MBRecognizerRunnerViewControllerDelegate.html":{"name":"MBRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for MBRecognizerRunnerViewController actions

    "},"Protocols/MBResultSubview.html":{"name":"MBResultSubview","abstract":"

    Protocol for processing MBRecognizerResult. Subviews implementing this protocol process and draw result data on the screen (e.g. letting users know is scanning was successful)

    "},"Protocols/MBScanningRecognizerRunnerDelegate.html":{"name":"MBScanningRecognizerRunnerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBScanningRecognizerRunnerViewControllerDelegate.html":{"name":"MBScanningRecognizerRunnerViewControllerDelegate","abstract":"

    Protocol for obtaining scanning results

    "},"Protocols/MBSignatureImage.html":{"name":"MBSignatureImage","abstract":"

    Undocumented

    "},"Protocols/MBSignatureImageDpi.html":{"name":"MBSignatureImageDpi","abstract":"

    Undocumented

    "},"Protocols/MBSignatureImageResult.html":{"name":"MBSignatureImageResult","abstract":"

    Undocumented

    "},"Protocols/MBStringProcessingRecognizerRunnerDelegate.html":{"name":"MBStringProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    "},"Protocols/MBSubviewDelegate.html":{"name":"MBSubviewDelegate","abstract":"

    Protocol which all objects interested in receiving information about overlay subviews need to implement

    "},"Protocols/MBTemplatingClassifier.html":{"name":"MBTemplatingClassifier","abstract":"

    Undocumented

    "},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentType":{"name":"DocumentType","abstract":"

    Mandatory on all driver’s licenses. All barcodes which are using 3-track magnetic","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardVersionNumber":{"name":"StandardVersionNumber","abstract":"

    Mandatory on all driver’s licenses.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFamilyName":{"name":"CustomerFamilyName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFirstName":{"name":"CustomerFirstName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerFullName":{"name":"CustomerFullName","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DateOfBirth":{"name":"DateOfBirth","abstract":"

    Mandatory on all AAMVA, Magentic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Sex":{"name":"Sex","abstract":"

    Mandatory on all AAMVA, Magentic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@EyeColor":{"name":"EyeColor","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressStreet":{"name":"AddressStreet","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressCity":{"name":"AddressCity","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressJurisdictionCode":{"name":"AddressJurisdictionCode","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressPostalCode":{"name":"AddressPostalCode","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FullAddress":{"name":"FullAddress","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Height":{"name":"Height","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HeightIn":{"name":"HeightIn","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HeightCm":{"name":"HeightCm","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerMiddleName":{"name":"CustomerMiddleName","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HairColor":{"name":"HairColor","abstract":"

    Optional on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NameSuffix":{"name":"NameSuffix","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAFullName":{"name":"AKAFullName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAFamilyName":{"name":"AKAFamilyName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAGivenName":{"name":"AKAGivenName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKASuffixName":{"name":"AKASuffixName","abstract":"

    Optional on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightRange":{"name":"WeightRange","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightPounds":{"name":"WeightPounds","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@WeightKilograms":{"name":"WeightKilograms","abstract":"

    Mandatory on AAMVA 02 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CustomerIdNumber":{"name":"CustomerIdNumber","abstract":"

    Mandatory on all AAMVA and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FamilyNameTruncation":{"name":"FamilyNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FirstNameTruncation":{"name":"FirstNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08 barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@MiddleNameTruncation":{"name":"MiddleNameTruncation","abstract":"

    Mandatory on AAMVA 04, 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PlaceOfBirth":{"name":"PlaceOfBirth","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AddressStreet2":{"name":"AddressStreet2","abstract":"

    Optional on all AAMVA barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@RaceEthnicity":{"name":"RaceEthnicity","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NamePrefix":{"name":"NamePrefix","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CountryIdentification":{"name":"CountryIdentification","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceStreetAddress":{"name":"ResidenceStreetAddress","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceStreetAddress2":{"name":"ResidenceStreetAddress2","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceCity":{"name":"ResidenceCity","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceJurisdictionCode":{"name":"ResidenceJurisdictionCode","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidencePostalCode":{"name":"ResidencePostalCode","abstract":"

    Optional on AAMVA 01 barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ResidenceFullAddress":{"name":"ResidenceFullAddress","abstract":"

    Optional on AAMVA 01 barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under18":{"name":"Under18","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under19":{"name":"Under19","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Under21":{"name":"Under21","abstract":"

    Optional on AAMVA 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@SocialSecurityNumber":{"name":"SocialSecurityNumber","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKASocialSecurityNumber":{"name":"AKASocialSecurityNumber","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAMiddleName":{"name":"AKAMiddleName","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKAPrefixName":{"name":"AKAPrefixName","abstract":"

    Optional on AAMVA 01

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@OrganDonor":{"name":"OrganDonor","abstract":"

    Optional on AAMVA 01, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@Veteran":{"name":"Veteran","abstract":"

    Optional on AAMVA 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AKADateOfBirth":{"name":"AKADateOfBirth","abstract":"

    Optional on AAMVA 01. (MMDDCCYY format)

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuerIdentificationNumber":{"name":"IssuerIdentificationNumber","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentExpirationDate":{"name":"DocumentExpirationDate","abstract":"

    Mandatory on all AAMVA, Magnetic and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVersionNumber":{"name":"JurisdictionVersionNumber","abstract":"

    Mandatory on all AAMVA and Compact barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVehicleClass":{"name":"JurisdictionVehicleClass","abstract":"

    Mandatory on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionRestrictionCodes":{"name":"JurisdictionRestrictionCodes","abstract":"

    Mandatory on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionEndorsementCodes":{"name":"JurisdictionEndorsementCodes","abstract":"

    Mandatory on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentIssueDate":{"name":"DocumentIssueDate","abstract":"

    Mandatory on all AAMVA and Compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@FederalCommercialVehicleCodes":{"name":"FederalCommercialVehicleCodes","abstract":"

    Mandatory on AAMVA versions 02 and 03.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuingJurisdiction":{"name":"IssuingJurisdiction","abstract":"

    Optional on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardVehicleClassification":{"name":"StandardVehicleClassification","abstract":"

    Optional on all AAMVA barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssuingJurisdictionName":{"name":"IssuingJurisdictionName","abstract":"

    Optional on all AAMVA and Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardEndorsementCode":{"name":"StandardEndorsementCode","abstract":"

    Optional on all AAMVA barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@StandardRestrictionCode":{"name":"StandardRestrictionCode","abstract":"

    Optional on all AAMVA barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionVehicleClassificationDescription":{"name":"JurisdictionVehicleClassificationDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionEndorsmentCodeDescription":{"name":"JurisdictionEndorsmentCodeDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@JurisdictionRestrictionCodeDescription":{"name":"JurisdictionRestrictionCodeDescription","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@InventoryControlNumber":{"name":"InventoryControlNumber","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@CardRevisionDate":{"name":"CardRevisionDate","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentDiscriminator":{"name":"DocumentDiscriminator","abstract":"

    Mandatory on AAMVA 02, 03, 04, 05, 06, 07, 08 and Magnetic barcodes.","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@LimitedDurationDocument":{"name":"LimitedDurationDocument","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@AuditInformation":{"name":"AuditInformation","abstract":"

    Optional on AAMVA 02, 03, 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@ComplianceType":{"name":"ComplianceType","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@IssueTimestamp":{"name":"IssueTimestamp","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitExpirationDate":{"name":"PermitExpirationDate","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitIdentifier":{"name":"PermitIdentifier","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@PermitIssueDate":{"name":"PermitIssueDate","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NumberOfDuplicates":{"name":"NumberOfDuplicates","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@HAZMATExpirationDate":{"name":"HAZMATExpirationDate","abstract":"

    Optional on AAMVA 04, 05, 06, 07, 08 and Compact barcodes

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@MedicalIndicator":{"name":"MedicalIndicator","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@NonResident":{"name":"NonResident","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@UniqueCustomerId":{"name":"UniqueCustomerId","abstract":"

    Optional on AAMVA version 01.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DataDiscriminator":{"name":"DataDiscriminator","abstract":"

    Optional on compact barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentExpirationMonth":{"name":"DocumentExpirationMonth","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@DocumentNonexpiring":{"name":"DocumentNonexpiring","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBUsdlKeys.html#/c:@E@MBUsdlKeys@SecurityVersion":{"name":"SecurityVersion","abstract":"

    Optional on Magnetic barcodes.

    ","parent_name":"MBUsdlKeys"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateEmpty":{"name":"MBRecognizerResultStateEmpty","abstract":"

    Empty

    ","parent_name":"MBRecognizerResultState"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateUncertain":{"name":"MBRecognizerResultStateUncertain","abstract":"

    Uncertain

    ","parent_name":"MBRecognizerResultState"},"Enums/MBRecognizerResultState.html#/c:@E@MBRecognizerResultState@MBRecognizerResultStateValid":{"name":"MBRecognizerResultStateValid","abstract":"

    Valid

    ","parent_name":"MBRecognizerResultState"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeDefault":{"name":"MBFrameQualityEstimationModeDefault","abstract":"

    Default. Frame quality estimation is ON if enabled recognizers require it by default.

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeOn":{"name":"MBFrameQualityEstimationModeOn","abstract":"

    Frame quality estimation is always on

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBFrameQualityEstimationMode.html#/c:@E@MBFrameQualityEstimationMode@MBFrameQualityEstimationModeOff":{"name":"MBFrameQualityEstimationModeOff","abstract":"

    Frame quality estimation is always off

    ","parent_name":"MBFrameQualityEstimationMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeDefault":{"name":"MBRecognitionModeDefault","abstract":"

    Classic, production mode. Results are returned after first valid scanning

    ","parent_name":"MBRecognitionMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeTest":{"name":"MBRecognitionModeTest","abstract":"

    Recognition Test. Results are never returned, recognition is performed repeatedly

    ","parent_name":"MBRecognitionMode"},"Enums/MBRecognitionMode.html#/c:@E@MBRecognitionMode@MBRecognitionModeDetectionTest":{"name":"MBRecognitionModeDetectionTest","abstract":"

    Recognition Test. Results are never returned, only detection is performed repeatedly

    ","parent_name":"MBRecognitionMode"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateEmpty":{"name":"MBProcessorResultStateEmpty","abstract":"

    Empty

    ","parent_name":"MBProcessorResultState"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateUncertain":{"name":"MBProcessorResultStateUncertain","abstract":"

    Uncertain

    ","parent_name":"MBProcessorResultState"},"Enums/MBProcessorResultState.html#/c:@E@MBProcessorResultState@MBProcessorResultStateValid":{"name":"MBProcessorResultStateValid","abstract":"

    Valid

    ","parent_name":"MBProcessorResultState"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_AKZIDENZ_GROTESK":{"name":"MB_OCR_FONT_AKZIDENZ_GROTESK","abstract":"

    Akzidenz Grotesk font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARIAL":{"name":"MB_OCR_FONT_ARIAL","abstract":"

    Arial font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARIAL_BLACK":{"name":"MB_OCR_FONT_ARIAL_BLACK","abstract":"

    Arial black font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARNHEM":{"name":"MB_OCR_FONT_ARNHEM","abstract":"

    Arnhem font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_AVANT_GARDE":{"name":"MB_OCR_FONT_AVANT_GARDE","abstract":"

    Avant garde font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_BEMBO":{"name":"MB_OCR_FONT_BEMBO","abstract":"

    Bembo font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_BODONI":{"name":"MB_OCR_FONT_BODONI","abstract":"

    Bodoni font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CALIBRI":{"name":"MB_OCR_FONT_CALIBRI","abstract":"

    Calibri font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CALIBRI_BOLD":{"name":"MB_OCR_FONT_CALIBRI_BOLD","abstract":"

    Calibri bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CHAINPRINTER":{"name":"MB_OCR_FONT_CHAINPRINTER","abstract":"

    Chainprinter font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COMIC_SANS":{"name":"MB_OCR_FONT_COMIC_SANS","abstract":"

    Comic sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CONCERTO_ROUNDED_SG":{"name":"MB_OCR_FONT_CONCERTO_ROUNDED_SG","abstract":"

    Concerto rounded SG font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER":{"name":"MB_OCR_FONT_COURIER","abstract":"

    Courier font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_BOLD":{"name":"MB_OCR_FONT_COURIER_BOLD","abstract":"

    Courier bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_MEDIUM_BOLD":{"name":"MB_OCR_FONT_COURIER_MEDIUM_BOLD","abstract":"

    Courier medium bold","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_NEW_BOLD":{"name":"MB_OCR_FONT_COURIER_NEW_BOLD","abstract":"

    Courier new bold","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_NEW_CE":{"name":"MB_OCR_FONT_COURIER_NEW_CE","abstract":"

    Courier new ce font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COURIER_CONDENSED":{"name":"MB_OCR_FONT_COURIER_CONDENSED","abstract":"

    Courier censored font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_DEJAVU_SANS_MONO":{"name":"MB_OCR_FONT_DEJAVU_SANS_MONO","abstract":"

    Dejavu sans mono font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_DIN":{"name":"MB_OCR_FONT_DIN","abstract":"

    Din font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GROTESK_NO_2_SB_BOLD":{"name":"MB_OCR_FONT_EUROPA_GROTESK_NO_2_SB_BOLD","abstract":"

    Europa grotesk no 2 SB bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROSTILE":{"name":"MB_OCR_FONT_EUROSTILE","abstract":"

    Eurostile font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_F25_BANK_PRINTER_BOLD":{"name":"MB_OCR_FONT_F25_BANK_PRINTER_BOLD","abstract":"

    F25 bank printer bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FRANKLIN_GOTHIC":{"name":"MB_OCR_FONT_FRANKLIN_GOTHIC","abstract":"

    Franklin gothic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FRUTIGER":{"name":"MB_OCR_FONT_FRUTIGER","abstract":"

    Frutiger font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FUTURA":{"name":"MB_OCR_FONT_FUTURA","abstract":"

    Futura font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FUTURA_BOLD":{"name":"MB_OCR_FONT_FUTURA_BOLD","abstract":"

    Futura bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GARAMOND":{"name":"MB_OCR_FONT_GARAMOND","abstract":"

    Garamond font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GEORGIA":{"name":"MB_OCR_FONT_GEORGIA","abstract":"

    Georgia font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_GILL_SANS":{"name":"MB_OCR_FONT_GILL_SANS","abstract":"

    Gill sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HANDWRITTEN":{"name":"MB_OCR_FONT_HANDWRITTEN","abstract":"

    Handwritten font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA":{"name":"MB_OCR_FONT_HELVETICA","abstract":"

    Helvetica font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA_BOLD":{"name":"MB_OCR_FONT_HELVETICA_BOLD","abstract":"

    Helvetica bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HELVETICA_CONDENSED_LIGHT":{"name":"MB_OCR_FONT_HELVETICA_CONDENSED_LIGHT","abstract":"

    Helvetica condensed light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_HYPERMARKET":{"name":"MB_OCR_FONT_HYPERMARKET","abstract":"

    Hypermarket font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_INTERSTATE":{"name":"MB_OCR_FONT_INTERSTATE","abstract":"

    Interstate font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LATIN_MODERN":{"name":"MB_OCR_FONT_LATIN_MODERN","abstract":"

    Latin modern math font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LATIN_MODERN_ITALIC":{"name":"MB_OCR_FONT_LATIN_MODERN_ITALIC","abstract":"

    Latin modern italic font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LETTER_GOTHIC":{"name":"MB_OCR_FONT_LETTER_GOTHIC","abstract":"

    Letter gothic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LUCIDA":{"name":"MB_OCR_FONT_LUCIDA","abstract":"

    Lucida font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_LUCIDA_SANS":{"name":"MB_OCR_FONT_LUCIDA_SANS","abstract":"

    Lucida sans font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MATRIX":{"name":"MB_OCR_FONT_MATRIX","abstract":"

    Matrix font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_META":{"name":"MB_OCR_FONT_META","abstract":"

    Meta font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MINION":{"name":"MB_OCR_FONT_MINION","abstract":"

    Minion font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OCRA":{"name":"MB_OCR_FONT_OCRA","abstract":"

    OCR A font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OCRB":{"name":"MB_OCR_FONT_OCRB","abstract":"

    OCR B font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OFFICINA":{"name":"MB_OCR_FONT_OFFICINA","abstract":"

    Officina font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_OPTIMA":{"name":"MB_OCR_FONT_OPTIMA","abstract":"

    Optima font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_PRINTF":{"name":"MB_OCR_FONT_PRINTF","abstract":"

    Printf font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROCKWELL":{"name":"MB_OCR_FONT_ROCKWELL","abstract":"

    Rockwell font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROTIS_SANS_SERIF":{"name":"MB_OCR_FONT_ROTIS_SANS_SERIF","abstract":"

    Rotis sans serif font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ROTIS_SERIF":{"name":"MB_OCR_FONT_ROTIS_SERIF","abstract":"

    Rotis serif font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_SABON":{"name":"MB_OCR_FONT_SABON","abstract":"

    Sabon font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_STONE":{"name":"MB_OCR_FONT_STONE","abstract":"

    Stone font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_SV_BASIC_MANUAL":{"name":"MB_OCR_FONT_SV_BASIC_MANUAL","abstract":"

    SV basic manual font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TAHOMA":{"name":"MB_OCR_FONT_TAHOMA","abstract":"

    Tahoma font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TAHOMA_BOLD":{"name":"MB_OCR_FONT_TAHOMA_BOLD","abstract":"

    Tahoma bold font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TEX_GYRE_TERMES":{"name":"MB_OCR_FONT_TEX_GYRE_TERMES","abstract":"

    Tex gyre termes font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TEX_GYRE_TERMES_ITALIC":{"name":"MB_OCR_FONT_TEX_GYRE_TERMES_ITALIC","abstract":"

    Tex gyre termes italic font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_THE_SANS_MONO_CONDENSED_BLACK":{"name":"MB_OCR_FONT_THE_SANS_MONO_CONDENSED_BLACK","abstract":"

    Sans mono condensed black font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_THESIS":{"name":"MB_OCR_FONT_THESIS","abstract":"

    Thesis font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TICKET_DE_CAISSE":{"name":"MB_OCR_FONT_TICKET_DE_CAISSE","abstract":"

    Ticket de caisse font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TIMES_NEW_ROMAN":{"name":"MB_OCR_FONT_TIMES_NEW_ROMAN","abstract":"

    Times new roman font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TRAJAN":{"name":"MB_OCR_FONT_TRAJAN","abstract":"

    Trajan font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_TRINITE":{"name":"MB_OCR_FONT_TRINITE","abstract":"

    Trinite font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNIVERS":{"name":"MB_OCR_FONT_UNIVERS","abstract":"

    Univers font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_VERDANA":{"name":"MB_OCR_FONT_VERDANA","abstract":"

    Verdana font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_VOLTAIRE":{"name":"MB_OCR_FONT_VOLTAIRE","abstract":"

    Voltaire font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_WALBAUM":{"name":"MB_OCR_FONT_WALBAUM","abstract":"

    Walbaum font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GRO_SB":{"name":"MB_OCR_FONT_EUROPA_GRO_SB","abstract":"

    Europa gro sb font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_EUROPA_GRO_SB_LIGHT":{"name":"MB_OCR_FONT_EUROPA_GRO_SB_LIGHT","abstract":"

    Europa gro sb light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ANTONIO_REGULAR":{"name":"MB_OCR_FONT_ANTONIO_REGULAR","abstract":"

    Antonio regular font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_CORPORATE_LIGHT":{"name":"MB_OCR_FONT_CORPORATE_LIGHT","abstract":"

    Corporate S Light font","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_MICR":{"name":"MB_OCR_FONT_MICR","abstract":"

    MICR font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ARABIC_NILE":{"name":"MB_OCR_FONT_ARABIC_NILE","abstract":"

    Arabic font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNKNOWN":{"name":"MB_OCR_FONT_UNKNOWN","abstract":"

    Unknown font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_XITS_MATH":{"name":"MB_OCR_FONT_XITS_MATH","abstract":"

    XITS Math font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_ANY":{"name":"MB_OCR_FONT_ANY","abstract":"

    Any of the other listed fonts

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UNKNOWN_MATH":{"name":"MB_OCR_FONT_UNKNOWN_MATH","abstract":"

    Unknown math font

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_UKDL_LIGHT":{"name":"MB_OCR_FONT_UKDL_LIGHT","abstract":"

    Font found on UKDL licenses

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_COUNT":{"name":"MB_OCR_FONT_COUNT","abstract":"

    Must be last as it holds the number of available fonts

    ","parent_name":"MBOcrFont"},"Enums/MBOcrFont.html#/c:@E@MBOcrFont@MB_OCR_FONT_FE_SCHRIFT":{"name":"MB_OCR_FONT_FE_SCHRIFT","abstract":"

    German license plate font *

    ","parent_name":"MBOcrFont"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeUnknown":{"name":"MBMrtdTypeUnknown","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeIdentityCard":{"name":"MBMrtdTypeIdentityCard","abstract":"

    Identity card

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypePassport":{"name":"MBMrtdTypePassport","abstract":"

    Passport

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeVisa":{"name":"MBMrtdTypeVisa","abstract":"

    Visa

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdDocumentType.html#/c:@E@MBMrtdDocumentType@MBMrtdTypeGreenCard":{"name":"MBMrtdTypeGreenCard","abstract":"

    US Green Card

    ","parent_name":"MBMrtdDocumentType"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd1":{"name":"MBMrtdSpecificationTd1","abstract":"

    Preset for detecting TD1 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd2":{"name":"MBMrtdSpecificationTd2","abstract":"

    Preset for detecting TD2 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBMrtdSpecificationPreset.html#/c:@E@MBMrtdSpecificationPreset@MBMrtdSpecificationTd3":{"name":"MBMrtdSpecificationTd3","abstract":"

    Preset for detecting TD3 cards

    ","parent_name":"MBMrtdSpecificationPreset"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationUp":{"name":"MBProcessingOrientationUp","abstract":"

    Text oriented same as picture

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationRight":{"name":"MBProcessingOrientationRight","abstract":"

    Text is rotated 90 degrees clockwise

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationDown":{"name":"MBProcessingOrientationDown","abstract":"

    Text is upside down

    ","parent_name":"MBProcessingOrientation"},"Enums/MBProcessingOrientation.html#/c:@E@MBProcessingOrientation@MBProcessingOrientationLeft":{"name":"MBProcessingOrientationLeft","abstract":"

    Text is rotated 90 degrees counterclockwise

    ","parent_name":"MBProcessingOrientation"},"Enums/MBDocumentVerificationHighResImageState.html#/c:@E@MBDocumentVerificationHighResImageState@MBDocumentVerificationHighResImageStateFrontSide":{"name":"MBDocumentVerificationHighResImageStateFrontSide","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationHighResImageState"},"Enums/MBDocumentVerificationHighResImageState.html#/c:@E@MBDocumentVerificationHighResImageState@MBDocumentVerificationHighResImageStateBackSideSide":{"name":"MBDocumentVerificationHighResImageStateBackSideSide","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationHighResImageState"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypeTD1":{"name":"MBDocumentFaceDetectorTypeTD1","abstract":"

    Uses document detector for TD1 size identity cards

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypeTD2":{"name":"MBDocumentFaceDetectorTypeTD2","abstract":"

    Uses document detector for TD2 size identity cards

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDocumentFaceDetectorType.html#/c:@E@MBDocumentFaceDetectorType@MBDocumentFaceDetectorTypePassportsAndVisas":{"name":"MBDocumentFaceDetectorTypePassportsAndVisas","abstract":"

    Uses MRTD detector for detecting documents with MRZ

    ","parent_name":"MBDocumentFaceDetectorType"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusSuccess":{"name":"MBDetectionStatusSuccess","abstract":"

    Object was successfuly detected.

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusFail":{"name":"MBDetectionStatusFail","abstract":"

    Object was not detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraTooHigh":{"name":"MBDetectionStatusCameraTooHigh","abstract":"

    Object was successfully detected, but the camera was too far above the object for processing

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraAtAngle":{"name":"MBDetectionStatusCameraAtAngle","abstract":"

    Object was successfully detected, but the perspective angle of camera is too high

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraRotated":{"name":"MBDetectionStatusCameraRotated","abstract":"

    Object was successfully detected, but the object is rotated and not aligned to the camera edges

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusQRSuccess":{"name":"MBDetectionStatusQRSuccess","abstract":"

    QR code was successfully detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusPdf417Success":{"name":"MBDetectionStatusPdf417Success","abstract":"

    PDF417 barcode was successfully detected

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusFallbackSuccess":{"name":"MBDetectionStatusFallbackSuccess","abstract":"

    Object was successfully detected using a fallback algorithm

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusPartialForm":{"name":"MBDetectionStatusPartialForm","abstract":"

    Object was detected, but is only partially visible on screen

    ","parent_name":"MBDetectionStatus"},"Enums/MBDetectionStatus.html#/c:@E@MBDetectionStatus@MBDetectionStatusCameraTooNear":{"name":"MBDetectionStatusCameraTooNear","abstract":"

    Object was successfully detected, but the camera is too near to the object for processing

    ","parent_name":"MBDetectionStatus"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultNotPerformed":{"name":"MBDataMatchResultNotPerformed","abstract":"

    Data matching has not been performed.

    ","parent_name":"MBDataMatchResult"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultFailed":{"name":"MBDataMatchResultFailed","abstract":"

    Data does not match.

    ","parent_name":"MBDataMatchResult"},"Enums/MBDataMatchResult.html#/c:@E@MBDataMatchResult@MBDataMatchResultSuccess":{"name":"MBDataMatchResultSuccess","abstract":"

    Data match.

    ","parent_name":"MBDataMatchResult"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionNone":{"name":"MBCameraAutofocusRestrictionNone","abstract":"

    Default. Indicates that the autofocus system should not restrict the focus range.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionNear":{"name":"MBCameraAutofocusRestrictionNear","abstract":"

    Indicates that the autofocus system should restrict the focus range for subject matter that is near to the camera.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraAutofocusRestriction.html#/c:@E@MBCameraAutofocusRestriction@MBCameraAutofocusRestrictionFar":{"name":"MBCameraAutofocusRestrictionFar","abstract":"

    Indicates that the autofocus system should restrict the focus range for subject matter that is far from the camera.

    ","parent_name":"MBCameraAutofocusRestriction"},"Enums/MBCameraType.html#/c:@E@MBCameraType@MBCameraTypeBack":{"name":"MBCameraTypeBack","abstract":"

    Back facing camera

    ","parent_name":"MBCameraType"},"Enums/MBCameraType.html#/c:@E@MBCameraType@MBCameraTypeFront":{"name":"MBCameraTypeFront","abstract":"

    Front facing camera

    ","parent_name":"MBCameraType"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPreset480p":{"name":"MBCameraPreset480p","abstract":"

    480p video will always be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPreset720p":{"name":"MBCameraPreset720p","abstract":"

    720p video will always be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetOptimal":{"name":"MBCameraPresetOptimal","abstract":"

    The library will calculate optimal resolution based on the use case and device used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetMax":{"name":"MBCameraPresetMax","abstract":"

    Device’s maximal video resolution will be used.

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html#/c:@E@MBCameraPreset@MBCameraPresetPhoto":{"name":"MBCameraPresetPhoto","abstract":"

    Device’s photo preview resolution will be used

    ","parent_name":"MBCameraPreset"},"Enums/MBCameraPreset.html":{"name":"MBCameraPreset","abstract":"

    Camera resolution preset

    "},"Enums/MBCameraType.html":{"name":"MBCameraType","abstract":"

    Camera type

    "},"Enums/MBCameraAutofocusRestriction.html":{"name":"MBCameraAutofocusRestriction","abstract":"

    Camera autofocus restricion mode

    "},"Enums/MBDataMatchResult.html":{"name":"MBDataMatchResult","abstract":"

    Result of the data matching algorithm for scanned parts/sides of the document.

    "},"Enums/MBDetectionStatus.html":{"name":"MBDetectionStatus","abstract":"

    Status of the object detection in Microblink SDK

    "},"Enums/MBDocumentFaceDetectorType.html":{"name":"MBDocumentFaceDetectorType","abstract":"

    Enumeration of all supported document types for MBDocumentFaceRecognizer

    "},"Enums/MBDocumentVerificationHighResImageState.html":{"name":"MBDocumentVerificationHighResImageState","abstract":"

    Undocumented

    "},"Enums/MBProcessingOrientation.html":{"name":"MBProcessingOrientation","abstract":"

    Enum which describes text orientation on an image.

    "},"Enums/MBMrtdSpecificationPreset.html":{"name":"MBMrtdSpecificationPreset","abstract":"

    Presets which can be used to instantiate mrtd specification for a specific mrtd format

    "},"Enums/MBMrtdDocumentType.html":{"name":"MBMrtdDocumentType","abstract":"

    Supported MRTD document types

    "},"Enums/MBOcrFont.html":{"name":"MBOcrFont","abstract":"

    A list of fonts supported by BlinkOCR

    "},"Enums/MBProcessorResultState.html":{"name":"MBProcessorResultState","abstract":"

    Enumeration of posibble processor result state

    "},"Enums/MBRecognitionMode.html":{"name":"MBRecognitionMode","abstract":"

    Denotes the mode in which Recognizers performs recognition

    "},"Enums/MBFrameQualityEstimationMode.html":{"name":"MBFrameQualityEstimationMode","abstract":"

    Denotes the mode in which FrameQuality estimation works

    "},"Enums/MBRecognizerResultState.html":{"name":"MBRecognizerResultState","abstract":"

    Enumeration of posibble recognizer result state

    "},"Enums/MBUsdlKeys.html":{"name":"MBUsdlKeys","abstract":"

    Possible keys that can be used for obtaining USDL result elements.

    "},"Constants.html#/c:@MBIllegalModificationException":{"name":"MBIllegalModificationException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseKeyException":{"name":"MBInvalidLicenseKeyException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseeKeyException":{"name":"MBInvalidLicenseeKeyException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidLicenseResourceException":{"name":"MBInvalidLicenseResourceException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidBundleException":{"name":"MBInvalidBundleException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBMissingSettingsException":{"name":"MBMissingSettingsException","abstract":"

    Undocumented

    "},"Constants.html#/c:@MBInvalidArgumentException":{"name":"MBInvalidArgumentException","abstract":"

    Undocumented

    "},"Classes/MBVisaRecognizerResult.html#/c:objc(cs)MBVisaRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVisaRecognizerResult"},"Classes/MBVisaRecognizerResult.html#/c:objc(cs)MBVisaRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone.

    ","parent_name":"MBVisaRecognizerResult"},"Classes/MBVisaRecognizer.html#/c:objc(cs)MBVisaRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVisaRecognizer"},"Classes/MBVisaRecognizer.html#/c:objc(cs)MBVisaRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning VisaRecognizer

    ","parent_name":"MBVisaRecognizer"},"Classes/MBViewControllerFactory.html#/c:objc(cs)MBViewControllerFactory(cm)recognizerRunnerViewControllerWithOverlayViewController:":{"name":"+recognizerRunnerViewControllerWithOverlayViewController:","abstract":"

    Method creates a camera view controller which is responsible for displaying the","parent_name":"MBViewControllerFactory"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)address":{"name":"address","abstract":"

    The full address of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number of the United States driver license.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)sex":{"name":"sex","abstract":"

    TThe sex of the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)getField:":{"name":"-getField:","abstract":"

    Returns a string value for a given key.

    ","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizerResult.html#/c:objc(cs)MBUsdlRecognizerResult(im)optionalElements":{"name":"-optionalElements","abstract":"

    Array of elements that are not part of AAMVA standard and are specific to each US state.","parent_name":"MBUsdlRecognizerResult"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)result":{"name":"result","abstract":"

    USDL recognizer results

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlRecognizer.html#/c:objc(cs)MBUsdlRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBUsdlRecognizer"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)address":{"name":"address","abstract":"

    The full address of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number of the United States driver license.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)sex":{"name":"sex","abstract":"

    TThe sex of the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)getField:":{"name":"-getField:","abstract":"

    Returns a string value for a given key.

    ","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizerResult.html#/c:objc(cs)MBUsdlCombinedRecognizerResult(im)optionalElements":{"name":"-optionalElements","abstract":"

    Array of elements that are not part of AAMVA standard and are specific to each US state.","parent_name":"MBUsdlCombinedRecognizerResult"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning both sides of USDL

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)type":{"name":"type","abstract":"

    Type of document this recognizer will scan.

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBUsdlCombinedRecognizer.html#/c:objc(cs)MBUsdlCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBUsdlCombinedRecognizer"},"Classes/MBTemplatingRecognizerResult.html#/c:objc(cs)MBTemplatingRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingRecognizerResult"},"Classes/MBTemplatingRecognizerResult.html#/c:objc(cs)MBTemplatingRecognizerResult(py)templatingClass":{"name":"templatingClass","abstract":"

    Returns the MBTemplatingClass for recognized document. If classification failed,","parent_name":"MBTemplatingRecognizerResult"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)templatingResult":{"name":"templatingResult","abstract":"

    Templating recognizer result

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)useGlareDetector":{"name":"useGlareDetector","abstract":"

    Defines if glare detection should be turned on/off for Templating Recognizer.

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingRecognizer.html#/c:objc(cs)MBTemplatingRecognizer(py)templatingClasses":{"name":"templatingClasses","abstract":"

    Returns all available templating classes

    ","parent_name":"MBTemplatingRecognizer"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setClassificationProcessorGroups:":{"name":"-setClassificationProcessorGroups:","abstract":"

    Sets processor groups that will be executed before classification

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)getClassificationProcessorGroups":{"name":"-getClassificationProcessorGroups","abstract":"

    Returns the currently set array of classification processor groups.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setNonClassificationProcessorGroups:":{"name":"-setNonClassificationProcessorGroups:","abstract":"

    Sets processor groups that will be executed if MBTemplatingClassifier’s classify returns YES.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)getNonClassificationProcessorGroups":{"name":"-getNonClassificationProcessorGroups","abstract":"

    Returns the currently set array of non-classification processor groups.

    ","parent_name":"MBTemplatingClass"},"Classes/MBTemplatingClass.html#/c:objc(cs)MBTemplatingClass(im)setTemplatingClassifier:":{"name":"-setTemplatingClassifier:","abstract":"

    Sets the classifier which will tell whether currently processed document belongs to this class.","parent_name":"MBTemplatingClass"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Designated initializer

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBTapToFocusSubview.html#/c:objc(cs)MBTapToFocusSubview(im)willFocusAtPoint:":{"name":"-willFocusAtPoint:","abstract":"

    Undocumented

    ","parent_name":"MBTapToFocusSubview"},"Classes/MBSuccessFrameGrabberRecognizerResult.html#/c:objc(cs)MBSuccessFrameGrabberRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizerResult"},"Classes/MBSuccessFrameGrabberRecognizerResult.html#/c:objc(cs)MBSuccessFrameGrabberRecognizerResult(py)successFrame":{"name":"successFrame","abstract":"

    Success frame PPImage of successful frame

    ","parent_name":"MBSuccessFrameGrabberRecognizerResult"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(im)initWithRecognizer:":{"name":"-initWithRecognizer:","abstract":"

    Undocumented

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(py)result":{"name":"result","abstract":"

    SuccessFrameGrabber recognizer results

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSuccessFrameGrabberRecognizer.html#/c:objc(cs)MBSuccessFrameGrabberRecognizer(py)slaveRecognizer":{"name":"slaveRecognizer","abstract":"

    Slave recognizer that is wrapped with SuccessFrameGrabber

    ","parent_name":"MBSuccessFrameGrabberRecognizer"},"Classes/MBSubview.html#/c:objc(cs)MBSubview(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified on Overlay events

    ","parent_name":"MBSubview"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)debugRecognizerRunnerViewControllerDelegate":{"name":"debugRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)detectionRecognizerRunnerViewControllerDelegate":{"name":"detectionRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)ocrRecognizerRunnerViewControllerDelegate":{"name":"ocrRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)glareRecognizerRunnerViewControllerDelegate":{"name":"glareRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerViewControllerMetadataDelegates(py)firstSideFinishedRecognizerRunnerViewControllerDelegate":{"name":"firstSideFinishedRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerViewControllerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)debugRecognizerRunnerDelegate":{"name":"debugRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)detectionRecognizerRunnerDelegate":{"name":"detectionRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)ocrRecognizerRunnerDelegate":{"name":"ocrRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)glareRecognizerRunnerDelegate":{"name":"glareRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunnerMetadataDelegates.html#/c:objc(cs)MBRecognizerRunnerMetadataDelegates(py)firstSideFinishedRecognizerRunnerDelegate":{"name":"firstSideFinishedRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunnerMetadataDelegates"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)metadataDelegates":{"name":"metadataDelegates","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)scanningRecognizerRunnerDelegate":{"name":"scanningRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)imageProcessingRecognizerRunnerDelegate":{"name":"imageProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)stringProcessingRecognizerRunnerDelegate":{"name":"stringProcessingRecognizerRunnerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(py)coordinator":{"name":"coordinator","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)initWithRecognizerCollection:":{"name":"-initWithRecognizerCollection:","abstract":"

    Initializes the recognizer runner

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)resetState":{"name":"-resetState","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)resetState:":{"name":"-resetState:","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)cancelProcessing":{"name":"-cancelProcessing","abstract":"

    Cancels all dispatched, but not yet processed image processing requests issued with processImage.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)processImage:":{"name":"-processImage:","abstract":"

    Processes a MBImage object synchronously using current settings.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)processString:":{"name":"-processString:","abstract":"

    Processes a NSString object synchronously using current settings.","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerRunner.html#/c:objc(cs)MBRecognizerRunner(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Method which is used to apply MBSettings object given by currentSettings property

    ","parent_name":"MBRecognizerRunner"},"Classes/MBRecognizerResult.html#/c:objc(cs)MBRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerResult"},"Classes/MBRecognizerResult.html#/c:objc(cs)MBRecognizerResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerResult"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(im)initWithRecognizers:":{"name":"-initWithRecognizers:","abstract":"

    Undocumented

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)recognizerList":{"name":"recognizerList","abstract":"

    Contains MBRecognizer objects - each individual recognizer.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)allowMultipleResults":{"name":"allowMultipleResults","abstract":"

    If NO, recognizer chain will stop when finds first valid scan results and will return just it.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)partialRecognitionTimeout":{"name":"partialRecognitionTimeout","abstract":"

    Timeout interval in which the partial scanning results will be returned to the user.","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)recognitionMode":{"name":"recognitionMode","abstract":"

    Recognition mode.

    ","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizerCollection.html#/c:objc(cs)MBRecognizerCollection(py)frameQualityEstimationMode":{"name":"frameQualityEstimationMode","abstract":"

    Frame quality estimation mode. If frame quality estimation is on, some video frames will be skipped, if","parent_name":"MBRecognizerCollection"},"Classes/MBRecognizer.html#/c:objc(cs)MBRecognizer(py)baseResult":{"name":"baseResult","abstract":"

    Base recognizer result.

    ","parent_name":"MBRecognizer"},"Classes/MBRecognizer.html#/c:objc(cs)MBRecognizer(im)getOptimalHudOrientation":{"name":"-getOptimalHudOrientation","abstract":"

    Undocumented

    ","parent_name":"MBRecognizer"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)upperLeft":{"name":"upperLeft","abstract":"

    Upper left point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)upperRight":{"name":"upperRight","abstract":"

    Upper right point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)lowerLeft":{"name":"lowerLeft","abstract":"

    Lower left point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(py)lowerRight":{"name":"lowerRight","abstract":"

    Lower right point

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)initWithUpperLeft:upperRight:lowerLeft:lowerRight:":{"name":"-initWithUpperLeft:upperRight:lowerLeft:lowerRight:","abstract":"

    Designated initializer which initializes all four corners of the quadrangle

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)toPointsArray":{"name":"-toPointsArray","abstract":"

    Returns points of the quadrangle in array in the following order:

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)quadrangleWithTransformation:":{"name":"-quadrangleWithTransformation:","abstract":"

    Creates new quadrangle from this quadrangle, transformed by specified affine transformation.

    ","parent_name":"MBQuadrangle"},"Classes/MBQuadrangle.html#/c:objc(cs)MBQuadrangle(im)center":{"name":"-center","abstract":"

    Returns the center point of the Quadrangle

    ","parent_name":"MBQuadrangle"},"Classes/MBProcessorResult.html#/c:objc(cs)MBProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBProcessorResult"},"Classes/MBProcessorResult.html#/c:objc(cs)MBProcessorResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBProcessorResult"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(im)initWithProcessingLocation:dewarpPolicy:andProcessors:":{"name":"-initWithProcessingLocation:dewarpPolicy:andProcessors:","abstract":"

    Constructor for MBProcessorGroup.

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessorGroup.html#/c:objc(cs)MBProcessorGroup(py)processors":{"name":"processors","abstract":"

    Processors that are members of the processor group

    ","parent_name":"MBProcessorGroup"},"Classes/MBProcessor.html#/c:objc(cs)MBProcessor(py)baseResult":{"name":"baseResult","abstract":"

    Base processor result

    ","parent_name":"MBProcessor"},"Classes/MBPassportRecognizerResult.html#/c:objc(cs)MBPassportRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPassportRecognizerResult"},"Classes/MBPassportRecognizerResult.html#/c:objc(cs)MBPassportRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone.

    ","parent_name":"MBPassportRecognizerResult"},"Classes/MBPassportRecognizer.html#/c:objc(cs)MBPassportRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPassportRecognizer"},"Classes/MBPassportRecognizer.html#/c:objc(cs)MBPassportRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning PassportRecognizer

    ","parent_name":"MBPassportRecognizer"},"Classes/MBParserGroupProcessorResult.html#/c:objc(cs)MBParserGroupProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessorResult"},"Classes/MBParserGroupProcessorResult.html#/c:objc(cs)MBParserGroupProcessorResult(py)ocrLayout":{"name":"ocrLayout","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessorResult"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(im)initWithParsers:":{"name":"-initWithParsers:","abstract":"

    Undocumented

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)parsers":{"name":"parsers","abstract":"

    Getting array of readonly parsers

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)result":{"name":"result","abstract":"

    MBParserGroupProcessor processor result

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBParserGroupProcessor.html#/c:objc(cs)MBParserGroupProcessor(py)oneOptionalElementInGroupShouldBeValid":{"name":"oneOptionalElementInGroupShouldBeValid","abstract":"

    Set if one optional element should be valid

    ","parent_name":"MBParserGroupProcessor"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOverlayViewController"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(py)recognizerRunnerViewController":{"name":"recognizerRunnerViewController","abstract":"

    Overlay View’s delegate object. Responsible for sending messages to PhotoPay’s","parent_name":"MBOverlayViewController"},"Classes/MBOverlayViewController.html#/c:objc(cs)MBOverlayViewController(py)cameraPausedView":{"name":"cameraPausedView","abstract":"

    Label which is displayed on screen when camera is paused, but still exists on the screen.

    ","parent_name":"MBOverlayViewController"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(py)language":{"name":"language","abstract":"

    If default overlay contains textual information, text will be localized to this language

    ","parent_name":"MBOverlaySettings"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(py)cameraSettings":{"name":"cameraSettings","abstract":"

    Camera settings

    ","parent_name":"MBOverlaySettings"},"Classes/MBOverlaySettings.html#/c:objc(cs)MBOverlaySettings(im)init":{"name":"-init","abstract":"

    Initializes the object with default settings (see above for defaults).

    ","parent_name":"MBOverlaySettings"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ul":{"name":"ul","abstract":"

    Upper left corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ur":{"name":"ur","abstract":"

    Upper right corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)ll":{"name":"ll","abstract":"

    Lower left corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(py)lr":{"name":"lr","abstract":"

    Lower right corner

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)initWithUpperLeft:upperRight:lowerLeft:lowerRight:":{"name":"-initWithUpperLeft:upperRight:lowerLeft:lowerRight:","abstract":"

    Initializer

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)positionWithOffset:":{"name":"-positionWithOffset:","abstract":"

    Creates a position with offset to a current position. Offset is added.

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)rect":{"name":"-rect","abstract":"

    Helper method converting Position to CGRect

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)center":{"name":"-center","abstract":"

    Helper method calculating the center of the Position

    ","parent_name":"MBPosition"},"Classes/MBPosition.html#/c:objc(cs)MBPosition(im)height":{"name":"-height","abstract":"

    Helper method calculating the height of the position

    ","parent_name":"MBPosition"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)value":{"name":"value","abstract":"

    Unicode value of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)position":{"name":"position","abstract":"

    Position of the char on the image, in the coordinate system of the image

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)height":{"name":"height","abstract":"

    Height of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)uncertain":{"name":"uncertain","abstract":"

    YES if char is uncertain

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)quality":{"name":"quality","abstract":"

    Integer value representing OCR quality of the char

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(py)font":{"name":"font","abstract":"

    Font of the character

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOcrChar"},"Classes/MBOcrChar.html#/c:objc(cs)MBOcrChar(im)initWithValue:position:height:":{"name":"-initWithValue:position:height:","abstract":"

    Initializer for a char

    ","parent_name":"MBOcrChar"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(py)character":{"name":"character","abstract":"

    Character that was recognised

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(py)variants":{"name":"variants","abstract":"

    Alternative characters which are possible instead of this character.

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBCharWithVariants"},"Classes/MBCharWithVariants.html#/c:objc(cs)MBCharWithVariants(im)initWithValue:":{"name":"-initWithValue:","abstract":"

    Initializer for a CharWithVariant

    ","parent_name":"MBCharWithVariants"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(py)chars":{"name":"chars","abstract":"

    Ocr chars of the line

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(py)position":{"name":"position","abstract":"

    Position of the line on the image, in the coordinate system of the image

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)initWithOcrChars:position:":{"name":"-initWithOcrChars:position:","abstract":"

    Initializer from chars

    ","parent_name":"MBOcrLine"},"Classes/MBOcrLine.html#/c:objc(cs)MBOcrLine(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr line

    ","parent_name":"MBOcrLine"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(py)lines":{"name":"lines","abstract":"

    Ocr lines of the block

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(py)position":{"name":"position","abstract":"

    Position of the block on the image, in the coordinate system of the image

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)initWithOcrLines:position:":{"name":"-initWithOcrLines:position:","abstract":"

    Initializer from lines

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrBlock.html#/c:objc(cs)MBOcrBlock(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr block

    ","parent_name":"MBOcrBlock"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)box":{"name":"box","abstract":"

    Bounding box of the layout. Given in the coordinate system of the image on which OCR was performed.

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)blocks":{"name":"blocks","abstract":"

    Ocr blocks of the layout

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)transform":{"name":"transform","abstract":"

    Tranformation matrix which transforms the coordinate system in which the OCR layout is given","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)transformInvalid":{"name":"transformInvalid","abstract":"

    YES if transform is not valid (e.g, there’s no UI to which it can be calculated. NO otherwise.

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)position":{"name":"position","abstract":"

    Position of layout on the image, in the coordinate system of the image

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(py)flipped":{"name":"flipped","abstract":"

    OCR layout was recognized from flipped image

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)initWithOcrBlocks:transform:box:flipped:":{"name":"-initWithOcrBlocks:transform:box:flipped:","abstract":"

    Initializer from blocks and transformation

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)initWithOcrBlocks:":{"name":"-initWithOcrBlocks:","abstract":"

    Initializer from blocks

    ","parent_name":"MBOcrLayout"},"Classes/MBOcrLayout.html#/c:objc(cs)MBOcrLayout(im)string":{"name":"-string","abstract":"

    Helper method which returna a simple string representation of the ocr layout

    ","parent_name":"MBOcrLayout"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default max allowed dewarp height used when using default constructor.

    ","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(im)initWithMaxAllowedDewarpHeight:":{"name":"-initWithMaxAllowedDewarpHeight:","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBNoUpScalingDewarpPolicy.html#/c:objc(cs)MBNoUpScalingDewarpPolicy(py)maxAllowedDewarpHeight":{"name":"maxAllowedDewarpHeight","abstract":"

    Returns the max allowed dewarp height as specified by this policy.

    ","parent_name":"MBNoUpScalingDewarpPolicy"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentType":{"name":"documentType","abstract":"

    Returns the MRTD document type of recognized document.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)primaryID":{"name":"primaryID","abstract":"

    Returns the primary indentifier. If there is more than one component, they are separated with space.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)secondaryID":{"name":"secondaryID","abstract":"

    Returns the secondary identifier. If there is more than one component, they are separated with space.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)issuer":{"name":"issuer","abstract":"

    Returns three-letter or two-letter code which indicate the issuing State. Three-letter codes are based","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    Returns holder’s date of birth

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentNumber":{"name":"documentNumber","abstract":"

    Returns document number. Document number contains up to 9 characters.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)nationality":{"name":"nationality","abstract":"

    Returns nationality of the holder represented by a three-letter or two-letter code. Three-letter","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)gender":{"name":"gender","abstract":"

    Returns gender of the card holder. Gender is specified by use of the single initial, capital letter F for female,","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)documentCode":{"name":"documentCode","abstract":"

    Returns document code. Document code contains two characters. For MRTD the first character shall","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    Returns date of expiry

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)opt1":{"name":"opt1","abstract":"

    Returns first optional data. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)opt2":{"name":"opt2","abstract":"

    Returns second optional data. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)alienNumber":{"name":"alienNumber","abstract":"

    Returns alien number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)applicationReceiptNumber":{"name":"applicationReceiptNumber","abstract":"

    Returns application receipt number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)immigrantCaseNumber":{"name":"immigrantCaseNumber","abstract":"

    Returns immigrant case number. Returns empty string if not available.","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)mrzText":{"name":"mrzText","abstract":"

    Returns the entire Machine Readable Zone text from ID. This text is usually used for parsing","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)isParsed":{"name":"isParsed","abstract":"

    Returns true if Machine Readable Zone has been parsed, false otherwise.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)isVerified":{"name":"isVerified","abstract":"

    Returns true if all check digits inside MRZ are correct, false otherwise.

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedOpt1":{"name":"sanitizedOpt1","abstract":"

    Sanitized field opt1

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedOpt2":{"name":"sanitizedOpt2","abstract":"

    Sanitized field opt2

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedNationality":{"name":"sanitizedNationality","abstract":"

    Sanitized field nationality

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedIssuer":{"name":"sanitizedIssuer","abstract":"

    Sanitized field issuer

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedDocumentCode":{"name":"sanitizedDocumentCode","abstract":"

    Sanitized document code

    ","parent_name":"MBMrzResult"},"Classes/MBMrzResult.html#/c:objc(cs)MBMrzResult(py)sanitizedDocumentNumber":{"name":"sanitizedDocumentNumber","abstract":"

    Sanitized document number

    ","parent_name":"MBMrzResult"},"Classes/MBMrtdSpecification.html#/c:objc(cs)MBMrtdSpecification(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdSpecification"},"Classes/MBMrtdSpecification.html#/c:objc(cs)MBMrtdSpecification(cm)createFromPreset:":{"name":"+createFromPreset:","abstract":"

    Factory method which creates MRTD specification based on a preset

    ","parent_name":"MBMrtdSpecification"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    Returns the Data extracted from the machine readable zone.

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizerResult.html#/c:objc(cs)MBMrtdRecognizerResult(py)rawOcrLayout":{"name":"rawOcrLayout","abstract":"

    Raw OCR layout from which the MRTD data was parsed.

    ","parent_name":"MBMrtdRecognizerResult"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)result":{"name":"result","abstract":"

    Detector recognizer results

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowUnparsedResults":{"name":"allowUnparsedResults","abstract":"

    Whether returning of unparsed results is allowed

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowUnverifiedResults":{"name":"allowUnverifiedResults","abstract":"

    Whether returning of unverified results is allowed","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)allowSpecialCharacters":{"name":"allowSpecialCharacters","abstract":"

    Whether special characters are allowed

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)mrtdSpecifications":{"name":"mrtdSpecifications","abstract":"

    Get the mrtd specifications.

    ","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdRecognizer.html#/c:objc(cs)MBMrtdRecognizer(py)mrzFilterDelegate":{"name":"mrzFilterDelegate","abstract":"

    Filter for MRTDs (Machine Readable Travel Documents) that is used to determine which documents","parent_name":"MBMrtdRecognizer"},"Classes/MBMrtdCombinedRecognizerResult.html#/c:objc(cs)MBMrtdCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdCombinedRecognizerResult"},"Classes/MBMrtdCombinedRecognizerResult.html#/c:objc(cs)MBMrtdCombinedRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    Returns the Data extracted from the machine readable zone.

    ","parent_name":"MBMrtdCombinedRecognizerResult"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)result":{"name":"result","abstract":"

    Mrtd Combined recognizer result

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowUnparsedResults":{"name":"allowUnparsedResults","abstract":"

    Whether returning of unparsed results is allowed

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowUnverifiedResults":{"name":"allowUnverifiedResults","abstract":"

    Whether returning of unverified results is allowed","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)allowSpecialCharacters":{"name":"allowSpecialCharacters","abstract":"

    Whether special characters are allowed

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMrtdCombinedRecognizer.html#/c:objc(cs)MBMrtdCombinedRecognizer(py)detectorType":{"name":"detectorType","abstract":"

    Type of document this recognizer will scan.

    ","parent_name":"MBMrtdCombinedRecognizer"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)sharedInstance":{"name":"+sharedInstance","abstract":"

    Undocumented

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(py)showLicenseKeyTimeLimitedWarning":{"name":"showLicenseKeyTimeLimitedWarning","abstract":"

    If YES, tooltip limited license key warning messages will appear on screen

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(py)resourcesBundle":{"name":"resourcesBundle","abstract":"

    Bundle in which the resources for the scanning process should be found. Usually, by default, this","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseBuffer:":{"name":"-setLicenseBuffer:","abstract":"

    Set license buffer and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseBuffer:andLicensee:":{"name":"-setLicenseBuffer:andLicensee:","abstract":"

    Set license buffer and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseKey:":{"name":"-setLicenseKey:","abstract":"

    Set license key and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseKey:andLicensee:":{"name":"-setLicenseKey:andLicensee:","abstract":"

    Set license key and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseResource:withExtension:inSubdirectory:forBundle:":{"name":"-setLicenseResource:withExtension:inSubdirectory:forBundle:","abstract":"

    Set the license file and unlock the SDK. Application package will be used to validate the license.

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(im)setLicenseResource:withExtension:inSubdirectory:forBundle:andLicensee:":{"name":"-setLicenseResource:withExtension:inSubdirectory:forBundle:andLicensee:","abstract":"

    Set the license file and unlock the SDK. Also define licensee that will be used to validate the license.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)buildVersionString":{"name":"+buildVersionString","abstract":"

    Returns the string that contains the library build version

    ","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkSDK.html#/c:objc(cs)MBMicroblinkSDK(cm)isScanningUnsupportedForCameraType:error:":{"name":"+isScanningUnsupportedForCameraType:error:","abstract":"

    This method returns true when scanning is unsupported on a specific device.","parent_name":"MBMicroblinkSDK"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(py)language":{"name":"language","abstract":"

    Undocumented

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(py)resourcesBundle":{"name":"resourcesBundle","abstract":"

    Bundle with resources used in framework

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(cm)instance":{"name":"+instance","abstract":"

    Obtain the shared instance

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)init":{"name":"-init","abstract":"

    Designated initializer

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)setDefaultLanguage":{"name":"-setDefaultLanguage","abstract":"

    Sets the language to default (i.e. language specified in the user’s device settings

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)pushStatusBarStyle:":{"name":"-pushStatusBarStyle:","abstract":"

    Pushes the UIApplication status bar style to a internally handled stack

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)popStatusBarStyle":{"name":"-popStatusBarStyle","abstract":"

    Returns the status bar style to the last saved value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)pushStatusBarHidden:":{"name":"-pushStatusBarHidden:","abstract":"

    Push the status bar hidden value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)popStatusBarHidden":{"name":"-popStatusBarHidden","abstract":"

    pops the status bar hidden value

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)setHelpShown:":{"name":"-setHelpShown:","abstract":"

    Sets the key that the help was shown to true

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(im)isHelpShown":{"name":"-isHelpShown","abstract":"

    Returns true if the help was already shown

    ","parent_name":"MBMicroblinkApp"},"Classes/MBMicroblinkApp.html#/c:objc(cs)MBMicroblinkApp(cm)getDefaultResourcesBundle":{"name":"+getDefaultResourcesBundle","abstract":"

    Returns the default resources bundle. If it doesn’t exist, it will be nil.

    ","parent_name":"MBMicroblinkApp"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(py)rawImage":{"name":"rawImage","abstract":"

    Returns the raw image saved by the processor. If no image was saved by processor, returns null.","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessorResult.html#/c:objc(cs)MBImageReturnProcessorResult(py)encodedImage":{"name":"encodedImage","abstract":"

    JPEG-encoded image or nil, depending on whether image encoding was enabled.

    ","parent_name":"MBImageReturnProcessorResult"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBImageReturnProcessor"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(py)result":{"name":"result","abstract":"

    MBImageReturnProcessor processor result

    ","parent_name":"MBImageReturnProcessor"},"Classes/MBImageReturnProcessor.html#/c:objc(cs)MBImageReturnProcessor(py)encodeImage":{"name":"encodeImage","abstract":"

    Defines whether saved image will also be encoded as JPEG. This is false by default, which","parent_name":"MBImageReturnProcessor"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)image":{"name":"image","abstract":"

    UIImage of wrapped image.","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)roi":{"name":"roi","abstract":"

    Region of the image used for scanning, where the whole image is specified with CGRectMake(0.0, 0.0, 1.0, 1.0).

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)orientation":{"name":"orientation","abstract":"

    Processing orientation of image. This is used in OCR where you can specify character orientation.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)mirroredHorizontally":{"name":"mirroredHorizontally","abstract":"

    Tells whether camera input images should be mirrored horizontally before processing

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)mirroredVertically":{"name":"mirroredVertically","abstract":"

    Tells whether camera input images should be mirrored vertically before processing

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)estimateFrameQuality":{"name":"estimateFrameQuality","abstract":"

    If YES, the image will prior to processing go through frame quality estimation phase, which might discard the frame

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(py)cameraFrame":{"name":"cameraFrame","abstract":"

    Property which tells if this frame is a camera or a single photo frame.","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithUIImage:":{"name":"+imageWithUIImage:","abstract":"

    Creates PPImage around UIImage.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithCmSampleBuffer:":{"name":"+imageWithCmSampleBuffer:","abstract":"

    Creates MBImage around CVImageBufferRef.

    ","parent_name":"MBImage"},"Classes/MBImage.html#/c:objc(cs)MBImage(cm)imageWithCvPixelBuffer:":{"name":"+imageWithCvPixelBuffer:","abstract":"

    Creates MBImage around CVPixelBufferRef.

    ","parent_name":"MBImage"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(py)label":{"name":"label","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBGlareStatusSubview.html#/c:objc(cs)MBGlareStatusSubview(im)glareDetectionFinishedWithResult:":{"name":"-glareDetectionFinishedWithResult:","abstract":"

    Undocumented

    ","parent_name":"MBGlareStatusSubview"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(im)initWithFrameGrabberDelegate:":{"name":"-initWithFrameGrabberDelegate:","abstract":"

    Undocumented

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(py)grabFocusedFrames":{"name":"grabFocusedFrames","abstract":"

    Allow sending focused camera frames to MBFrameGrabberRecognizerDelegate.

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFrameGrabberRecognizer.html#/c:objc(cs)MBFrameGrabberRecognizer(py)grabUnfocusedFrames":{"name":"grabUnfocusedFrames","abstract":"

    Allow sending unfocused camera frames to MBFrameGrabberRecognizerDelegate.

    ","parent_name":"MBFrameGrabberRecognizer"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default dewarp height value used when using default constructor.

    ","parent_name":"MBFixedDewarpPolicy"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(im)initWithDewarpHeight:":{"name":"-initWithDewarpHeight:","parent_name":"MBFixedDewarpPolicy"},"Classes/MBFixedDewarpPolicy.html#/c:objc(cs)MBFixedDewarpPolicy(py)dewarpHeight":{"name":"dewarpHeight","abstract":"

    Returns the desired dewarp height (in pixels) as specified by this policy.

    ","parent_name":"MBFixedDewarpPolicy"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)restrictions":{"name":"restrictions","abstract":"

    The restrictions to driving privileges for the United States driver license owner.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)endorsements":{"name":"endorsements","abstract":"

    The additional privileges granted to the United States driver license owner.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDriverLicenseDetailedInfo.html#/c:objc(cs)MBDriverLicenseDetailedInfo(py)vehicleClass":{"name":"vehicleClass","abstract":"

    The type of vehicle the driver license owner has privilege to drive.

    ","parent_name":"MBDriverLicenseDetailedInfo"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsLayer":{"name":"dotsLayer","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsColor":{"name":"dotsColor","abstract":"

    Color of the dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsStrokeWidth":{"name":"dotsStrokeWidth","abstract":"

    Width of the dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)dotsRadius":{"name":"dotsRadius","abstract":"

    Radius of dots

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(py)animationDuration":{"name":"animationDuration","abstract":"

    Duration of the animation

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Initializes the layer

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsSubview.html#/c:objc(cs)MBDotsSubview(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDotsSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)foregroundColor":{"name":"foregroundColor","abstract":"

    Foreground color of dots.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)tintColor":{"name":"tintColor","abstract":"

    Border and shadow color of dots.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)shouldIgnoreFastResults":{"name":"shouldIgnoreFastResults","abstract":"

    If set YES, dots will not redraw until the animation is finished. This will make animation look much smoother on fast results.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)charFadeInDuration":{"name":"charFadeInDuration","abstract":"

    Duration of fade animation for each dot.

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDotsResultSubview.html#/c:objc(cs)MBDotsResultSubview(py)dotCount":{"name":"dotCount","abstract":"

    Maximum number of dots shown on screen. This count has to be in range [20,50].

    ","parent_name":"MBDotsResultSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)helpLabel":{"name":"helpLabel","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)helpImageView":{"name":"helpImageView","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(im)animateHelp":{"name":"-animateHelp","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationSubview.html#/c:objc(cs)MBDocumentVerificationSubview(py)documentVerificationSubviewDelegate":{"name":"documentVerificationSubviewDelegate","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationSubview"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlayViewController.html#/c:objc(cs)MBDocumentVerificationOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBDocumentVerificationOverlayViewController"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideInstructions":{"name":"firstSideInstructions","abstract":"

    Returns/sets user instructions that are shown above camera preview while the first side of the","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideInstructions":{"name":"secondSideInstructions","abstract":"

    Returns/sets user instructions that are shown above camera preview while the second side of the","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideSplashMessage":{"name":"firstSideSplashMessage","abstract":"

    Returns/sets splash message that is shown before scanning the first side of the document,","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideSplashMessage":{"name":"secondSideSplashMessage","abstract":"

    Returns/sets splash message that is shown before scanning the second side of the document,","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)scanningDoneSplashMessage":{"name":"scanningDoneSplashMessage","abstract":"

    Returns/sets splash message that is shown after scanning the document.

    ","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)glareMessage":{"name":"glareMessage","abstract":"

    Returns/sets glare status message that is shown if glare detection is turned on","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideSplashImage":{"name":"firstSideSplashImage","abstract":"

    Returns/sets splash image which is shown below splash message, before scanning the first side of","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideSplashImage":{"name":"secondSideSplashImage","abstract":"

    Returns/sets splash image which is shown below splash message, before scanning the second side of","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)firstSideInstructionsImage":{"name":"firstSideInstructionsImage","abstract":"

    Returns image that is shown above camera preview, next to the user instructions message, while","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)secondSideInstructionsImage":{"name":"secondSideInstructionsImage","abstract":"

    Returns image that is shown above camera preview, next to the user instructions message, while","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationOverlaySettings.html#/c:objc(cs)MBDocumentVerificationOverlaySettings(py)captureHighResImage":{"name":"captureHighResImage","abstract":"

    Gets/sets capturing of high resolution image

    ","parent_name":"MBDocumentVerificationOverlaySettings"},"Classes/MBDocumentVerificationInstructionsSubview.html#/c:objc(cs)MBDocumentVerificationInstructionsSubview(py)instructionsLabel":{"name":"instructionsLabel","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationInstructionsSubview"},"Classes/MBDocumentVerificationInstructionsSubview.html#/c:objc(cs)MBDocumentVerificationInstructionsSubview(py)instructionsImageView":{"name":"instructionsImageView","abstract":"

    Undocumented

    ","parent_name":"MBDocumentVerificationInstructionsSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)viewfinderView":{"name":"viewfinderView","abstract":"

    Default implementation draws a rectangle with aspect ratio of viewfinderAspectRatio,","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)viewfinderWidthToHeightRatio":{"name":"viewfinderWidthToHeightRatio","abstract":"

    Default aspect ratio of the viewfinder, calculated as width / height.

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(py)tooltipLabel":{"name":"tooltipLabel","abstract":"

    Label displayed below the viewfinder view.

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(im)initWithFrame:":{"name":"-initWithFrame:","abstract":"

    Initialize the overlay subview with a given frame

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentSubview.html#/c:objc(cs)MBDocumentSubview(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Initialize the overlay subview with a given coder

    ","parent_name":"MBDocumentSubview"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlayViewController.html#/c:objc(cs)MBDocumentOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBDocumentOverlayViewController"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)tooltipText":{"name":"tooltipText","abstract":"

    Gets/sets tootlip text that is defines under document view finder.

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)glareStatusMessage":{"name":"glareStatusMessage","abstract":"

    Returns/sets glare status message that is shown if glare detection is turned on","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)showTooltip":{"name":"showTooltip","abstract":"

    Gets/sets tooltip visibility

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)captureHighResImage":{"name":"captureHighResImage","abstract":"

    Gets/sets capturing of high resolution image

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(py)documentLocation":{"name":"documentLocation","abstract":"

    Quadrangle represeting corner points of the document within the input image.

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizerResult.html#/c:objc(cs)MBDocumentFaceRecognizerResult(py)faceLocation":{"name":"faceLocation","abstract":"

    Quadrangle represeting corner points of the face image within the input image.

    ","parent_name":"MBDocumentFaceRecognizerResult"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning Document Face Recognizer

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)detectorType":{"name":"detectorType","abstract":"

    Type of docment this recognizer will scan.

    ","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDocumentFaceRecognizer.html#/c:objc(cs)MBDocumentFaceRecognizer(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBDocumentFaceRecognizer"},"Classes/MBDisplayableQuadDetection.html#/c:objc(cs)MBDisplayableQuadDetection(py)detectionLocation":{"name":"detectionLocation","abstract":"

    Exact location of detected object on image.","parent_name":"MBDisplayableQuadDetection"},"Classes/MBDisplayablePointsDetection.html#/c:objc(cs)MBDisplayablePointsDetection(py)points":{"name":"points","abstract":"

    Coordinates of points (CGPoint) of a detected object.

    ","parent_name":"MBDisplayablePointsDetection"},"Classes/MBDisplayableObject.html#/c:objc(cs)MBDisplayableObject(py)transform":{"name":"transform","abstract":"

    Tranformation matrix which transforms the coordinate system in which the OCR layout is given","parent_name":"MBDisplayableObject"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(im)initWithDetectionStatus:":{"name":"-initWithDetectionStatus:","abstract":"

    Initializes the displayable detection with matrix

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(im)init":{"name":"-init","abstract":"

    Please use designated initializer.

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDisplayableDetection.html#/c:objc(cs)MBDisplayableDetection(py)detectionStatus":{"name":"detectionStatus","abstract":"

    Detection status which describes the status of detection

    ","parent_name":"MBDisplayableDetection"},"Classes/MBDewarpPolicy.html#/c:objc(cs)MBDewarpPolicy(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDewarpPolicy"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(im)initWithDay:month:year:originalDateString:":{"name":"-initWithDay:month:year:originalDateString:","abstract":"

    Designated initializer

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)originalDateString":{"name":"originalDateString","abstract":"

    The original string used to create the date result

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)date":{"name":"date","abstract":"

    NSDate object which represents the same date as this result

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)day":{"name":"day","abstract":"

    Day in month.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)month":{"name":"month","abstract":"

    Month in year.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(py)year":{"name":"year","abstract":"

    Year of the current date.

    ","parent_name":"MBDateResult"},"Classes/MBDateResult.html#/c:objc(cs)MBDateResult(cm)dateResultWithDay:month:year:originalDateString:":{"name":"+dateResultWithDay:month:year:originalDateString:","abstract":"

    Factory method

    ","parent_name":"MBDateResult"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(im)init":{"name":"-init","abstract":"

    Default DPI that will be used with default constructor.

    ","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(im)initWithDesiredDPI:":{"name":"-initWithDesiredDPI:","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBDPIBasedDewarpPolicy.html#/c:objc(cs)MBDPIBasedDewarpPolicy(py)desiredDPI":{"name":"desiredDPI","abstract":"

    Returns the desired DPI as defined by this policy.

    ","parent_name":"MBDPIBasedDewarpPolicy"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)recognizerCollection":{"name":"recognizerCollection","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)cameraSettings":{"name":"cameraSettings","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)metadataDelegates":{"name":"metadataDelegates","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)scanningRecognizerRunnerViewControllerDelegate":{"name":"scanningRecognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)recognizerRunnerViewControllerDelegate":{"name":"recognizerRunnerViewControllerDelegate","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)init":{"name":"-init","abstract":"

    Convenience initializer used for use cases when overlay view controller is instantiated from storyboard.","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)initWithRecognizerCollection:cameraSettings:":{"name":"-initWithRecognizerCollection:cameraSettings:","abstract":"

    Undocumented

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)scanningRegion":{"name":"scanningRegion","abstract":"

    Scanning region","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)autorotateOverlay":{"name":"autorotateOverlay","abstract":"

    If YES, Overlay View Controller will be autorotated independently of ScanningViewController.

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)showStatusBar":{"name":"showStatusBar","abstract":"

    If YES, default camera overlay will display Status bar.","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    Default: UIInterfaceOrientationMaskPortrait

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCustomOverlayViewController.html#/c:objc(cs)MBCustomOverlayViewController(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan.

    ","parent_name":"MBCustomOverlayViewController"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraPreset":{"name":"cameraPreset","abstract":"

    Camera preset. With this property you can set the resolution of the camera

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraType":{"name":"cameraType","abstract":"

    Camera type. You can choose between front and back facing.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)autofocusInterval":{"name":"autofocusInterval","abstract":"

    Interval between forcing two camera focuses. If <= 0, forced focuses arent performed","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraAutofocusRestriction":{"name":"cameraAutofocusRestriction","abstract":"

    Range restriction for camera autofocus.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)videoGravity":{"name":"videoGravity","abstract":"

    Gravity of Camera preview on screen.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)focusPoint":{"name":"focusPoint","abstract":"

    Point against which the autofocus will be performed

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraMirroredHorizontally":{"name":"cameraMirroredHorizontally","abstract":"

    Tells whether camera input images should be mirrored horizontally before processing

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(py)cameraMirroredVertically":{"name":"cameraMirroredVertically","abstract":"

    Tells whether camera input images should be mirrored vertically before processing

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)init":{"name":"-init","abstract":"

    Designated initializer. Initializes the object with default settings (see above for defaults)

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)calcSessionPreset":{"name":"-calcSessionPreset","abstract":"

    Returns an optimal AVFoundation session preset based on cameraPreset value.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraSettings.html#/c:objc(cs)MBCameraSettings(im)calcAutofocusRangeRestriction":{"name":"-calcAutofocusRangeRestriction","abstract":"

    Returns an optimal AVFoundation autofocus range restriction value based on cameraAutofocusRestriction.

    ","parent_name":"MBCameraSettings"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isAnimating":{"name":"isAnimating","abstract":"

    Whether the reticle is currently animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isDetecting":{"name":"isDetecting","abstract":"

    Whether the reticle is currently detecting.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(py)isConfirming":{"name":"isConfirming","abstract":"

    Whether the reticle is currently confirming.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startAnimating":{"name":"-startAnimating","abstract":"

    Starts animating the reticle. Does nothing if the reticle is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopAnimating":{"name":"-stopAnimating","abstract":"

    Stops animating the reticle. Does nothing if the reticle is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startDetecting":{"name":"-startDetecting","abstract":"

    Starts animating the detection spinner. Does nothing if the detection is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopDetecting":{"name":"-stopDetecting","abstract":"

    Stops animating the detection spinner. Does nothing if the detection is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)startConfirming":{"name":"-startConfirming","abstract":"

    Starts animating the confirmation expanding ring. Does nothing if the detection is already animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)stopConfirming":{"name":"-stopConfirming","abstract":"

    Stops animating the confirmation expanding ring. Does nothing if the detection is not animating.

    ","parent_name":"MBCameraReticle"},"Classes/MBCameraReticle.html#/c:objc(cs)MBCameraReticle(im)resetAll":{"name":"-resetAll","abstract":"

    Stops all animations and remove all layers to reset state to beginning

    ","parent_name":"MBCameraReticle"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)address":{"name":"address","abstract":"

    The address of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)sex":{"name":"sex","abstract":"

    The sex of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)additionalNameInformation":{"name":"additionalNameInformation","abstract":"

    The additional name information of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)additionalAddressInformation":{"name":"additionalAddressInformation","abstract":"

    The additional address information of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)placeOfBirth":{"name":"placeOfBirth","abstract":"

    The place of birth of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)nationality":{"name":"nationality","abstract":"

    The nationality of the documet owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)race":{"name":"race","abstract":"

    The race of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)religion":{"name":"religion","abstract":"

    The religion of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)profession":{"name":"profession","abstract":"

    The profession of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)maritalStatus":{"name":"maritalStatus","abstract":"

    The marital status of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)residentialStatus":{"name":"residentialStatus","abstract":"

    The residential stauts of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)employer":{"name":"employer","abstract":"

    The employer of the document owner.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)personalIdNumber":{"name":"personalIdNumber","abstract":"

    The personal identification number.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)documentAdditionalNumber":{"name":"documentAdditionalNumber","abstract":"

    The additional number of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)issuingAuthority":{"name":"issuingAuthority","abstract":"

    The issuing authority of the document.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)driverLicenseDetailedInfo":{"name":"driverLicenseDetailedInfo","abstract":"

    The driver license detailed info.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizerResult.html#/c:objc(cs)MBBlinkIdRecognizerResult(py)conditions":{"name":"conditions","abstract":"

    The driver license conditions.

    ","parent_name":"MBBlinkIdRecognizerResult"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning BlinkIDRecognizer

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)dewarpedImageDelegate":{"name":"dewarpedImageDelegate","abstract":"

    Full document dewarped imagedelegate

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)classifierDelegate":{"name":"classifierDelegate","abstract":"

    Document not supported classifier delegate

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdRecognizer.html#/c:objc(cs)MBBlinkIdRecognizer(py)allowBlurFilter":{"name":"allowBlurFilter","abstract":"

    Defines whether blured frames filtering is allowed

    ","parent_name":"MBBlinkIdRecognizer"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common BlinkId UI settings

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlayViewController.html#/c:objc(cs)MBBlinkIdOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBBlinkIdOverlayViewController"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)requireDocumentSidesDataMatch":{"name":"requireDocumentSidesDataMatch","abstract":"

    If YES, MBBlinkIdCombinedRecognizer will check if sides do match when scanning is finished

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)showNotSupportedDialog":{"name":"showNotSupportedDialog","abstract":"

    Defines whether Document Not Supported dialog will be displayed in UI.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(py)backSideScanningTimeout":{"name":"backSideScanningTimeout","abstract":"

    Option to configure back side scanning timeout.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdOverlaySettings.html#/c:objc(cs)MBBlinkIdOverlaySettings(im)init":{"name":"-init","abstract":"

    Designated initializer. Initializes the object with default settings.

    ","parent_name":"MBBlinkIdOverlaySettings"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)address":{"name":"address","abstract":"

    The address of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfBirth":{"name":"dateOfBirth","abstract":"

    The date of birth of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfExpiry":{"name":"dateOfExpiry","abstract":"

    The date of expiry of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)dateOfIssue":{"name":"dateOfIssue","abstract":"

    The date of issue of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)documentNumber":{"name":"documentNumber","abstract":"

    The document number.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)firstName":{"name":"firstName","abstract":"

    The first name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)fullName":{"name":"fullName","abstract":"

    The full name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)lastName":{"name":"lastName","abstract":"

    The last name of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)sex":{"name":"sex","abstract":"

    The sex of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)additionalNameInformation":{"name":"additionalNameInformation","abstract":"

    The additional name information of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)additionalAddressInformation":{"name":"additionalAddressInformation","abstract":"

    The additional address information of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)placeOfBirth":{"name":"placeOfBirth","abstract":"

    The place of birth of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)nationality":{"name":"nationality","abstract":"

    The nationality of the documet owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)race":{"name":"race","abstract":"

    The race of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)religion":{"name":"religion","abstract":"

    The religion of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)profession":{"name":"profession","abstract":"

    The profession of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)maritalStatus":{"name":"maritalStatus","abstract":"

    The marital status of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)residentialStatus":{"name":"residentialStatus","abstract":"

    The residential stauts of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)employer":{"name":"employer","abstract":"

    The employer of the document owner.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)personalIdNumber":{"name":"personalIdNumber","abstract":"

    The personal identification number.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)documentAdditionalNumber":{"name":"documentAdditionalNumber","abstract":"

    The additional number of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)issuingAuthority":{"name":"issuingAuthority","abstract":"

    The issuing authority of the document.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)mrzResult":{"name":"mrzResult","abstract":"

    The data extracted from the machine readable zone

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)driverLicenseDetailedInfo":{"name":"driverLicenseDetailedInfo","abstract":"

    The driver license detailed info.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizerResult.html#/c:objc(cs)MBBlinkIdCombinedRecognizerResult(py)conditions":{"name":"conditions","abstract":"

    The driver license conditions.

    ","parent_name":"MBBlinkIdCombinedRecognizerResult"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)result":{"name":"result","abstract":"

    Result of scanning BlinkIDCombinedRecognizer

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)dewarpedImageDelegate":{"name":"dewarpedImageDelegate","abstract":"

    Full document dewarped imagedelegate

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)classifierDelegate":{"name":"classifierDelegate","abstract":"

    Document not supported classifier delegate

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBlinkIdCombinedRecognizer.html#/c:objc(cs)MBBlinkIdCombinedRecognizer(py)allowBlurFilter":{"name":"allowBlurFilter","abstract":"

    Defines whether blured frames filtering is allowed

    ","parent_name":"MBBlinkIdCombinedRecognizer"},"Classes/MBBaseOverlayViewController.html#/c:objc(cs)MBBaseOverlayViewController(im)reconfigureRecognizers:":{"name":"-reconfigureRecognizers:","abstract":"

    Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan.

    ","parent_name":"MBBaseOverlayViewController"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)autorotateOverlay":{"name":"autorotateOverlay","abstract":"

    If YES, Overlay View Controller will be autorotated independently of ScanningViewController.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)showStatusBar":{"name":"showStatusBar","abstract":"

    If YES, default camera overlay will display Status bar.","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)supportedOrientations":{"name":"supportedOrientations","abstract":"

    Default: UIInterfaceOrientationMaskPortrait

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)soundFilePath":{"name":"soundFilePath","abstract":"

    Full path to the sound file which is played when the valid result is scanned.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)displayCancelButton":{"name":"displayCancelButton","abstract":"

    Default: YES.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOverlaySettings.html#/c:objc(cs)MBBaseOverlaySettings(py)displayTorchButton":{"name":"displayTorchButton","abstract":"

    Default: YES.

    ","parent_name":"MBBaseOverlaySettings"},"Classes/MBBaseOcrOverlaySettings.html#/c:objc(cs)MBBaseOcrOverlaySettings(py)showOcrDots":{"name":"showOcrDots","abstract":"

    Property that enables showing of flashing dots over characters being scanned.

    ","parent_name":"MBBaseOcrOverlaySettings"},"Classes/MBBaseOcrOverlaySettings.html":{"name":"MBBaseOcrOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlaySettings.html":{"name":"MBBaseOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlayViewController.html":{"name":"MBBaseOverlayViewController","abstract":"

    Common base class for default overlay view controllers

    "},"Classes/MBBlinkIdCombinedRecognizer.html":{"name":"MBBlinkIdCombinedRecognizer","abstract":"

    Recognizer which can scan front and back side of the United States driver license.

    "},"Classes/MBBlinkIdCombinedRecognizerResult.html":{"name":"MBBlinkIdCombinedRecognizerResult","abstract":"

    Recognizer which can scan front and back side of the United States driver license.

    "},"Classes/MBBlinkIdOverlaySettings.html":{"name":"MBBlinkIdOverlaySettings","abstract":"

    Settings class containing parameters for BlinkId UI

    "},"Classes/MBBlinkIdOverlayViewController.html":{"name":"MBBlinkIdOverlayViewController","abstract":"

    Default version of overlay view controller with modern design.

    "},"Classes/MBBlinkIdRecognizer.html":{"name":"MBBlinkIdRecognizer","abstract":"

    The Blink ID Recognizer is used for scanning Blink ID.

    "},"Classes/MBBlinkIdRecognizerResult.html":{"name":"MBBlinkIdRecognizerResult","abstract":"

    The Blink ID Recognizer is used for scanning Blink ID.

    "},"Classes/MBCameraReticle.html":{"name":"MBCameraReticle","abstract":"

    A camera reticle that locates at the center of screen and uses circle arc rotation to indicate that"},"Classes/MBCameraSettings.html":{"name":"MBCameraSettings","abstract":"

    Settings class containing parameters for camera capture

    "},"Classes/MBCustomOverlayViewController.html":{"name":"MBCustomOverlayViewController","abstract":"

    Custom Overlay View Controller is an abstract class for all custom overlay views placed on top View Controller."},"Classes/MBDPIBasedDewarpPolicy.html":{"name":"MBDPIBasedDewarpPolicy","abstract":"

    DPI based dewarp policy. Dewarp height will be calculated based on"},"Classes/MBDateResult.html":{"name":"MBDateResult","abstract":"

    This class represents a Date result scanned from the image. It supports obtaining raw NSDates, or raw strings"},"Classes/MBDewarpPolicy.html":{"name":"MBDewarpPolicy","abstract":"

    Base class for all dewarp policies

    "},"Classes/MBDisplayableDetection.html":{"name":"MBDisplayableDetection","abstract":"

    Represents a detection that can be displayed on screen.

    "},"Classes/MBDisplayableObject.html":{"name":"MBDisplayableObject","abstract":"

    Represents any object that can be displayed on screen in terms of drawing.

    "},"Classes/MBDisplayablePointsDetection.html":{"name":"MBDisplayablePointsDetection","abstract":"

    Result of the detection of a point detector. Point Detectors are used for QR and similar barcodes

    "},"Classes/MBDisplayableQuadDetection.html":{"name":"MBDisplayableQuadDetection","abstract":"

    Represents a detection that can be displayed on screen.

    "},"Classes/MBDocumentFaceRecognizer.html":{"name":"MBDocumentFaceRecognizer","abstract":"

    Class for configuring Document Face Recognizer Recognizer.

    "},"Classes/MBDocumentFaceRecognizerResult.html":{"name":"MBDocumentFaceRecognizerResult","abstract":"

    Class representing values obtained when scanning Document Face Recognizer

    "},"Classes/MBDocumentOverlaySettings.html":{"name":"MBDocumentOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentOverlayViewController.html":{"name":"MBDocumentOverlayViewController","abstract":"

    Default overlay when using ID card recognizers.

    "},"Classes/MBDocumentSubview.html":{"name":"MBDocumentSubview","abstract":"

    Overlay subview presenting the viewfinder for scanning ID documents

    "},"Classes/MBDocumentVerificationInstructionsSubview.html":{"name":"MBDocumentVerificationInstructionsSubview","abstract":"

    Undocumented

    "},"Classes/MBDocumentVerificationOverlaySettings.html":{"name":"MBDocumentVerificationOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentVerificationOverlayViewController.html":{"name":"MBDocumentVerificationOverlayViewController","abstract":"

    Default overlay when using ID card combined recognizers for verification.

    "},"Classes/MBDocumentVerificationSubview.html":{"name":"MBDocumentVerificationSubview","abstract":"

    Undocumented

    "},"Classes/MBDotsResultSubview.html":{"name":"MBDotsResultSubview","abstract":"

    Overlay subview presenting status of OCR detection. Dots are displayed over locations of detected characters.

    "},"Classes/MBDotsSubview.html":{"name":"MBDotsSubview","abstract":"

    A wrapper around CAShapeLayer which is used for presenting a status about barcode detections

    "},"Classes/MBDriverLicenseDetailedInfo.html":{"name":"MBDriverLicenseDetailedInfo","abstract":"

    Undocumented

    "},"Classes.html#/c:objc(cs)MBEntity":{"name":"MBEntity","abstract":"

    Base class for all entities processors, recognizers, detectors…

    "},"Classes.html#/c:objc(cs)MBErrorReticle":{"name":"MBErrorReticle","abstract":"

    A camera reticle detection that locates at the center of screen and uses circular rotation to indicate that"},"Classes/MBFixedDewarpPolicy.html":{"name":"MBFixedDewarpPolicy","abstract":"

    Fixed dewarp policy. Dewarp height will be exactly as defined by its dewarpHeight.

    "},"Classes/MBFrameGrabberRecognizer.html":{"name":"MBFrameGrabberRecognizer","abstract":"

    A recognizer that can returns success frame.

    "},"Classes/MBGlareStatusSubview.html":{"name":"MBGlareStatusSubview","abstract":"

    Overlay subview presenting the status of glare detection."},"Classes/MBImage.html":{"name":"MBImage","abstract":"

    Object which represents an image.

    "},"Classes/MBImageReturnProcessor.html":{"name":"MBImageReturnProcessor","abstract":"

    Processor that will simply save given image.

    "},"Classes/MBImageReturnProcessorResult.html":{"name":"MBImageReturnProcessorResult","abstract":"

    Processor that will simply save given image.

    "},"Classes/MBMicroblinkApp.html":{"name":"MBMicroblinkApp","abstract":"

    Undocumented

    "},"Classes/MBMicroblinkSDK.html":{"name":"MBMicroblinkSDK","abstract":"

    Entry class for all Microblink SDKs - used for setting up license key and to add support for"},"Classes/MBMrtdCombinedRecognizer.html":{"name":"MBMrtdCombinedRecognizer","abstract":"

    MRTD Combined recognizer

    "},"Classes/MBMrtdCombinedRecognizerResult.html":{"name":"MBMrtdCombinedRecognizerResult","abstract":"

    Class representing values obtained when scanning both front and back side of Croatian ID.

    "},"Classes/MBMrtdRecognizer.html":{"name":"MBMrtdRecognizer","abstract":"

    Recognizer that can recognizer Machine Readable Zone (MRZ) of the Machine Readable Travel Document (MRTD)

    "},"Classes/MBMrtdRecognizerResult.html":{"name":"MBMrtdRecognizerResult","abstract":"

    Result of MBMrtdDetectorRecognizer

    "},"Classes/MBMrtdSpecification.html":{"name":"MBMrtdSpecification","abstract":"

    Mrtd class describes a document which is being detected by MrtdDetector."},"Classes/MBMrzResult.html":{"name":"MBMrzResult","abstract":"

    Undocumented

    "},"Classes/MBNoUpScalingDewarpPolicy.html":{"name":"MBNoUpScalingDewarpPolicy","abstract":"

    No upscaling dewarp policy. Dewarp height will be calculated in a way"},"Classes/MBOcrLayout.html":{"name":"MBOcrLayout","abstract":"

    Class describing the layour of the document on which the OCR was preformed.

    "},"Classes/MBOcrBlock.html":{"name":"MBOcrBlock","abstract":"

    Class representing an Ocr Block. Block consists of one or more Ocr Lines.

    "},"Classes/MBOcrLine.html":{"name":"MBOcrLine","abstract":"

    Class representing an Ocr line. line consists of one or more Ocr chars

    "},"Classes/MBCharWithVariants.html":{"name":"MBCharWithVariants","abstract":"

    Undocumented

    "},"Classes/MBOcrChar.html":{"name":"MBOcrChar","abstract":"

    Class representing an individual OCR character obtained in the OCR process.

    "},"Classes/MBPosition.html":{"name":"MBPosition","abstract":"

    Class representing a position on the image. It’s given as a box, with"},"Classes/MBOverlaySettings.html":{"name":"MBOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBOverlayViewController.html":{"name":"MBOverlayViewController","abstract":"

    Overlay View Controller is an abstract class for all overlay views placed on top View Controller.

    "},"Classes/MBParserGroupProcessor.html":{"name":"MBParserGroupProcessor","abstract":"

    A processor for a group

    "},"Classes/MBParserGroupProcessorResult.html":{"name":"MBParserGroupProcessorResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBPassportRecognizer.html":{"name":"MBPassportRecognizer","abstract":"

    Recognizer which can scan all passports with MRZ.

    "},"Classes/MBPassportRecognizerResult.html":{"name":"MBPassportRecognizerResult","abstract":"

    Recognizer which can scan all passports with MRZ.

    "},"Classes/MBProcessor.html":{"name":"MBProcessor","abstract":"

    Base class for all processors

    "},"Classes/MBProcessorGroup.html":{"name":"MBProcessorGroup","abstract":"

    Class that represents a group of processors that will be executed on same dewarped image.

    "},"Classes/MBProcessorResult.html":{"name":"MBProcessorResult","abstract":"

    Base class for all processor results

    "},"Classes/MBQuadrangle.html":{"name":"MBQuadrangle","abstract":"

    Class represents the quadrangle (arbitrary geometric object with 4 different corner points

    "},"Classes/MBRecognizer.html":{"name":"MBRecognizer","abstract":"

    Base class for all recognizers

    "},"Classes/MBRecognizerCollection.html":{"name":"MBRecognizerCollection","abstract":"

    Settings class containing settings related to scanner behaviour

    "},"Classes/MBRecognizerResult.html":{"name":"MBRecognizerResult","abstract":"

    Base class for all recognizer results

    "},"Classes/MBRecognizerRunner.html":{"name":"MBRecognizerRunner","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBRecognizerRunnerMetadataDelegates.html":{"name":"MBRecognizerRunnerMetadataDelegates","abstract":"

    Class containing all metadata delegates

    "},"Classes/MBRecognizerRunnerViewControllerMetadataDelegates.html":{"name":"MBRecognizerRunnerViewControllerMetadataDelegates","abstract":"

    Class containing all metadata delegates

    "},"Classes/MBSubview.html":{"name":"MBSubview","abstract":"

    Base class for all overlay subviews

    "},"Classes/MBSuccessFrameGrabberRecognizer.html":{"name":"MBSuccessFrameGrabberRecognizer","abstract":"

    A recognizer that can returns success frame.

    "},"Classes/MBSuccessFrameGrabberRecognizerResult.html":{"name":"MBSuccessFrameGrabberRecognizerResult","abstract":"

    A recognizer that returns SuccessFrameGrabber result.

    "},"Classes/MBTapToFocusSubview.html":{"name":"MBTapToFocusSubview","abstract":"

    Overlay subview presenting the effect which happens when the user taps to focus

    "},"Classes/MBTemplatingClass.html":{"name":"MBTemplatingClass","abstract":"

    Class that represents a specific class of documents when used within Templating API.

    "},"Classes/MBTemplatingRecognizer.html":{"name":"MBTemplatingRecognizer","abstract":"

    Base of all recognizers that support Templating API.

    "},"Classes/MBTemplatingRecognizerResult.html":{"name":"MBTemplatingRecognizerResult","abstract":"

    Base of all recognizers result that support Templating API.

    "},"Classes/MBUsdlCombinedRecognizer.html":{"name":"MBUsdlCombinedRecognizer","abstract":"

    USDL Combined Recognizer.

    "},"Classes/MBUsdlCombinedRecognizerResult.html":{"name":"MBUsdlCombinedRecognizerResult","abstract":"

    Class representing values obtained when scanning both front and back side of US Driver’s License.

    "},"Classes/MBUsdlRecognizer.html":{"name":"MBUsdlRecognizer","abstract":"

    A recognizer that can scan USDL.

    "},"Classes/MBUsdlRecognizerResult.html":{"name":"MBUsdlRecognizerResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBViewControllerFactory.html":{"name":"MBViewControllerFactory","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBVisaRecognizer.html":{"name":"MBVisaRecognizer","abstract":"

    Recognizer which can scan all visas with MRZ.

    "},"Classes/MBVisaRecognizerResult.html":{"name":"MBVisaRecognizerResult","abstract":"

    Recognizer which can scan all visas with MRZ.

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Constants.html":{"name":"Constants","abstract":"

    The following constants are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "},"Type Definitions.html":{"name":"Type Definitions","abstract":"

    The following type definitions are available globally.

    "},"Functions.html":{"name":"Functions","abstract":"

    The following functions are available globally.

    "},"Structs.html":{"name":"Structures","abstract":"

    The following structures are available globally.

    "}} \ No newline at end of file