diff --git a/.swift-version b/.swift-version index 5186d07..819e07a 100644 --- a/.swift-version +++ b/.swift-version @@ -1 +1 @@ -4.0 +5.0 diff --git a/.travis.yml b/.travis.yml index e8e77d3..7c930c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: objective-c -osx_image: xcode9.3 +osx_image: xcode10.2 install: true before_install: ./travis/before_script.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index dfdaacc..92a3738 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Release notes +## 4.1.0 + +- Updates and addtitions + - updated overlay view controllers with new icons for close and torch buttons + - switched to using HTTPS in podspec for Cocoapods + - enabled capturing high resolution camera frames: + When custom UI integration is performed, use - `(void)captureHighResImage:(MBCaptureHighResImage)highResoulutionImageCaptured on MBRecognizerRunnerViewController` + When using provided scan overlay view controllers, high resolution full camera frames taken at the moment of successful scan are returned if this option is enabled through `MBOverlaySettings`. + - Added support for checking if scanning is unsupported for camera type on `MBRecognizerRunnerViewController` + - Added `reconfigureRecognizers` method to `MBBaseOverlayViewController`, enabling it on all it's subclasses + +- Minor API changes + - renamed MicroBlink.framework to Microblink.framework + - renamed MicroBlink.bundle to Microblink.bundle + - `isScanningUnsupportedForCameraType:` is now class method of `MBMicroblinkSDK` + +- Bugfixes + - templating recognizers no longer execute callbacks with valid state once they are valid on every frame even if nothing is 'detected' + - fixed a crash which happened when scanning region was set before overlay view controller loaded, but after it was initialized + - fixed missing init in `MBDotsResultSubview` for Swift + - fix memory issue while using current frame grabber + - updated overlay view controllers for iPhone X Series + - Fixed bug where SDK crashed with exception when the user wanted to use custom resource bundle + - Calling `reconfigureRecognizers` before showing camera now correctly applies supplied recognizers + - Fixed autorotation of overlays and `MBRecognizerRunnerViewController` + - Fixed localization issues with some overlays + - Fixed constraint errors on `MBDocumentVerificationOverlayViewController` + - Various other bug fixes and improvements + ## 4.0.0 - new API, which is not backward compatible. Please check [README](README.md) and updated demo applications for more information, but the gist of it is: @@ -315,4 +344,4 @@ - Initial documentation added - Implemented Two sample apps - One for simple integration showing how OcrRecognizer can easily be included in the app - - One with custom UI for FormScanning with Price, IBAN and Reference number parsing \ No newline at end of file + - One with custom UI for FormScanning with Price, IBAN and Reference number parsing diff --git a/MicroBlink.bundle/Close.png b/MicroBlink.bundle/Close.png new file mode 100644 index 0000000..51e284e Binary files /dev/null and b/MicroBlink.bundle/Close.png differ diff --git a/MicroBlink.bundle/Close@2x.png b/MicroBlink.bundle/Close@2x.png new file mode 100644 index 0000000..b0f1c9c Binary files /dev/null and b/MicroBlink.bundle/Close@2x.png differ diff --git a/MicroBlink.bundle/Close@3x.png b/MicroBlink.bundle/Close@3x.png new file mode 100644 index 0000000..ef790c3 Binary files /dev/null and b/MicroBlink.bundle/Close@3x.png differ diff --git a/MicroBlink.bundle/Info.plist b/MicroBlink.bundle/Info.plist index cc8320b..fbec692 100644 Binary files a/MicroBlink.bundle/Info.plist and b/MicroBlink.bundle/Info.plist differ diff --git a/MicroBlink.bundle/en.strings b/MicroBlink.bundle/en.strings index f7eaf20..73a5007 100644 --- a/MicroBlink.bundle/en.strings +++ b/MicroBlink.bundle/en.strings @@ -10,3 +10,14 @@ "photopay_light_on" = "Light"; "photopay_light_off" = "Light"; "photopay_camera_permission_denied" = "{font:@Medium}%@{/font} does not have permission to use the camera.\n\nPlease go to:\n• {font:@Medium}Settings{/font}\n• {font:@Medium}%@{/font}\n• Make sure that {font:@Medium}Camera{/font} is enabled"; +"photopay_id_position_tooltip" = "Position ID card in this Frame"; +"photopay_glare_status" = "Slightly move ID to eliminate glare."; +"blink_card_front_message" = "Scan the front side."; +"blink_card_back_message" = "Scan the back side."; +"blink_card_done_message" = "Done scanning."; + +"photopay_front_verification_document" = "Place the front side of the document in the frame and wait for automatic scan."; +"photopay_back_verification_document" = "Place the back side of the document in the frame and wait for automatic scan."; +"photopay_front_splash_verification_document" = "Document front side"; +"photopay_back_splash_verification_document" = "Document back side"; +"photopay_done_splash_verification_document" = "Document scanning done"; diff --git a/MicroBlink.bundle/ic_flash_off.png b/MicroBlink.bundle/ic_flash_off.png new file mode 100644 index 0000000..f7db816 Binary files /dev/null and b/MicroBlink.bundle/ic_flash_off.png differ diff --git a/MicroBlink.bundle/ic_flash_off@2x.png b/MicroBlink.bundle/ic_flash_off@2x.png new file mode 100644 index 0000000..4f4053e Binary files /dev/null and b/MicroBlink.bundle/ic_flash_off@2x.png differ diff --git a/MicroBlink.bundle/ic_flash_off@3x.png b/MicroBlink.bundle/ic_flash_off@3x.png new file mode 100644 index 0000000..d28850d Binary files /dev/null and b/MicroBlink.bundle/ic_flash_off@3x.png differ diff --git a/MicroBlink.bundle/ic_flash_on.png b/MicroBlink.bundle/ic_flash_on.png new file mode 100644 index 0000000..44b4bbc Binary files /dev/null and b/MicroBlink.bundle/ic_flash_on.png differ diff --git a/MicroBlink.bundle/ic_flash_on@2x.png b/MicroBlink.bundle/ic_flash_on@2x.png new file mode 100644 index 0000000..11d4f9d Binary files /dev/null and b/MicroBlink.bundle/ic_flash_on@2x.png differ diff --git a/MicroBlink.bundle/ic_flash_on@3x.png b/MicroBlink.bundle/ic_flash_on@3x.png new file mode 100644 index 0000000..24a28f7 Binary files /dev/null and b/MicroBlink.bundle/ic_flash_on@3x.png differ diff --git a/MicroBlink.bundle/model_arabic.zzip b/MicroBlink.bundle/model_arabic.zzip index 907adb1..a1c82b2 100644 Binary files a/MicroBlink.bundle/model_arabic.zzip and b/MicroBlink.bundle/model_arabic.zzip differ diff --git a/MicroBlink.bundle/model_general_blink_ocr.zzip b/MicroBlink.bundle/model_general_blink_ocr.zzip index 24907d2..be9a855 100644 Binary files a/MicroBlink.bundle/model_general_blink_ocr.zzip and b/MicroBlink.bundle/model_general_blink_ocr.zzip differ diff --git a/MicroBlink.bundle/model_micr.zzip b/MicroBlink.bundle/model_micr.zzip index ad6d38f..78093fe 100644 Binary files a/MicroBlink.bundle/model_micr.zzip and b/MicroBlink.bundle/model_micr.zzip differ diff --git a/MicroBlink.bundle/model_mrtd.zzip b/MicroBlink.bundle/model_mrtd.zzip index 7dcbe8a..dd2c167 100644 Binary files a/MicroBlink.bundle/model_mrtd.zzip and b/MicroBlink.bundle/model_mrtd.zzip differ diff --git a/MicroBlink.bundle/nn_model_BlinkInputOcr_general_5.1.0.zzip b/MicroBlink.bundle/nn_model_BlinkInputOcr_general_5.1.0.zzip new file mode 100644 index 0000000..1e0309a Binary files /dev/null and b/MicroBlink.bundle/nn_model_BlinkInputOcr_general_5.1.0.zzip differ diff --git a/MicroBlink.bundle/nn_model_BlinkInputOcr_kobe.zzip b/MicroBlink.bundle/nn_model_BlinkInputOcr_kobe.zzip deleted file mode 100644 index 742f693..0000000 Binary files a/MicroBlink.bundle/nn_model_BlinkInputOcr_kobe.zzip and /dev/null differ diff --git a/MicroBlink.framework/Headers/MBAmountParser.h b/MicroBlink.framework/Headers/MBAmountParser.h index 1dad041..965126e 100644 --- a/MicroBlink.framework/Headers/MBAmountParser.h +++ b/MicroBlink.framework/Headers/MBAmountParser.h @@ -1,15 +1,15 @@ // // MBAmountParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParser.h" #import "MBAmountParserResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBAmountParserResult.h b/MicroBlink.framework/Headers/MBAmountParserResult.h index 09d70b4..a243d29 100644 --- a/MicroBlink.framework/Headers/MBAmountParserResult.h +++ b/MicroBlink.framework/Headers/MBAmountParserResult.h @@ -1,13 +1,13 @@ // // MBAmountParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParserResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBBarcodeEntities.h b/MicroBlink.framework/Headers/MBBarcodeEntities.h new file mode 100644 index 0000000..2040afb --- /dev/null +++ b/MicroBlink.framework/Headers/MBBarcodeEntities.h @@ -0,0 +1,19 @@ +// +// Microblink.h +// MicroblinkFramework +// +// Created by Dino Gustin on 06/06/18. +// Copyright (c) 2012 Microblink Ltd. All rights reserved. +// + +// Pdf417 +#import "MBPdf417Recognizer.h" +#import "MBPdf417RecognizerResult.h" + +// SimNumber +#import "MBSimNumberRecognizer.h" +#import "MBSimNumberRecognizerResult.h" + +// Barcode +#import "MBBarcodeRecognizer.h" +#import "MBBarcodeRecognizerResult.h" diff --git a/MicroBlink.framework/Headers/MBBarcodeOverlaySettings.h b/MicroBlink.framework/Headers/MBBarcodeOverlaySettings.h index 88b1475..a4808c6 100644 --- a/MicroBlink.framework/Headers/MBBarcodeOverlaySettings.h +++ b/MicroBlink.framework/Headers/MBBarcodeOverlaySettings.h @@ -1,6 +1,6 @@ // // MBBarcodeUISettings.h -// MicroBlink +// Microblink // // Created by Dino Gustin on 04/05/2018. // @@ -15,8 +15,18 @@ NS_ASSUME_NONNULL_BEGIN MB_CLASS_AVAILABLE_IOS(8.0) @interface MBBarcodeOverlaySettings : MBBaseOverlaySettings +/** + * If YES, viewfinder (4 corner markers) will move when payslip is detected + * + * Default: YES + */ @property (nonatomic, assign) BOOL displayBarcodeDots; +/** + * If YES; view finder will be displayed + * + * Default: YES + */ @property (nonatomic, assign) BOOL displayViewfinder; @end diff --git a/MicroBlink.framework/Headers/MBBarcodeOverlayViewController.h b/MicroBlink.framework/Headers/MBBarcodeOverlayViewController.h index e169601..ec09767 100644 --- a/MicroBlink.framework/Headers/MBBarcodeOverlayViewController.h +++ b/MicroBlink.framework/Headers/MBBarcodeOverlayViewController.h @@ -3,7 +3,7 @@ // BarcodeFramework // // Created by Jura on 22/12/13. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #import "MBBaseOverlayViewController.h" diff --git a/MicroBlink.framework/Headers/MBBarcodeOverlayViewControllerDelegate.h b/MicroBlink.framework/Headers/MBBarcodeOverlayViewControllerDelegate.h index 71efdd5..c601e03 100644 --- a/MicroBlink.framework/Headers/MBBarcodeOverlayViewControllerDelegate.h +++ b/MicroBlink.framework/Headers/MBBarcodeOverlayViewControllerDelegate.h @@ -1,6 +1,6 @@ // // MBBarcodeOverlayViewControllerDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 17/01/2018. // diff --git a/MicroBlink.framework/Headers/MBBarcodeRecognizer.h b/MicroBlink.framework/Headers/MBBarcodeRecognizer.h index 5abd20e..2a419bd 100644 --- a/MicroBlink.framework/Headers/MBBarcodeRecognizer.h +++ b/MicroBlink.framework/Headers/MBBarcodeRecognizer.h @@ -1,16 +1,16 @@ // // MBBarcodeRecognizer.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 28/11/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizer.h" #import "MBBarcodeRecognizerResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN @@ -33,7 +33,7 @@ MB_INIT * * Default: NO */ -@property (nonatomic, assign) BOOL scanAztec; +@property (nonatomic, assign) BOOL scanAztecCode; /** * Set this to YES to scan Code 128 1D barcodes @@ -61,42 +61,42 @@ MB_INIT * * Default: NO */ -@property (nonatomic, assign) BOOL scanEAN13; +@property (nonatomic, assign) BOOL scanEan13; /** * Set this to YES to scan EAN8 barcodes * * Default: NO */ -@property (nonatomic, assign) BOOL scanEAN8; +@property (nonatomic, assign) BOOL scanEan8; /** * Set this to YES to scan ITF barcodes * * Default: NO */ -@property (nonatomic, assign) BOOL scanITF; +@property (nonatomic, assign) BOOL scanItf; /** * Set this to YES to scan QR barcodes * * Default: NO */ -@property (nonatomic, assign) BOOL scanQR; +@property (nonatomic, assign) BOOL scanQrCode; /** * Set this to YES to scan UPCA barcodes * * Default: NO */ -@property (nonatomic, assign) BOOL scanUPCA; +@property (nonatomic, assign) BOOL scanUpca; /** * Set this to YES to scan UPCE barcodes * * Default: NO */ -@property (nonatomic, assign) BOOL scanUPCE; +@property (nonatomic, assign) BOOL scanUpce; /** * Set this to YES to scan Pdf417 barcodes @@ -108,10 +108,9 @@ MB_INIT /** * Set this to YES to allow slower, but better image processing. * - * Defailt: YES - * + * Default: YES */ -@property (nonatomic, assign) BOOL useSlowerThoroughScan; +@property (nonatomic, assign) BOOL slowerThoroughScan; /** * Allow enabling the autodetection of image scale when scanning barcodes. @@ -120,12 +119,16 @@ MB_INIT * resolution images but slows down the recognition process. * * NOTE: This setting is applied only for Code39 and Code128 barcode scanning. +* + * Default: YES */ @property (nonatomic, assign) BOOL autoScaleDetection; /** * Enable reading code39 barcode contents as extended data. For more information about code39 * extended data (a.k.a. full ASCII mode), see https://en.wikipedia.org/wiki/Code_39#Full_ASCII_Code_39 +* +* Default: NO */ @property (nonatomic, assign) BOOL readCode39AsExtendedData; @@ -156,7 +159,7 @@ MB_INIT * * Default: NO */ -@property (nonatomic, assign) BOOL allowNullQuietZone; +@property (nonatomic, assign) BOOL nullQuietZoneAllowed; @end diff --git a/MicroBlink.framework/Headers/MBBarcodeRecognizerResult.h b/MicroBlink.framework/Headers/MBBarcodeRecognizerResult.h index d57214e..2e7a21e 100644 --- a/MicroBlink.framework/Headers/MBBarcodeRecognizerResult.h +++ b/MicroBlink.framework/Headers/MBBarcodeRecognizerResult.h @@ -1,13 +1,13 @@ // // MBBarcodeRecognizerResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 28/11/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizerResult.h" #import "MBBarcodeResult.h" @@ -25,18 +25,18 @@ MB_INIT_UNAVAILABLE /** * Byte array with result of the scan */ -- (NSData *_Nullable)data; +@property(nonatomic, strong, readonly, nullable) NSData* rawData; /** * Retrieves string content of scanned data */ -- (NSString *)stringData; +@property(nonatomic, strong, readonly, nullable) NSString* stringData; /** * Flag indicating uncertain scanning data * E.g obtained from damaged barcode. */ -- (BOOL)isUncertain; +@property(nonatomic, assign, readonly) BOOL uncertain; /** * Method which gives string representation for a given PPBarcodeType enum value. diff --git a/MicroBlink.framework/Headers/MBBarcodeResult.h b/MicroBlink.framework/Headers/MBBarcodeResult.h index 91c0998..f64aba6 100644 --- a/MicroBlink.framework/Headers/MBBarcodeResult.h +++ b/MicroBlink.framework/Headers/MBBarcodeResult.h @@ -1,6 +1,6 @@ // // MBBarcodeResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 28/11/2017. // diff --git a/MicroBlink.framework/Headers/MBBarcodeUIComponents.h b/MicroBlink.framework/Headers/MBBarcodeUIComponents.h new file mode 100644 index 0000000..4e0f6d1 --- /dev/null +++ b/MicroBlink.framework/Headers/MBBarcodeUIComponents.h @@ -0,0 +1,23 @@ +// +// Microblink.h +// MicroblinkFramework +// +// Created by Dino Gustin on 06/06/18. +// Copyright (c) 2012 Microblink Ltd. All rights reserved. +// + +// Overlay delegates +#import "MBBarcodeOverlayViewControllerDelegate.h" + +// Overlays +#import "MBBarcodeOverlayViewController.h" +#import "MBBarcodeOverlaySettings.h" +#import "MBCustomOverlayViewController.h" + +// Overlay subviews +#import "MBDotsSubview.h" +#import "MBDotsResultSubview.h" +#import "MBModernViewfinderSubview.h" +#import "MBTapToFocusSubview.h" +#import "MBResultSubview.h" +#import "MBGlareStatusSubview.h" diff --git a/MicroBlink.framework/Headers/MBBaseOcrEngineOptions.h b/MicroBlink.framework/Headers/MBBaseOcrEngineOptions.h index f5524ab..39ea7cb 100644 --- a/MicroBlink.framework/Headers/MBBaseOcrEngineOptions.h +++ b/MicroBlink.framework/Headers/MBBaseOcrEngineOptions.h @@ -8,7 +8,7 @@ #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN @@ -19,24 +19,6 @@ NS_ASSUME_NONNULL_BEGIN MB_CLASS_AVAILABLE_IOS(8.0) @interface MBBaseOcrEngineOptions : NSObject -/** - * Minimal height of the line of text given in pixels. All chars smaller than this value will be ignored. - * - * Setting the minimal line height can reduce the noise in OCR results. - * - * Default: 10 - */ -@property (nonatomic, assign) NSUInteger minimalLineHeight; - -/** - * Maximal height of the line of text given in pixels. - * - * Setting the maximal line height can reduce the noise in OCR results. - * - * Default: 200 - */ -@property (nonatomic, assign) NSUInteger maximalLineHeight; - /** * Maximal chars expected on the image. * diff --git a/MicroBlink.framework/Headers/MBBaseOcrOverlaySettings.h b/MicroBlink.framework/Headers/MBBaseOcrOverlaySettings.h index d8335a1..0495453 100644 --- a/MicroBlink.framework/Headers/MBBaseOcrOverlaySettings.h +++ b/MicroBlink.framework/Headers/MBBaseOcrOverlaySettings.h @@ -1,6 +1,6 @@ // // MBBaseOcrOverlaySettings.h -// MicroBlink +// Microblink // // Created by Dino Gustin on 04/05/2018. // diff --git a/MicroBlink.framework/Headers/MBBaseOverlaySettings.h b/MicroBlink.framework/Headers/MBBaseOverlaySettings.h index 286141f..a9e10f5 100644 --- a/MicroBlink.framework/Headers/MBBaseOverlaySettings.h +++ b/MicroBlink.framework/Headers/MBBaseOverlaySettings.h @@ -1,6 +1,6 @@ // // MBBaseOverlaySettings.h -// MicroBlink +// Microblink // // Created by Dino Gustin on 04/05/2018. // @@ -26,14 +26,14 @@ MB_CLASS_AVAILABLE_IOS(8.0) * If YES, default camera overlay will display Status bar. * Usually, if camera is displayed inside Navigation View Controler, this is reasonable to set to YES. * - * Default: NO. + * Default: YES on iPhones with notch, NO otherwise. */ @property (nonatomic, assign) BOOL showStatusBar; /** * Default: UIInterfaceOrientationMaskPortrait */ -@property (nonatomic, assign) NSUInteger supportedOrientations; +@property (nonatomic, assign) UIInterfaceOrientationMask supportedOrientations; /** * Full path to the sound file which is played when the valid result is scanned. diff --git a/MicroBlink.framework/Headers/MBBaseOverlayViewController.h b/MicroBlink.framework/Headers/MBBaseOverlayViewController.h index 1f322a1..e23518a 100644 --- a/MicroBlink.framework/Headers/MBBaseOverlayViewController.h +++ b/MicroBlink.framework/Headers/MBBaseOverlayViewController.h @@ -3,7 +3,7 @@ // BarcodeFramework // // Created by Jura on 06/06/14. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #import @@ -18,6 +18,11 @@ NS_ASSUME_NONNULL_BEGIN MB_CLASS_AVAILABLE_IOS(8.0) @interface MBBaseOverlayViewController : MBOverlayViewController +/** + * Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan. + */ +- (void)reconfigureRecognizers:(MBRecognizerCollection *)recognizerCollection; + @end NS_ASSUME_NONNULL_END diff --git a/MicroBlink.framework/Headers/PPBlinkInputRecognizers.h b/MicroBlink.framework/Headers/MBBlinkInputEntities.h similarity index 83% rename from MicroBlink.framework/Headers/PPBlinkInputRecognizers.h rename to MicroBlink.framework/Headers/MBBlinkInputEntities.h index 146dbdf..91e8e20 100644 --- a/MicroBlink.framework/Headers/PPBlinkInputRecognizers.h +++ b/MicroBlink.framework/Headers/MBBlinkInputEntities.h @@ -1,13 +1,12 @@ // -// PPBlinkInputRecognizers.h -// BlinkOcrFramework +// Microblink.h +// MicroblinkFramework // -// Created by Dino on 27/09/16. -// Copyright © 2016 MicroBlink Ltd. All rights reserved. +// Created by Dino Gustin on 06/06/18. +// Copyright (c) 2012 Microblink Ltd. All rights reserved. // -#ifndef PPBlinkInputRecognizers_h -#define PPBlinkInputRecognizers_h +#import "MBBarcodeEntities.h" /** MRTD Detector*/ #import "MBMrtdDetector.h" @@ -49,6 +48,10 @@ #import "MBDateParser.h" #import "MBDateParserResult.h" +// VIN +#import "MBVinRecognizer.h" +#import "MBVinRecognizerResult.h" + // Raw #import "MBRawParser.h" #import "MBRawParserResult.h" @@ -93,8 +96,3 @@ // Native result #import "MBNativeResult.h" #import "MBDateResult.h" - -// Use all recognizers from BlinkBarcode -#import "PPBlinkBarcodeRecognizers.h" - -#endif /* PPBlinkInputRecognizers_h */ diff --git a/MicroBlink.framework/Headers/MBBlinkInputRecognizer.h b/MicroBlink.framework/Headers/MBBlinkInputRecognizer.h index b26653a..1c2d68e 100644 --- a/MicroBlink.framework/Headers/MBBlinkInputRecognizer.h +++ b/MicroBlink.framework/Headers/MBBlinkInputRecognizer.h @@ -1,15 +1,15 @@ // // MBBlinkInputRecognizer.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 02/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizer.h" #import "MBBlinkInputRecognizerResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" @class MBProcessor; diff --git a/MicroBlink.framework/Headers/MBBlinkInputRecognizerResult.h b/MicroBlink.framework/Headers/MBBlinkInputRecognizerResult.h index 291b98a..5f0b1e3 100644 --- a/MicroBlink.framework/Headers/MBBlinkInputRecognizerResult.h +++ b/MicroBlink.framework/Headers/MBBlinkInputRecognizerResult.h @@ -1,15 +1,15 @@ // // MBBlinkInputRecognizerResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 02/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizerResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBBlinkInputUIComponents.h b/MicroBlink.framework/Headers/MBBlinkInputUIComponents.h new file mode 100644 index 0000000..2b5eac6 --- /dev/null +++ b/MicroBlink.framework/Headers/MBBlinkInputUIComponents.h @@ -0,0 +1,17 @@ +// +// Microblink.h +// MicroblinkFramework +// +// Created by Dino Gustin on 06/06/18. +// Copyright (c) 2012 Microblink Ltd. All rights reserved. +// + +#import "MBBarcodeUIComponents.h" + +// Overlays +#import "MBFieldByFieldOverlayViewController.h" +#import "MBFieldByFieldOverlaySettings.h" + +// Overlay subviews +#import "MBOcrResultSubview.h" +#import "MBOcrLayoutSubview.h" diff --git a/MicroBlink.framework/Headers/MBCameraSettings.h b/MicroBlink.framework/Headers/MBCameraSettings.h index 91ea18b..f375f12 100644 --- a/MicroBlink.framework/Headers/MBCameraSettings.h +++ b/MicroBlink.framework/Headers/MBCameraSettings.h @@ -3,60 +3,60 @@ // PhotoPayFramework // // Created by Jura on 23/02/15. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #import #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" /** * Camera resolution preset */ -typedef NS_ENUM(NSUInteger, PPCameraPreset) { +typedef NS_ENUM(NSUInteger, MBCameraPreset) { /** 480p video will always be used */ - PPCameraPreset480p, + MBCameraPreset480p, /** 720p video will always be used */ - PPCameraPreset720p, + MBCameraPreset720p, /** The library will calculate optimal resolution based on the use case and device used */ - PPCameraPresetOptimal, + MBCameraPresetOptimal, /** Device's maximal video resolution will be used. */ - PPCameraPresetMax, + MBCameraPresetMax, /** Device's photo preview resolution will be used */ - PPCameraPresetPhoto, + MBCameraPresetPhoto, }; /** * Camera type */ -typedef NS_ENUM(NSUInteger, PPCameraType) { +typedef NS_ENUM(NSUInteger, MBCameraType) { /** Back facing camera */ - PPCameraTypeBack, + MBCameraTypeBack, /** Front facing camera */ - PPCameraTypeFront + MBCameraTypeFront }; /** * Camera autofocus restricion mode */ -typedef NS_ENUM(NSUInteger, PPCameraAutofocusRestriction) { +typedef NS_ENUM(NSUInteger, MBCameraAutofocusRestriction) { /** Default. Indicates that the autofocus system should not restrict the focus range. */ - PPCameraAutofocusRestrictionNone, + MBCameraAutofocusRestrictionNone, /** Indicates that the autofocus system should restrict the focus range for subject matter that is near to the camera. */ - PPCameraAutofocusRestrictionNear, + MBCameraAutofocusRestrictionNear, /** Indicates that the autofocus system should restrict the focus range for subject matter that is far from the camera. */ - PPCameraAutofocusRestrictionFar, + MBCameraAutofocusRestrictionFar, }; /** @@ -70,14 +70,14 @@ MB_CLASS_AVAILABLE_IOS(8.0) * * Default: PPCameraPresetOptimal */ -@property (nonatomic, assign) PPCameraPreset cameraPreset; +@property (nonatomic, assign) MBCameraPreset cameraPreset; /** * Camera type. You can choose between front and back facing. * - * Default: PPCameraTypeBack + * Default: MBCameraTypeBack */ -@property (nonatomic, assign) PPCameraType cameraType; +@property (nonatomic, assign) MBCameraType cameraType; /** * Interval between forcing two camera focuses. If <= 0, forced focuses arent performed @@ -94,7 +94,7 @@ MB_CLASS_AVAILABLE_IOS(8.0) * * Default: PPCameraAutofocusRestrictionNone */ -@property (nonatomic, assign) PPCameraAutofocusRestriction cameraAutofocusRestriction; +@property (nonatomic, assign) MBCameraAutofocusRestriction cameraAutofocusRestriction; /** * Gravity of Camera preview on screen. diff --git a/MicroBlink.framework/Headers/MBCustomOverlayViewController.h b/MicroBlink.framework/Headers/MBCustomOverlayViewController.h index ddaef8f..3bf9bac 100644 --- a/MicroBlink.framework/Headers/MBCustomOverlayViewController.h +++ b/MicroBlink.framework/Headers/MBCustomOverlayViewController.h @@ -1,12 +1,12 @@ // // MBCustomOverlayViewController.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 25/04/2018. // #import "MBOverlayViewController.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" #import "MBBaseOverlaySettings.h" #import "MBRecognizerRunnerViewControllerMetadataDelegates.h" @@ -45,6 +45,8 @@ MB_CLASS_AVAILABLE_IOS(8.0) * Defines a portion of the screen in which the scanning will be performed. * Given as a CGRect with unit coordinating system: * + * @warning Should only be set AFTER RecognizerRunnerViewController has been instantiated with this CustomOverlayViewController, or else it will not have any effect. + * * @example CGRectMake(0.2f, 0.5f, 0.4f, 0.3f) defines a portion of the screen which starts at * 20% from the left border * 50% from the top @@ -73,6 +75,9 @@ MB_CLASS_AVAILABLE_IOS(8.0) */ @property (nonatomic, assign) NSUInteger supportedOrientations; +/** + * Reconfigures current recognizer collection to new recognizer collection. Use this method to reconfigure what you wish to scan. + */ - (void)reconfigureRecognizers:(MBRecognizerCollection *)recognizerCollection; @end diff --git a/MicroBlink.framework/Headers/MBDPIBasedDewarpPolicy.h b/MicroBlink.framework/Headers/MBDPIBasedDewarpPolicy.h index aa8c2c0..803bf07 100644 --- a/MicroBlink.framework/Headers/MBDPIBasedDewarpPolicy.h +++ b/MicroBlink.framework/Headers/MBDPIBasedDewarpPolicy.h @@ -1,12 +1,12 @@ // // MBDPIBasedDewarpPolicy.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 21/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBDewarpPolicy.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBDateParser.h b/MicroBlink.framework/Headers/MBDateParser.h index 17693aa..99c9a86 100644 --- a/MicroBlink.framework/Headers/MBDateParser.h +++ b/MicroBlink.framework/Headers/MBDateParser.h @@ -1,15 +1,15 @@ // // MBDateParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 12/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParser.h" #import "MBDateParserResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" /** * Available date formats for date parser. To activate parsing of dates with month names in diff --git a/MicroBlink.framework/Headers/MBDateParserResult.h b/MicroBlink.framework/Headers/MBDateParserResult.h index f80ffce..4eff148 100644 --- a/MicroBlink.framework/Headers/MBDateParserResult.h +++ b/MicroBlink.framework/Headers/MBDateParserResult.h @@ -1,13 +1,13 @@ // // MBDateParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 12/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParserResult.h" #import "MBDateResult.h" diff --git a/MicroBlink.framework/Headers/MBDateResult.h b/MicroBlink.framework/Headers/MBDateResult.h index fa71b28..db59972 100644 --- a/MicroBlink.framework/Headers/MBDateResult.h +++ b/MicroBlink.framework/Headers/MBDateResult.h @@ -3,11 +3,11 @@ // BlinkIdFramework // // Created by DoDo on 07/11/2016. -// Copyright © 2016 MicroBlink Ltd. All rights reserved. +// Copyright © 2016 Microblink Ltd. All rights reserved. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBNativeResult.h" /** @@ -47,7 +47,7 @@ MB_CLASS_AVAILABLE_IOS(8.0) /** * NSDate object which represents the same date as this result */ -@property (nonatomic, readonly, nonnull) NSDate *date; +@property (nonatomic, readonly, nullable) NSDate *date; /** * Day in month. diff --git a/MicroBlink.framework/Headers/MBDebugRecognizerRunnerDelegate.h b/MicroBlink.framework/Headers/MBDebugRecognizerRunnerDelegate.h index 44946bf..0a638e2 100644 --- a/MicroBlink.framework/Headers/MBDebugRecognizerRunnerDelegate.h +++ b/MicroBlink.framework/Headers/MBDebugRecognizerRunnerDelegate.h @@ -1,6 +1,6 @@ // // MBDebugRecognizerRunnerDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 04/01/2018. // diff --git a/MicroBlink.framework/Headers/MBDebugRecognizerRunnerViewControllerDelegate.h b/MicroBlink.framework/Headers/MBDebugRecognizerRunnerViewControllerDelegate.h index 927f97b..116d647 100644 --- a/MicroBlink.framework/Headers/MBDebugRecognizerRunnerViewControllerDelegate.h +++ b/MicroBlink.framework/Headers/MBDebugRecognizerRunnerViewControllerDelegate.h @@ -1,6 +1,6 @@ // // MBDebugRecognizerRunnerViewDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 04/01/2018. // diff --git a/MicroBlink.framework/Headers/MBDeepOcrEngineOptions.h b/MicroBlink.framework/Headers/MBDeepOcrEngineOptions.h index 66c368d..6df50ed 100644 --- a/MicroBlink.framework/Headers/MBDeepOcrEngineOptions.h +++ b/MicroBlink.framework/Headers/MBDeepOcrEngineOptions.h @@ -8,7 +8,7 @@ #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBBaseOcrEngineOptions.h" NS_ASSUME_NONNULL_BEGIN @@ -20,7 +20,6 @@ typedef NS_ENUM(NSUInteger, MBDeepOcrModel) { /** Deep OCR model for Blink Input */ MBDeepOcrModelBlinkInput - }; /** diff --git a/MicroBlink.framework/Headers/MBDetectionRecognizerRunnerDelegate.h b/MicroBlink.framework/Headers/MBDetectionRecognizerRunnerDelegate.h index 94b1867..60c273d 100644 --- a/MicroBlink.framework/Headers/MBDetectionRecognizerRunnerDelegate.h +++ b/MicroBlink.framework/Headers/MBDetectionRecognizerRunnerDelegate.h @@ -1,6 +1,6 @@ // // MBDetectionRecognizerRunnerDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/12/2017. // diff --git a/MicroBlink.framework/Headers/MBDetectionRecognizerRunnerViewControllerDelegate.h b/MicroBlink.framework/Headers/MBDetectionRecognizerRunnerViewControllerDelegate.h index 192c6d7..251d832 100644 --- a/MicroBlink.framework/Headers/MBDetectionRecognizerRunnerViewControllerDelegate.h +++ b/MicroBlink.framework/Headers/MBDetectionRecognizerRunnerViewControllerDelegate.h @@ -1,6 +1,6 @@ // // MBDetectionRecognizerRunnerViewDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 18/12/2017. // diff --git a/MicroBlink.framework/Headers/MBDetectionStatus.h b/MicroBlink.framework/Headers/MBDetectionStatus.h index 7620260..19d45f4 100644 --- a/MicroBlink.framework/Headers/MBDetectionStatus.h +++ b/MicroBlink.framework/Headers/MBDetectionStatus.h @@ -1,12 +1,12 @@ // // MBDetectionStatus.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 08/12/2017. // /** - * Status of the object detection in MicroBlink SDK + * Status of the object detection in Microblink SDK */ typedef NS_OPTIONS(NSInteger, MBDetectionStatus) { diff --git a/MicroBlink.framework/Headers/MBDetector.h b/MicroBlink.framework/Headers/MBDetector.h index 7d5e29f..f64c127 100644 --- a/MicroBlink.framework/Headers/MBDetector.h +++ b/MicroBlink.framework/Headers/MBDetector.h @@ -1,12 +1,12 @@ // // MBDetector.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 19/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBEntity.h" #import "MBDetectorResult.h" diff --git a/MicroBlink.framework/Headers/MBDetectorRecognizer.h b/MicroBlink.framework/Headers/MBDetectorRecognizer.h index eeecbd9..49c2e72 100644 --- a/MicroBlink.framework/Headers/MBDetectorRecognizer.h +++ b/MicroBlink.framework/Headers/MBDetectorRecognizer.h @@ -1,16 +1,16 @@ // // MBDetectorRecognizer.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 22/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBTemplatingRecognizer.h" #import "MBDetectorRecognizerResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" @class MBQuadWithSizeDetector; diff --git a/MicroBlink.framework/Headers/MBDetectorRecognizerResult.h b/MicroBlink.framework/Headers/MBDetectorRecognizerResult.h index adfcfce..be5bbca 100644 --- a/MicroBlink.framework/Headers/MBDetectorRecognizerResult.h +++ b/MicroBlink.framework/Headers/MBDetectorRecognizerResult.h @@ -1,12 +1,12 @@ // // MBDetectorRecognizerResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 22/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBTemplatingRecognizerResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBDetectorResult.h b/MicroBlink.framework/Headers/MBDetectorResult.h index 971509e..c0228e2 100644 --- a/MicroBlink.framework/Headers/MBDetectorResult.h +++ b/MicroBlink.framework/Headers/MBDetectorResult.h @@ -1,12 +1,12 @@ // // MBDetectorResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 19/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBDetectionStatus.h" /** diff --git a/MicroBlink.framework/Headers/MBDewarpPolicy.h b/MicroBlink.framework/Headers/MBDewarpPolicy.h index 24dd62d..39104da 100644 --- a/MicroBlink.framework/Headers/MBDewarpPolicy.h +++ b/MicroBlink.framework/Headers/MBDewarpPolicy.h @@ -1,12 +1,12 @@ // // MBDewarpPolicy.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 21/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBDisplayableDetection.h b/MicroBlink.framework/Headers/MBDisplayableDetection.h index da8166f..2001815 100644 --- a/MicroBlink.framework/Headers/MBDisplayableDetection.h +++ b/MicroBlink.framework/Headers/MBDisplayableDetection.h @@ -1,6 +1,6 @@ // // MBDisplayableDetection.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 08/12/2017. // @@ -8,7 +8,7 @@ #import "MBDisplayableObject.h" #import "MBDetectionStatus.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBDisplayableObject.h b/MicroBlink.framework/Headers/MBDisplayableObject.h index a9cb11b..05dae59 100644 --- a/MicroBlink.framework/Headers/MBDisplayableObject.h +++ b/MicroBlink.framework/Headers/MBDisplayableObject.h @@ -1,12 +1,12 @@ // // MBDisplayableObject.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 08/12/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBDisplayablePointsDetection.h b/MicroBlink.framework/Headers/MBDisplayablePointsDetection.h index c010b24..018074d 100644 --- a/MicroBlink.framework/Headers/MBDisplayablePointsDetection.h +++ b/MicroBlink.framework/Headers/MBDisplayablePointsDetection.h @@ -1,12 +1,12 @@ // // MBDisplayablePointsDetection.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 19/12/2017. // #import "MBDisplayableDetection.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBDisplayableQuadDetection.h b/MicroBlink.framework/Headers/MBDisplayableQuadDetection.h index ebc3ae1..48f6972 100644 --- a/MicroBlink.framework/Headers/MBDisplayableQuadDetection.h +++ b/MicroBlink.framework/Headers/MBDisplayableQuadDetection.h @@ -1,6 +1,6 @@ // // MBDisplayableQuadDetection.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 08/12/2017. // @@ -8,7 +8,7 @@ #import "MBDisplayableDetection.h" #import "MBQuadrangle.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBDocumentDetector.h b/MicroBlink.framework/Headers/MBDocumentDetector.h index 6edc0a6..7b2d8c0 100644 --- a/MicroBlink.framework/Headers/MBDocumentDetector.h +++ b/MicroBlink.framework/Headers/MBDocumentDetector.h @@ -1,16 +1,16 @@ // // MBDocumentDetector.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBQuadWithSizeDetector.h" #import "MBDocumentDetectorResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" #import "MBDocumentSpecification.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBDocumentDetectorResult.h b/MicroBlink.framework/Headers/MBDocumentDetectorResult.h index 489bd0f..22f6b93 100644 --- a/MicroBlink.framework/Headers/MBDocumentDetectorResult.h +++ b/MicroBlink.framework/Headers/MBDocumentDetectorResult.h @@ -1,13 +1,13 @@ // // MBDocumentDetectorResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBQuadWithSizeDetectorResult.h" #import "MBDocumentSpecification.h" diff --git a/MicroBlink.framework/Headers/MBDocumentOverlaySettings.h b/MicroBlink.framework/Headers/MBDocumentOverlaySettings.h index d019d98..8fb011d 100644 --- a/MicroBlink.framework/Headers/MBDocumentOverlaySettings.h +++ b/MicroBlink.framework/Headers/MBDocumentOverlaySettings.h @@ -1,6 +1,6 @@ // // MBDocumentOverlaySettings.h -// MicroBlink +// Microblink // // Created by Dino Gustin on 04/05/2018. // @@ -15,7 +15,34 @@ NS_ASSUME_NONNULL_BEGIN MB_CLASS_AVAILABLE_IOS(8.0) @interface MBDocumentOverlaySettings : MBBaseOcrOverlaySettings -@property (nonatomic) BOOL viewfinderMoveable; +/** + * Gets/sets tootlip text that is defines under document view finder. + * + * Default: string defined by "photopay_id_position_tooltip" + * key in strings file in Microblink.bundle + */ +@property(nonatomic, strong) NSString *tooltipText; + +/** + * Returns/sets glare status message that is shown if glare detection is turned on + * and it is shown if glare is detected. + * + * Default: string defined by "photopay_glare_status" + * key in strings file in Microblink.bundle + */ +@property(nonatomic, strong) NSString *glareStatusMessage; + +/** + * Gets/sets tooltip visibility + */ +@property(nonatomic, assign) BOOL showTooltip; + +/** + * Gets/sets capturing of high resolution image + * + * Default: NO + */ +@property(nonatomic, assign) BOOL captureHighResImage; @end diff --git a/MicroBlink.framework/Headers/MBDocumentSpecification.h b/MicroBlink.framework/Headers/MBDocumentSpecification.h index e436a7a..9b237c0 100644 --- a/MicroBlink.framework/Headers/MBDocumentSpecification.h +++ b/MicroBlink.framework/Headers/MBDocumentSpecification.h @@ -3,11 +3,11 @@ // BlinkIdFramework // // Created by Jura on 07/01/16. -// Copyright © 2016 MicroBlink Ltd. All rights reserved. +// Copyright © 2016 Microblink Ltd. All rights reserved. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBDotsResultSubview.h b/MicroBlink.framework/Headers/MBDotsResultSubview.h index a5871c4..0e7aa10 100644 --- a/MicroBlink.framework/Headers/MBDotsResultSubview.h +++ b/MicroBlink.framework/Headers/MBDotsResultSubview.h @@ -3,12 +3,11 @@ // PhotoPayFramework // // Created by Marko Mihovilić on 05/09/14. -// Copyright (c) 2014 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2014 Microblink Ltd. All rights reserved. // #import "MBSubview.h" #import "MBPointDetectorSubview.h" -#import "MBOcrLayoutSubview.h" NS_ASSUME_NONNULL_BEGIN @@ -16,7 +15,7 @@ NS_ASSUME_NONNULL_BEGIN * Overlay subview presenting status of OCR detection. Dots are displayed over locations of detected characters. */ MB_CLASS_AVAILABLE_IOS(8.0) -@interface MBDotsResultSubview : MBSubview +@interface MBDotsResultSubview : MBSubview /** * Foreground color of dots. diff --git a/MicroBlink.framework/Headers/MBDotsSubview.h b/MicroBlink.framework/Headers/MBDotsSubview.h index 352371c..e70667c 100644 --- a/MicroBlink.framework/Headers/MBDotsSubview.h +++ b/MicroBlink.framework/Headers/MBDotsSubview.h @@ -3,7 +3,7 @@ // BarcodeFramework // // Created by Jura on 06/06/14. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #import "MBSubview.h" @@ -37,9 +37,11 @@ MB_CLASS_AVAILABLE_IOS(8.0) /** Initializes the layer */ -- (instancetype)initWithFrame:(CGRect)frame NS_DESIGNATED_INITIALIZER; +- (nonnull instancetype)initWithFrame:(CGRect)frame; -- (nullable instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE; +- (nonnull instancetype)initWithCoder:(NSCoder *)aDecoder; + +- (instancetype)init NS_UNAVAILABLE; @end diff --git a/MicroBlink.framework/Headers/MBEmailParser.h b/MicroBlink.framework/Headers/MBEmailParser.h index 946f1b0..cd94264 100644 --- a/MicroBlink.framework/Headers/MBEmailParser.h +++ b/MicroBlink.framework/Headers/MBEmailParser.h @@ -1,15 +1,15 @@ // // MBEmailParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParser.h" #import "MBEmailParserResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBEmailParserResult.h b/MicroBlink.framework/Headers/MBEmailParserResult.h index b097c5b..6a67cad 100644 --- a/MicroBlink.framework/Headers/MBEmailParserResult.h +++ b/MicroBlink.framework/Headers/MBEmailParserResult.h @@ -1,12 +1,12 @@ // // MBEmailParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParserResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBEntities.h b/MicroBlink.framework/Headers/MBEntities.h new file mode 100644 index 0000000..71db273 --- /dev/null +++ b/MicroBlink.framework/Headers/MBEntities.h @@ -0,0 +1,9 @@ +// +// MBEntities.h +// MicroBlinkFramework +// +// Created by Dino Gustin on 06/06/18. +// Copyright (c) 2012 MicroBlink Ltd. All rights reserved. +// + +#import "MBBlinkInputEntities.h" diff --git a/MicroBlink.framework/Headers/MBEntity.h b/MicroBlink.framework/Headers/MBEntity.h index b699ea8..1c5fdd0 100644 --- a/MicroBlink.framework/Headers/MBEntity.h +++ b/MicroBlink.framework/Headers/MBEntity.h @@ -1,13 +1,13 @@ // // MBEntity.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 02/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBFieldByFieldOverlaySettings.h b/MicroBlink.framework/Headers/MBFieldByFieldOverlaySettings.h index 51d1763..30b3c99 100644 --- a/MicroBlink.framework/Headers/MBFieldByFieldOverlaySettings.h +++ b/MicroBlink.framework/Headers/MBFieldByFieldOverlaySettings.h @@ -1,6 +1,6 @@ // // MBFieldByFieldUISettings.h -// MicroBlink +// Microblink // // Created by Dino Gustin on 04/05/2018. // @@ -49,6 +49,29 @@ MB_INIT_UNAVAILABLE; */ @property(nonatomic) NSUInteger consecutiveScanThreshold; +/** + * Background color of successful scan result + */ +@property(nonatomic) UIColor *scanResultViewColor; + +/** + * Returns/sets next button description text that is shown above next button + * when there are still scanning elements left to be scanned + * + * Default: string defined by "field_by_field_next_button_description" + * key in strings file in Microblink.bundle + */ +@property(nonatomic, strong) NSString *nextButtonDescriptionText; + +/** + * Returns/sets next button description text that is shown above next button + * when there are no scanning elements left to be scanned + * + * Default: string defined by "field_by_field_last_next_button_description" + * key in strings file in Microblink.bundle + */ +@property(nonatomic, strong) NSString *nextButtonLastDescriptionText; + @end NS_ASSUME_NONNULL_END diff --git a/MicroBlink.framework/Headers/MBFixedDewarpPolicy.h b/MicroBlink.framework/Headers/MBFixedDewarpPolicy.h index 4fbcc9d..ecacdb2 100644 --- a/MicroBlink.framework/Headers/MBFixedDewarpPolicy.h +++ b/MicroBlink.framework/Headers/MBFixedDewarpPolicy.h @@ -1,12 +1,12 @@ // // MBFixedDewarpPolicy.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 21/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBDewarpPolicy.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBFrameGrabberRecognizer.h b/MicroBlink.framework/Headers/MBFrameGrabberRecognizer.h index 2208bad..d23d82b 100644 --- a/MicroBlink.framework/Headers/MBFrameGrabberRecognizer.h +++ b/MicroBlink.framework/Headers/MBFrameGrabberRecognizer.h @@ -1,12 +1,12 @@ // // MBFrameGrabberRecognizer.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 02/01/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizer.h" @protocol MBFrameGrabberRecognizerDelegate; diff --git a/MicroBlink.framework/Headers/MBGeometry.h b/MicroBlink.framework/Headers/MBGeometry.h index c72fcb3..a9194ec 100644 --- a/MicroBlink.framework/Headers/MBGeometry.h +++ b/MicroBlink.framework/Headers/MBGeometry.h @@ -3,7 +3,7 @@ // BarcodeFramework // // Created by Jura on 03/08/14. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #import "TargetConditionals.h" @@ -15,7 +15,7 @@ #import #endif -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #define NULL_NUMBER INFINITY #define NULL_POINT CGPointMake(NULL_NUMBER, NULL_NUMBER) diff --git a/MicroBlink.framework/Headers/MBGlareRecognizerRunnerDelegate.h b/MicroBlink.framework/Headers/MBGlareRecognizerRunnerDelegate.h index f0f3a4e..d1e9eac 100644 --- a/MicroBlink.framework/Headers/MBGlareRecognizerRunnerDelegate.h +++ b/MicroBlink.framework/Headers/MBGlareRecognizerRunnerDelegate.h @@ -1,6 +1,6 @@ // // MBGlareRecognizerRunnerDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by DoDo on 24/04/2018. // diff --git a/MicroBlink.framework/Headers/MBGlareRecognizerRunnerViewControllerDelegate.h b/MicroBlink.framework/Headers/MBGlareRecognizerRunnerViewControllerDelegate.h index e53303f..c1f4a59 100644 --- a/MicroBlink.framework/Headers/MBGlareRecognizerRunnerViewControllerDelegate.h +++ b/MicroBlink.framework/Headers/MBGlareRecognizerRunnerViewControllerDelegate.h @@ -1,6 +1,6 @@ // // MBGlareRecognizerRunnerViewControllerDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by DoDo on 24/04/2018. // diff --git a/MicroBlink.framework/Headers/MBGlareStatusSubview.h b/MicroBlink.framework/Headers/MBGlareStatusSubview.h new file mode 100644 index 0000000..b68c839 --- /dev/null +++ b/MicroBlink.framework/Headers/MBGlareStatusSubview.h @@ -0,0 +1,32 @@ +// +// MBGlareStatusSubview.h +// MicroblinkDev +// +// Created by Jura Skrlec on 14/09/2017. +// +// + +#import "MBSubview.h" + +NS_ASSUME_NONNULL_BEGIN + +/** + * Overlay subview presenting the status of glare detection. + * The subview is presented as translucent view with detection status label in the center of ID Card View Finder View + */ +MB_CLASS_AVAILABLE_IOS(8.0) +@interface MBGlareStatusSubview : MBSubview + +@property (nonatomic) UILabel *label; + +- (instancetype)init NS_UNAVAILABLE; + +- (instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE; + +- (instancetype)initWithFrame:(CGRect)frame NS_DESIGNATED_INITIALIZER; + +- (void)glareDetectionFinishedWithResult:(BOOL)glareFound; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MicroBlink.framework/Headers/MBIbanParser.h b/MicroBlink.framework/Headers/MBIbanParser.h index a2ed86b..8ca2b82 100644 --- a/MicroBlink.framework/Headers/MBIbanParser.h +++ b/MicroBlink.framework/Headers/MBIbanParser.h @@ -1,15 +1,15 @@ // // MBIbanParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParser.h" #import "MBIbanParserResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBIbanParserResult.h b/MicroBlink.framework/Headers/MBIbanParserResult.h index a2bc725..205fe47 100644 --- a/MicroBlink.framework/Headers/MBIbanParserResult.h +++ b/MicroBlink.framework/Headers/MBIbanParserResult.h @@ -1,13 +1,13 @@ // // MBIbanParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParserResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBImage.h b/MicroBlink.framework/Headers/MBImage.h index eaa7a51..9a8f285 100644 --- a/MicroBlink.framework/Headers/MBImage.h +++ b/MicroBlink.framework/Headers/MBImage.h @@ -3,12 +3,12 @@ // BlinkIdFramework // // Created by Dino on 25/02/16. -// Copyright © 2016 MicroBlink Ltd. All rights reserved. +// Copyright © 2016 Microblink Ltd. All rights reserved. // #import "Foundation/Foundation.h" #import "CoreMedia/CoreMedia.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN @@ -86,10 +86,15 @@ MB_CLASS_AVAILABLE_IOS(8.0) + (instancetype)imageWithUIImage:(UIImage *)image; /** - * Creates PPImage around CVImageBufferRef. + * Creates MBImage around CVImageBufferRef. */ + (instancetype)imageWithCmSampleBuffer:(CMSampleBufferRef)buffer; +/** + * Creates MBImage around CVPixelBufferRef. + */ ++ (instancetype)imageWithCvPixelBuffer:(CVPixelBufferRef)buffer; + @end NS_ASSUME_NONNULL_END diff --git a/MicroBlink.framework/Headers/MBImageProcessingRecognizerRunnerDelegate.h b/MicroBlink.framework/Headers/MBImageProcessingRecognizerRunnerDelegate.h index 98da5de..887cfd3 100644 --- a/MicroBlink.framework/Headers/MBImageProcessingRecognizerRunnerDelegate.h +++ b/MicroBlink.framework/Headers/MBImageProcessingRecognizerRunnerDelegate.h @@ -1,6 +1,6 @@ // // MBImageProcessingDelegate.h -// MicroBlink +// Microblink // // Created by DoDo on 07/05/2018. // diff --git a/MicroBlink.framework/Headers/MBImageReturnProcessor.h b/MicroBlink.framework/Headers/MBImageReturnProcessor.h index 955ecbc..a834eae 100644 --- a/MicroBlink.framework/Headers/MBImageReturnProcessor.h +++ b/MicroBlink.framework/Headers/MBImageReturnProcessor.h @@ -1,6 +1,6 @@ // // MBImageReturnProcessor.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 23/03/2018. // @@ -8,8 +8,8 @@ #import #import "MBProcessor.h" #import "MBImageReturnProcessorResult.h" -#import "MBMicroBlinkDefines.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkDefines.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBImageReturnProcessorResult.h b/MicroBlink.framework/Headers/MBImageReturnProcessorResult.h index 7d95fe0..17f4e4e 100644 --- a/MicroBlink.framework/Headers/MBImageReturnProcessorResult.h +++ b/MicroBlink.framework/Headers/MBImageReturnProcessorResult.h @@ -1,12 +1,12 @@ // // MBImageReturnProcessorResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 23/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBProcessorResult.h" @class MBImage; diff --git a/MicroBlink.framework/Headers/MBLicensePlatesParser.h b/MicroBlink.framework/Headers/MBLicensePlatesParser.h index 8e08dd0..0ad0e14 100644 --- a/MicroBlink.framework/Headers/MBLicensePlatesParser.h +++ b/MicroBlink.framework/Headers/MBLicensePlatesParser.h @@ -1,15 +1,15 @@ // // MBLicensePlatesParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParser.h" #import "MBLicensePlatesParserResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBLicensePlatesParserResult.h b/MicroBlink.framework/Headers/MBLicensePlatesParserResult.h index f7afd98..54661ba 100644 --- a/MicroBlink.framework/Headers/MBLicensePlatesParserResult.h +++ b/MicroBlink.framework/Headers/MBLicensePlatesParserResult.h @@ -1,12 +1,12 @@ // // MBLicensePlatesParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParserResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBMicroBlinkDefines.h b/MicroBlink.framework/Headers/MBMicroBlinkDefines.h index e46bc16..5fa8e9a 100644 --- a/MicroBlink.framework/Headers/MBMicroBlinkDefines.h +++ b/MicroBlink.framework/Headers/MBMicroBlinkDefines.h @@ -1,6 +1,6 @@ // // MBMicroblinkDefines.h -// MicroBlinkDev +// MicroblinkDev // // Created by DoDo on 12/04/2018. // @@ -8,8 +8,9 @@ #ifndef MBMicroblinkDefines_h #define MBMicroblinkDefines_h -#import "PPMicroBlinkDefines.h" -#import "MBMicroBlinkInitialization.h" +#import "PPMicroblinkDefines.h" +#import "MBMicroblinkInitialization.h" +#import "AvailabilityMacros.h" #if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) # define MB_FINAL __attribute__((objc_subclassing_restricted)) @@ -18,5 +19,8 @@ #endif #define MB_CLASS_AVAILABLE_IOS PP_CLASS_AVAILABLE_IOS +#define MB_CLASS_DEPRECATED_IOS PP_CLASS_DEPRECATED_IOS +#define MB_PROPERTY_DEPRECATED DEPRECATED_ATTRIBUTE +#define MB_ATTRIBUTE_DEPRECATED DEPRECATED_ATTRIBUTE #endif /* MBMicroblinkDefines_h */ diff --git a/MicroBlink.framework/Headers/MBMicroBlinkInitialization.h b/MicroBlink.framework/Headers/MBMicroBlinkInitialization.h index 4603762..d36a093 100644 --- a/MicroBlink.framework/Headers/MBMicroBlinkInitialization.h +++ b/MicroBlink.framework/Headers/MBMicroBlinkInitialization.h @@ -1,12 +1,12 @@ // -// MBMicroBlinkInitialization.h +// MBMicroblinkInitialization.h // Pdf417Mobi // // Created by Jura Skrlec on 30/01/2018. // -#ifndef MBMicroBlinkInitialization_h -#define MBMicroBlinkInitialization_h +#ifndef MBMicroblinkInitialization_h +#define MBMicroblinkInitialization_h #define MB_INIT \ - (instancetype)init NS_DESIGNATED_INITIALIZER; \ @@ -14,4 +14,4 @@ #define MB_INIT_UNAVAILABLE \ - (instancetype)init NS_UNAVAILABLE; \ -#endif /* MBMicroBlinkInitialization_h */ +#endif /* MBMicroblinkInitialization_h */ diff --git a/MicroBlink.framework/Headers/MBMicroblinkApp.h b/MicroBlink.framework/Headers/MBMicroblinkApp.h index 3a01abd..87a44a5 100644 --- a/MicroBlink.framework/Headers/MBMicroblinkApp.h +++ b/MicroBlink.framework/Headers/MBMicroblinkApp.h @@ -7,7 +7,7 @@ // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #ifdef __OBJC__ #import @@ -71,10 +71,9 @@ MB_CLASS_AVAILABLE_IOS(8.0) /** Returns true if the help was already shown */ - (BOOL)isHelpShown; -/** - * This method check existance of the default resources bundle Microblink.bundle, - * and throws an exception if it's missing +/** + * Returns the default resources bundle. If it doesn't exist, it will be nil. */ -+ (NSBundle *)verifyAndGetDefaultResourcesBundle; ++ (NSBundle *)getDefaultResourcesBundle; @end diff --git a/MicroBlink.framework/Headers/MBMicroblinkSDK.h b/MicroBlink.framework/Headers/MBMicroblinkSDK.h index 0647513..de7fd46 100644 --- a/MicroBlink.framework/Headers/MBMicroblinkSDK.h +++ b/MicroBlink.framework/Headers/MBMicroblinkSDK.h @@ -1,12 +1,13 @@ // // MBMicroblinkSDK.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 14/11/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" +#import "MBCameraSettings.h" NS_ASSUME_NONNULL_BEGIN /** @@ -30,7 +31,7 @@ MB_CLASS_AVAILABLE_IOS(8.0) * is equal to Microblink.bundle located in Main app bundle. * * i.e, this is by default initialized to: - * [NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:@"MicroBlink" ofType:@"bundle"]; + * [NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:@"Microblink" ofType:@"bundle"]; * */ @property (nonatomic, strong) NSBundle *resourcesBundle; @@ -96,6 +97,18 @@ MB_CLASS_AVAILABLE_IOS(8.0) */ + (NSString *)buildVersionString; +/** + * This method returns true when scanning is unsupported on a specific device. + * Error object contains description of the reason for that. + * + * @param type The camera type you want to check for. + * @param error If scanning is not supported, when method this method returns, this parameter contains an NSError object that describes the + * problem. If you are not interested in possible errors, pass in NULL. + * + * @return YES if scanning is not supported, NO otherwise. + */ ++ (BOOL)isScanningUnsupportedForCameraType:(MBCameraType)type error:(NSError *_Nullable *_Nullable)error NS_SWIFT_NOTHROW; + @end NS_ASSUME_NONNULL_END diff --git a/MicroBlink.framework/Headers/MBModernViewfinderSubview.h b/MicroBlink.framework/Headers/MBModernViewfinderSubview.h index d83bc98..0127963 100644 --- a/MicroBlink.framework/Headers/MBModernViewfinderSubview.h +++ b/MicroBlink.framework/Headers/MBModernViewfinderSubview.h @@ -3,7 +3,7 @@ // PhotoPayFramework // // Created by Marko Mihovilić on 02/09/14. -// Copyright (c) 2014 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2014 Microblink Ltd. All rights reserved. // #import "MBSubview.h" diff --git a/MicroBlink.framework/Headers/MBMrtdDetector.h b/MicroBlink.framework/Headers/MBMrtdDetector.h index d492cd5..e51bd45 100644 --- a/MicroBlink.framework/Headers/MBMrtdDetector.h +++ b/MicroBlink.framework/Headers/MBMrtdDetector.h @@ -1,15 +1,15 @@ // // MBMrtdDetector.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBQuadWithSizeDetector.h" #import "MBMrtdDetectorResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" #import "MBMrtdSpecification.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBMrtdDetectorResult.h b/MicroBlink.framework/Headers/MBMrtdDetectorResult.h index e70a5ff..b3486d6 100644 --- a/MicroBlink.framework/Headers/MBMrtdDetectorResult.h +++ b/MicroBlink.framework/Headers/MBMrtdDetectorResult.h @@ -1,12 +1,12 @@ // // MBMrtdDetectorResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBQuadWithSizeDetectorResult.h" #import "MBQuadrangle.h" diff --git a/MicroBlink.framework/Headers/MBMrtdSpecification.h b/MicroBlink.framework/Headers/MBMrtdSpecification.h index 252f9e1..614e2fd 100644 --- a/MicroBlink.framework/Headers/MBMrtdSpecification.h +++ b/MicroBlink.framework/Headers/MBMrtdSpecification.h @@ -1,12 +1,12 @@ // // MBMrtdSpecification.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 18/10/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBNativeResult.h b/MicroBlink.framework/Headers/MBNativeResult.h index 45efdc8..a66880d 100644 --- a/MicroBlink.framework/Headers/MBNativeResult.h +++ b/MicroBlink.framework/Headers/MBNativeResult.h @@ -3,7 +3,7 @@ // BlinkIdFramework // // Created by DoDo on 07/11/2016. -// Copyright © 2016 MicroBlink Ltd. All rights reserved. +// Copyright © 2016 Microblink Ltd. All rights reserved. // #ifndef PPResult_h diff --git a/MicroBlink.framework/Headers/MBNoUpScalingDewarpPolicy.h b/MicroBlink.framework/Headers/MBNoUpScalingDewarpPolicy.h index 0a04a19..5661099 100644 --- a/MicroBlink.framework/Headers/MBNoUpScalingDewarpPolicy.h +++ b/MicroBlink.framework/Headers/MBNoUpScalingDewarpPolicy.h @@ -1,12 +1,12 @@ // // MBNoUpScalingDewarpPolicy.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 21/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBDewarpPolicy.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBOcrEngineOptions.h b/MicroBlink.framework/Headers/MBOcrEngineOptions.h index 69a22cd..a16a741 100644 --- a/MicroBlink.framework/Headers/MBOcrEngineOptions.h +++ b/MicroBlink.framework/Headers/MBOcrEngineOptions.h @@ -3,13 +3,13 @@ // BlinkOcrFramework // // Created by Jura on 30/04/15. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #import #import "MBOcrFont.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBBaseOcrEngineOptions.h" NS_ASSUME_NONNULL_BEGIN @@ -99,6 +99,24 @@ MB_CLASS_AVAILABLE_IOS(8.0) */ @property (nonatomic, assign) PPDocumentType documentType; +/** + * Minimal height of the line of text given in pixels. All chars smaller than this value will be ignored. + * + * Setting the minimal line height can reduce the noise in OCR results. + * + * Default: 10 + */ +@property (nonatomic, assign) NSUInteger minimalLineHeight; + +/** + * Maximal height of the line of text given in pixels. + * + * Setting the maximal line height can reduce the noise in OCR results. + * + * Default: 200 + */ +@property (nonatomic, assign) NSUInteger maximalLineHeight; + /** * Specifies if the image processing is performed on image * diff --git a/MicroBlink.framework/Headers/MBOcrFont.h b/MicroBlink.framework/Headers/MBOcrFont.h index 283a61f..9e47edb 100644 --- a/MicroBlink.framework/Headers/MBOcrFont.h +++ b/MicroBlink.framework/Headers/MBOcrFont.h @@ -3,7 +3,7 @@ // BlinkOcrFramework // // Created by Jura on 29/07/15. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #ifndef BlinkOcrFramework_PPOcrFont_h diff --git a/MicroBlink.framework/Headers/MBOcrLayout.h b/MicroBlink.framework/Headers/MBOcrLayout.h index 20e26de..463965f 100644 --- a/MicroBlink.framework/Headers/MBOcrLayout.h +++ b/MicroBlink.framework/Headers/MBOcrLayout.h @@ -1,9 +1,9 @@ // // MBOcrLayout.h -// MicroBlinkFramework +// MicroblinkFramework // // Created by Jura on 01/02/14. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #import @@ -11,7 +11,7 @@ #import "MBOcrFont.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" @class MBOcrBlock; @class MBOcrLine; diff --git a/MicroBlink.framework/Headers/MBOcrLayoutSubview.h b/MicroBlink.framework/Headers/MBOcrLayoutSubview.h index cbf16c2..ea02d7e 100644 --- a/MicroBlink.framework/Headers/MBOcrLayoutSubview.h +++ b/MicroBlink.framework/Headers/MBOcrLayoutSubview.h @@ -1,6 +1,6 @@ // // MBOcrLayoutSubview.h -// MicroBlinkDev +// MicroblinkDev // // Created by Dino Gustin on 02/05/2018. // diff --git a/MicroBlink.framework/Headers/MBOcrRecognizerRunnerDelegate.h b/MicroBlink.framework/Headers/MBOcrRecognizerRunnerDelegate.h index e640d7c..2468ffe 100644 --- a/MicroBlink.framework/Headers/MBOcrRecognizerRunnerDelegate.h +++ b/MicroBlink.framework/Headers/MBOcrRecognizerRunnerDelegate.h @@ -1,6 +1,6 @@ // // MBOcrRecognizerRunnerDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/12/2017. // diff --git a/MicroBlink.framework/Headers/MBOcrRecognizerRunnerViewControllerDelegate.h b/MicroBlink.framework/Headers/MBOcrRecognizerRunnerViewControllerDelegate.h index d75aeba..f04aa54 100644 --- a/MicroBlink.framework/Headers/MBOcrRecognizerRunnerViewControllerDelegate.h +++ b/MicroBlink.framework/Headers/MBOcrRecognizerRunnerViewControllerDelegate.h @@ -1,6 +1,6 @@ // // MBOcrRecognizerRunnerViewDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 18/12/2017. // diff --git a/MicroBlink.framework/Headers/MBOcrResultSubview.h b/MicroBlink.framework/Headers/MBOcrResultSubview.h index 9724a4c..2a45473 100644 --- a/MicroBlink.framework/Headers/MBOcrResultSubview.h +++ b/MicroBlink.framework/Headers/MBOcrResultSubview.h @@ -3,7 +3,7 @@ // PhotoPayFramework // // Created by Jura on 01/02/14. -// Copyright (c) 2014 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2014 Microblink Ltd. All rights reserved. // #import "MBSubview.h" diff --git a/MicroBlink.framework/Headers/MBOverlayContainerViewController.h b/MicroBlink.framework/Headers/MBOverlayContainerViewController.h index f81ecb6..acde339 100644 --- a/MicroBlink.framework/Headers/MBOverlayContainerViewController.h +++ b/MicroBlink.framework/Headers/MBOverlayContainerViewController.h @@ -3,7 +3,7 @@ // PhotoMathFramework // // Created by Marko Mihovilić on 30/03/16. -// Copyright © 2016 MicroBlink Ltd. All rights reserved. +// Copyright © 2016 Microblink Ltd. All rights reserved. // #import "MBRecognizerRunnerViewController.h" diff --git a/MicroBlink.framework/Headers/MBOverlaySettings.h b/MicroBlink.framework/Headers/MBOverlaySettings.h index 3b32a39..3b0af8c 100644 --- a/MicroBlink.framework/Headers/MBOverlaySettings.h +++ b/MicroBlink.framework/Headers/MBOverlaySettings.h @@ -3,14 +3,14 @@ // PhotoPayFramework // // Created by Jura on 24/02/15. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #import #import #import "MBRecognizerCollection.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBOverlayViewController.h b/MicroBlink.framework/Headers/MBOverlayViewController.h index c2bd2b0..edad4dc 100644 --- a/MicroBlink.framework/Headers/MBOverlayViewController.h +++ b/MicroBlink.framework/Headers/MBOverlayViewController.h @@ -3,14 +3,14 @@ // PhotoPayFramework // // Created by Jurica Cerovec on 5/28/13. -// Copyright (c) 2013 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2013 Microblink Ltd. All rights reserved. // #import #import #import "MBRecognizerRunnerViewController.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBOverlayContainerViewController.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBParser.h b/MicroBlink.framework/Headers/MBParser.h index 6d7d82c..6923d2c 100644 --- a/MicroBlink.framework/Headers/MBParser.h +++ b/MicroBlink.framework/Headers/MBParser.h @@ -1,11 +1,11 @@ // // MBParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 06/03/2018. // -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBEntity.h" #import "MBParserResult.h" @@ -22,6 +22,13 @@ MB_CLASS_AVAILABLE_IOS(8.0) */ @property (nonatomic, readonly, weak) MBParserResult *baseResult; +/** + * Defines/returns whether the parser configured with this parser settings object will be required or optional. + * + * Default: YES + */ +@property (nonatomic, assign) BOOL required; + @end NS_ASSUME_NONNULL_END diff --git a/MicroBlink.framework/Headers/MBParserGroupProcessor.h b/MicroBlink.framework/Headers/MBParserGroupProcessor.h index a59e413..e54f882 100644 --- a/MicroBlink.framework/Headers/MBParserGroupProcessor.h +++ b/MicroBlink.framework/Headers/MBParserGroupProcessor.h @@ -1,6 +1,6 @@ // // MBParserGroupProcessor.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 02/03/2018. // @@ -8,8 +8,8 @@ #import #import "MBProcessor.h" #import "MBParserGroupProcessorResult.h" -#import "MBMicroBlinkDefines.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkDefines.h" +#import "MBMicroblinkInitialization.h" @class MBParser; diff --git a/MicroBlink.framework/Headers/MBParserGroupProcessorResult.h b/MicroBlink.framework/Headers/MBParserGroupProcessorResult.h index 77d10bb..1d5267a 100644 --- a/MicroBlink.framework/Headers/MBParserGroupProcessorResult.h +++ b/MicroBlink.framework/Headers/MBParserGroupProcessorResult.h @@ -1,12 +1,12 @@ // // MBParserGroupProcessorResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 02/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBProcessorResult.h" #import "MBOcrLayout.h" diff --git a/MicroBlink.framework/Headers/MBParserResult.h b/MicroBlink.framework/Headers/MBParserResult.h index abdc7b9..6e906a0 100644 --- a/MicroBlink.framework/Headers/MBParserResult.h +++ b/MicroBlink.framework/Headers/MBParserResult.h @@ -1,12 +1,12 @@ // // MBParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 06/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" /** * Enumeration of posibble parser result state diff --git a/MicroBlink.framework/Headers/MBPdf417Recognizer.h b/MicroBlink.framework/Headers/MBPdf417Recognizer.h index 0714023..43b1d2b 100644 --- a/MicroBlink.framework/Headers/MBPdf417Recognizer.h +++ b/MicroBlink.framework/Headers/MBPdf417Recognizer.h @@ -1,16 +1,16 @@ // // MBPdf417Recognizer.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 27/11/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizer.h" #import "MBPdf417RecognizerResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN @@ -44,7 +44,7 @@ MB_INIT * * Default: NO */ -@property (nonatomic, assign) BOOL allowNullQuietZone; +@property (nonatomic, assign) BOOL nullQuietZoneAllowed; /** * Set this to YES to allow scanning barcodes with inverted intensities diff --git a/MicroBlink.framework/Headers/MBPdf417RecognizerResult.h b/MicroBlink.framework/Headers/MBPdf417RecognizerResult.h index 1539694..2c9f322 100644 --- a/MicroBlink.framework/Headers/MBPdf417RecognizerResult.h +++ b/MicroBlink.framework/Headers/MBPdf417RecognizerResult.h @@ -1,13 +1,13 @@ // // MBPdf417RecognizerResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 27/11/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizerResult.h" #import "MBBarcodeResult.h" @@ -24,18 +24,18 @@ MB_INIT_UNAVAILABLE /** * Byte array with result of the scan */ -- (NSData *_Nullable)data; +@property(nonatomic, strong, readonly, nullable) NSData* rawData; /** * Retrieves string content of scanned data */ -- (NSString *)stringData; +@property(nonatomic, strong, readonly, nullable) NSString* stringData; /** * Flag indicating uncertain scanning data * E.g obtained from damaged barcode. */ -- (BOOL)isUncertain; +@property(nonatomic, assign, readonly) BOOL uncertain; /** * Type of the barcode scanned diff --git a/MicroBlink.framework/Headers/MBPointDetectorSubview.h b/MicroBlink.framework/Headers/MBPointDetectorSubview.h index 4ed3752..39c36aa 100644 --- a/MicroBlink.framework/Headers/MBPointDetectorSubview.h +++ b/MicroBlink.framework/Headers/MBPointDetectorSubview.h @@ -1,6 +1,6 @@ // // MBPointDetectorSubview.h -// MicroBlinkDev +// MicroblinkDev // // Created by Dino Gustin on 02/05/2018. // diff --git a/MicroBlink.framework/Headers/MBProcessor.h b/MicroBlink.framework/Headers/MBProcessor.h index 2270c31..08c03c2 100644 --- a/MicroBlink.framework/Headers/MBProcessor.h +++ b/MicroBlink.framework/Headers/MBProcessor.h @@ -1,13 +1,13 @@ // // MBProcessor.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 02/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBEntity.h" #import "MBProcessorResult.h" diff --git a/MicroBlink.framework/Headers/MBProcessorGroup.h b/MicroBlink.framework/Headers/MBProcessorGroup.h index 3668912..1479819 100644 --- a/MicroBlink.framework/Headers/MBProcessorGroup.h +++ b/MicroBlink.framework/Headers/MBProcessorGroup.h @@ -1,13 +1,13 @@ // // MBProcessorGroup.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 21/03/2018. // #import -#import "MBMicroBlinkInitialization.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkInitialization.h" +#import "MBMicroblinkDefines.h" @class MBDewarpPolicy; @class MBProcessor; diff --git a/MicroBlink.framework/Headers/MBProcessorResult.h b/MicroBlink.framework/Headers/MBProcessorResult.h index de139e5..4a3d2f8 100644 --- a/MicroBlink.framework/Headers/MBProcessorResult.h +++ b/MicroBlink.framework/Headers/MBProcessorResult.h @@ -1,12 +1,12 @@ // // MBProcessorResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 02/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" /** * Enumeration of posibble processor result state diff --git a/MicroBlink.framework/Headers/MBQuadDetector.h b/MicroBlink.framework/Headers/MBQuadDetector.h index 9a6459e..c5cedcc 100644 --- a/MicroBlink.framework/Headers/MBQuadDetector.h +++ b/MicroBlink.framework/Headers/MBQuadDetector.h @@ -1,15 +1,15 @@ // // MBQuadDetector.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 19/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBDetector.h" #import "MBQuadDetectorResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBQuadDetectorResult.h b/MicroBlink.framework/Headers/MBQuadDetectorResult.h index 035d436..a3d81c3 100644 --- a/MicroBlink.framework/Headers/MBQuadDetectorResult.h +++ b/MicroBlink.framework/Headers/MBQuadDetectorResult.h @@ -1,12 +1,12 @@ // // MBQuadDetectorResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 19/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBDetectorResult.h" #import "MBQuadrangle.h" diff --git a/MicroBlink.framework/Headers/MBQuadDetectorSubview.h b/MicroBlink.framework/Headers/MBQuadDetectorSubview.h index 4533f77..aeffe3d 100644 --- a/MicroBlink.framework/Headers/MBQuadDetectorSubview.h +++ b/MicroBlink.framework/Headers/MBQuadDetectorSubview.h @@ -1,6 +1,6 @@ // // MBQuadDetectorSubview.h -// MicroBlinkDev +// MicroblinkDev // // Created by Dino Gustin on 02/05/2018. // diff --git a/MicroBlink.framework/Headers/MBQuadWithSizeDetector.h b/MicroBlink.framework/Headers/MBQuadWithSizeDetector.h index af5732d..5a91538 100644 --- a/MicroBlink.framework/Headers/MBQuadWithSizeDetector.h +++ b/MicroBlink.framework/Headers/MBQuadWithSizeDetector.h @@ -1,16 +1,16 @@ // // MBQuadWithSizeDetector.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBQuadDetector.h" #import "MBQuadWithSizeDetectorResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBQuadWithSizeDetectorResult.h b/MicroBlink.framework/Headers/MBQuadWithSizeDetectorResult.h index 8429df8..260dc3a 100644 --- a/MicroBlink.framework/Headers/MBQuadWithSizeDetectorResult.h +++ b/MicroBlink.framework/Headers/MBQuadWithSizeDetectorResult.h @@ -1,13 +1,13 @@ // // MBQuadWithSizeDetectorResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBDetectorResult.h" #import "MBQuadrangle.h" #import "MBQuadDetectorResult.h" diff --git a/MicroBlink.framework/Headers/MBQuadrangle.h b/MicroBlink.framework/Headers/MBQuadrangle.h index 1238133..508758c 100644 --- a/MicroBlink.framework/Headers/MBQuadrangle.h +++ b/MicroBlink.framework/Headers/MBQuadrangle.h @@ -1,12 +1,12 @@ // // MBQuadrangle.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 08/12/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBRawParser.h b/MicroBlink.framework/Headers/MBRawParser.h index 5a54efe..19501be 100644 --- a/MicroBlink.framework/Headers/MBRawParser.h +++ b/MicroBlink.framework/Headers/MBRawParser.h @@ -1,15 +1,15 @@ // // MBRawParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 14/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParser.h" #import "MBRawParserResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" #import "MBBaseOcrEngineOptions.h" NS_ASSUME_NONNULL_BEGIN @@ -43,6 +43,8 @@ MB_INIT /** * Sets the OCR engine options used in Regex OCR parser. * Returns the OCR engine options used in Regex OCR parser. + * + * Default: default instance of MBOcrEngineOptions */ @property (nonatomic, strong) MBBaseOcrEngineOptions *ocrEngineOptions; diff --git a/MicroBlink.framework/Headers/MBRawParserResult.h b/MicroBlink.framework/Headers/MBRawParserResult.h index e33e4b9..6c24ef3 100644 --- a/MicroBlink.framework/Headers/MBRawParserResult.h +++ b/MicroBlink.framework/Headers/MBRawParserResult.h @@ -1,13 +1,13 @@ // // MBRawParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 14/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParserResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBRecognizer.h b/MicroBlink.framework/Headers/MBRecognizer.h index d7602d9..4735f02 100644 --- a/MicroBlink.framework/Headers/MBRecognizer.h +++ b/MicroBlink.framework/Headers/MBRecognizer.h @@ -1,12 +1,12 @@ // // MBRecognizer.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 21/11/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBEntity.h" #import "MBRecognizerResult.h" @@ -18,15 +18,6 @@ NS_ASSUME_NONNULL_BEGIN MB_CLASS_AVAILABLE_IOS(8.0) @interface MBRecognizer : MBEntity -/** - * Property which determines if the recognizer is enabled - * - * If YES, recognizer is enabled, and it peroforms recognition on each video frame. - * - * Default: YES - */ -@property (nonatomic, getter=isEnabled) BOOL enabled; - /** * Base recognizer result. */ diff --git a/MicroBlink.framework/Headers/MBRecognizerCollection.h b/MicroBlink.framework/Headers/MBRecognizerCollection.h index 419f620..f2d8b0f 100644 --- a/MicroBlink.framework/Headers/MBRecognizerCollection.h +++ b/MicroBlink.framework/Headers/MBRecognizerCollection.h @@ -1,6 +1,6 @@ // // MBScanSettings.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 24/11/2017. // @@ -71,10 +71,10 @@ MB_CLASS_AVAILABLE_IOS(8.0) @property (nonatomic) BOOL allowMultipleResults; /** - * Timeout interval in which the partial scanning results in PhotoPay will be returned to the user. + * Timeout interval in which the partial scanning results will be returned to the user. * If <= 0.0, no timeout event will be reported. * - * Default: 12 seconds in BlinkID and PhotoPay, 7.0 for PDF417, 0 for others. + * Default: 0 seconds, which means no timeout will be reported. */ @property (nonatomic) NSTimeInterval partialRecognitionTimeout; diff --git a/MicroBlink.framework/Headers/MBRecognizerResult.h b/MicroBlink.framework/Headers/MBRecognizerResult.h index cd789dd..9273dd9 100644 --- a/MicroBlink.framework/Headers/MBRecognizerResult.h +++ b/MicroBlink.framework/Headers/MBRecognizerResult.h @@ -1,12 +1,12 @@ // // MBRecognizerResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 22/11/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" /** * Enumeration of posibble recognizer result state diff --git a/MicroBlink.framework/Headers/MBRecognizerRunner.h b/MicroBlink.framework/Headers/MBRecognizerRunner.h index 68c64eb..9040852 100644 --- a/MicroBlink.framework/Headers/MBRecognizerRunner.h +++ b/MicroBlink.framework/Headers/MBRecognizerRunner.h @@ -1,16 +1,17 @@ // // MBRecognizerRunnerView.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/12/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizerRunnerMetadataDelegates.h" #import "MBScanningRecognizerRunnerDelegate.h" #import "MBImageProcessingRecognizerRunnerDelegate.h" +#import "MBStringProcessingRecognizerRunnerDelegate.h" @class MBCoordinator; @class MBImage; @@ -28,6 +29,7 @@ MB_CLASS_AVAILABLE_IOS(8.0) MB_FINAL @property (nonatomic, strong, nonnull, readonly) MBRecognizerRunnerMetadataDelegates *metadataDelegates; @property (nonatomic, weak) id scanningRecognizerRunnerDelegate; @property (nonatomic, weak, nullable) id imageProcessingRecognizerRunnerDelegate; +@property (nonatomic, weak, nullable) id stringProcessingRecognizerRunnerDelegate; @property (nonatomic, nullable) MBCoordinator *coordinator; @@ -50,12 +52,22 @@ MB_CLASS_AVAILABLE_IOS(8.0) MB_FINAL * Processes a MBImage object synchronously using current settings. * Since this method is synchronous, calling it from a main thread will switch the call to alternate thread internally and output a warning. * - * Results are passed a delegate object given upon a creation of PPCoordinator. + * Results are passed a delegate object given upon a creation of MBCoordinator. * * @param image image for processing */ - (void)processImage:(MBImage *)image; +/** + * Processes a NSString object synchronously using current settings. + * Since this method is synchronous, calling it from a main thread will switch the call to alternate thread internally and output a warning. + * + * Results are passed a delegate object given upon a creation of MBCoordinator. + * + * @param string string for processing + */ +- (void)processString:(NSString *)string; + /** * Method which is used to apply MBSettings object given by currentSettings property * diff --git a/MicroBlink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h b/MicroBlink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h index 87e1b37..0f2708c 100644 --- a/MicroBlink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h +++ b/MicroBlink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h @@ -9,7 +9,7 @@ #import "MBOcrRecognizerRunnerDelegate.h" #import "MBGlareRecognizerRunnerDelegate.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import /** diff --git a/MicroBlink.framework/Headers/MBRecognizerRunnerViewController.h b/MicroBlink.framework/Headers/MBRecognizerRunnerViewController.h index 2b87558..212abff 100644 --- a/MicroBlink.framework/Headers/MBRecognizerRunnerViewController.h +++ b/MicroBlink.framework/Headers/MBRecognizerRunnerViewController.h @@ -1,16 +1,20 @@ // // Header.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 14/12/2017. // #import #import +#import "MBCameraSettings.h" @class MBRecognizerCollection; @class MBOverlayViewController; -@class MBCameraSettings; +@class MBImage; + +/** Block for returning high resolution MBImage photo with capture or still output */ +typedef void(^MBCaptureHighResImage)(MBImage * _Nullable highResImage); NS_ASSUME_NONNULL_BEGIN @@ -105,6 +109,13 @@ NS_ASSUME_NONNULL_BEGIN /**-------------------------------*/ - (void)resetState; +/** + * Method with block for getting high resoultion images + * + * @warning this is returned from background thread + */ +- (void)captureHighResImage:(MBCaptureHighResImage)highResoulutionImageCaptured; + @end NS_ASSUME_NONNULL_END diff --git a/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerDelegate.h b/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerDelegate.h index d258ea8..a820f33 100644 --- a/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerDelegate.h +++ b/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerDelegate.h @@ -1,6 +1,6 @@ // // MBRecognizerRunnerViewControllerDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 18/12/2017. // diff --git a/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h b/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h index 79a9337..b2a63a0 100644 --- a/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h +++ b/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h @@ -9,7 +9,7 @@ #import "MBOcrRecognizerRunnerViewControllerDelegate.h" #import "MBGlareRecognizerRunnerViewControllerDelegate.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import /** diff --git a/MicroBlink.framework/Headers/MBRegexParser.h b/MicroBlink.framework/Headers/MBRegexParser.h index d99dbab..3d7c8d7 100644 --- a/MicroBlink.framework/Headers/MBRegexParser.h +++ b/MicroBlink.framework/Headers/MBRegexParser.h @@ -1,16 +1,16 @@ // // MBRegexParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 15/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParser.h" #import "MBRegexParserResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" #import "MBBaseOcrEngineOptions.h" NS_ASSUME_NONNULL_BEGIN @@ -79,6 +79,8 @@ MB_INIT_UNAVAILABLE /** * Sets the OCR engine options used in Regex OCR parser. * Returns the OCR engine options used in Regex OCR parser. + * + * Default: default instance of MBOcrEngineOptions */ @property (nonatomic, strong) MBBaseOcrEngineOptions *ocrEngineOptions; diff --git a/MicroBlink.framework/Headers/MBRegexParserResult.h b/MicroBlink.framework/Headers/MBRegexParserResult.h index d0a9f16..27a0855 100644 --- a/MicroBlink.framework/Headers/MBRegexParserResult.h +++ b/MicroBlink.framework/Headers/MBRegexParserResult.h @@ -1,13 +1,13 @@ // // MBRegexParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 15/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParserResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBResultSubview.h b/MicroBlink.framework/Headers/MBResultSubview.h index efe8682..d6c5d7b 100644 --- a/MicroBlink.framework/Headers/MBResultSubview.h +++ b/MicroBlink.framework/Headers/MBResultSubview.h @@ -1,6 +1,6 @@ // // MBResultSubview.h -// MicroBlinkDev +// MicroblinkDev // // Created by Dino Gustin on 02/05/2018. // diff --git a/MicroBlink.framework/Headers/MBScanElement.h b/MicroBlink.framework/Headers/MBScanElement.h index a1d0e1e..eb3981f 100644 --- a/MicroBlink.framework/Headers/MBScanElement.h +++ b/MicroBlink.framework/Headers/MBScanElement.h @@ -7,7 +7,7 @@ #import #import "MBParser.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" #import "MBImage.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBScanningRecognizerRunnerDelegate.h b/MicroBlink.framework/Headers/MBScanningRecognizerRunnerDelegate.h index 6b6dd62..cb384db 100644 --- a/MicroBlink.framework/Headers/MBScanningRecognizerRunnerDelegate.h +++ b/MicroBlink.framework/Headers/MBScanningRecognizerRunnerDelegate.h @@ -1,6 +1,6 @@ // // Header.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 20/12/2017. // diff --git a/MicroBlink.framework/Headers/MBScanningRecognizerRunnerViewControllerDelegate.h b/MicroBlink.framework/Headers/MBScanningRecognizerRunnerViewControllerDelegate.h index d9da6db..4ba01cc 100644 --- a/MicroBlink.framework/Headers/MBScanningRecognizerRunnerViewControllerDelegate.h +++ b/MicroBlink.framework/Headers/MBScanningRecognizerRunnerViewControllerDelegate.h @@ -1,6 +1,6 @@ // // MBRecognizerRunnerViewDelegate.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 13/12/2017. // diff --git a/MicroBlink.framework/Headers/MBSimNumberRecognizer.h b/MicroBlink.framework/Headers/MBSimNumberRecognizer.h index b1344a0..fc1793e 100644 --- a/MicroBlink.framework/Headers/MBSimNumberRecognizer.h +++ b/MicroBlink.framework/Headers/MBSimNumberRecognizer.h @@ -1,15 +1,15 @@ // // MBSimNumberRecognizer.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 21/11/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizer.h" #import "MBSimNumberRecognizerResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBSimNumberRecognizerResult.h b/MicroBlink.framework/Headers/MBSimNumberRecognizerResult.h index 528e3f6..563dded 100644 --- a/MicroBlink.framework/Headers/MBSimNumberRecognizerResult.h +++ b/MicroBlink.framework/Headers/MBSimNumberRecognizerResult.h @@ -1,12 +1,12 @@ // // MBSimNumberRecognizerResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 21/11/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizerResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBStringProcessingRecognizerRunnerDelegate.h b/MicroBlink.framework/Headers/MBStringProcessingRecognizerRunnerDelegate.h new file mode 100644 index 0000000..267bbd2 --- /dev/null +++ b/MicroBlink.framework/Headers/MBStringProcessingRecognizerRunnerDelegate.h @@ -0,0 +1,19 @@ +// +// MBStringProcessingRecognizerRunnerDelegate.h +// MicroblinkDev +// +// Created by Jura Skrlec on 18/06/2018. +// + +@class MBRecognizerRunner; + +@protocol MBStringProcessingRecognizerRunnerDelegate +@required + +/** + * Called when MBRecognizerRunner finishes processing given string. + * NOTE: This method is called on background processing thread. Make sure that you dispatch all your UI API calls to main thread. + */ +- (void)recognizerRunner:(nonnull MBRecognizerRunner *)recognizerRunner didFinishProcessingString:(nonnull NSString *)string; + +@end diff --git a/MicroBlink.framework/Headers/MBSubview.h b/MicroBlink.framework/Headers/MBSubview.h index 7be1412..44aeb42 100644 --- a/MicroBlink.framework/Headers/MBSubview.h +++ b/MicroBlink.framework/Headers/MBSubview.h @@ -3,11 +3,11 @@ // BarcodeFramework // // Created by Jura on 06/06/14. -// Copyright (c) 2015 MicroBlink Ltd. All rights reserved. +// Copyright (c) 2015 Microblink Ltd. All rights reserved. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizer.h b/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizer.h index 9731616..ce0baae 100644 --- a/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizer.h +++ b/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizer.h @@ -1,12 +1,12 @@ // // MBSuccessFrameGrabberRecognizer.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 22/12/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizer.h" #import "MBSuccessFrameGrabberRecognizerResult.h" @@ -26,6 +26,10 @@ MB_CLASS_AVAILABLE_IOS(8.0) MB_FINAL */ @property (nonatomic, strong, readonly) MBSuccessFrameGrabberRecognizerResult *result; +/** + * Slave recognizer that is wrapped with SuccessFrameGrabber + */ +@property (nonatomic, strong, readonly) MBRecognizer *slaveRecognizer; @end diff --git a/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizerResult.h b/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizerResult.h index 17c1b3d..d628252 100644 --- a/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizerResult.h +++ b/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizerResult.h @@ -1,12 +1,12 @@ // // MBSuccessFrameGrabberRecognizerResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 22/12/2017. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizerResult.h" @class MBImage; diff --git a/MicroBlink.framework/Headers/MBTapToFocusSubview.h b/MicroBlink.framework/Headers/MBTapToFocusSubview.h index 5bd34aa..78525b5 100644 --- a/MicroBlink.framework/Headers/MBTapToFocusSubview.h +++ b/MicroBlink.framework/Headers/MBTapToFocusSubview.h @@ -3,7 +3,7 @@ // BlinkOcrFramework // // Created by Jura on 18/09/16. -// Copyright © 2016 MicroBlink Ltd. All rights reserved. +// Copyright © 2016 Microblink Ltd. All rights reserved. // #import "MBSubview.h" diff --git a/MicroBlink.framework/Headers/MBTemplatingClass.h b/MicroBlink.framework/Headers/MBTemplatingClass.h index 1194a7c..87d8736 100644 --- a/MicroBlink.framework/Headers/MBTemplatingClass.h +++ b/MicroBlink.framework/Headers/MBTemplatingClass.h @@ -1,13 +1,13 @@ // // MBTemplatingClass.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 21/03/2018. // #import -#import "MBMicroBlinkInitialization.h" -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkInitialization.h" +#import "MBMicroblinkDefines.h" @protocol MBTemplatingClassifier; diff --git a/MicroBlink.framework/Headers/MBTemplatingRecognizer.h b/MicroBlink.framework/Headers/MBTemplatingRecognizer.h index 1bb6d68..d318a83 100644 --- a/MicroBlink.framework/Headers/MBTemplatingRecognizer.h +++ b/MicroBlink.framework/Headers/MBTemplatingRecognizer.h @@ -1,15 +1,15 @@ // // MBTemplatingRecognizer.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 22/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizer.h" #import "MBTemplatingRecognizerResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" @class MBTemplatingClass; diff --git a/MicroBlink.framework/Headers/MBTemplatingRecognizerResult.h b/MicroBlink.framework/Headers/MBTemplatingRecognizerResult.h index 9bc3873..38444d5 100644 --- a/MicroBlink.framework/Headers/MBTemplatingRecognizerResult.h +++ b/MicroBlink.framework/Headers/MBTemplatingRecognizerResult.h @@ -1,13 +1,13 @@ // // MBTemplatingRecognizerResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 22/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizerResult.h" #import "MBBarcodeResult.h" diff --git a/MicroBlink.framework/Headers/MBTopUpParser.h b/MicroBlink.framework/Headers/MBTopUpParser.h index 5edcab8..7b2b358 100644 --- a/MicroBlink.framework/Headers/MBTopUpParser.h +++ b/MicroBlink.framework/Headers/MBTopUpParser.h @@ -1,15 +1,15 @@ // // MBTopUpParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParser.h" #import "MBTopUpParserResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" /** * Enumeration of posibble top up presets diff --git a/MicroBlink.framework/Headers/MBTopUpParserResult.h b/MicroBlink.framework/Headers/MBTopUpParserResult.h index 18736c2..56ecfcf 100644 --- a/MicroBlink.framework/Headers/MBTopUpParserResult.h +++ b/MicroBlink.framework/Headers/MBTopUpParserResult.h @@ -1,12 +1,12 @@ // // MBTopUpParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 09/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParserResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBUIComponents.h b/MicroBlink.framework/Headers/MBUIComponents.h new file mode 100644 index 0000000..d2fab92 --- /dev/null +++ b/MicroBlink.framework/Headers/MBUIComponents.h @@ -0,0 +1,9 @@ +// +// MBUIComponents.h +// MicroBlinkFramework +// +// Created by Dino Gustin on 06/06/18. +// Copyright (c) 2012 MicroBlink Ltd. All rights reserved. +// + +#import "MBBlinkInputUIComponents.h" diff --git a/MicroBlink.framework/Headers/MBViewControllerFactory.h b/MicroBlink.framework/Headers/MBViewControllerFactory.h index 06e1a1e..1ff8ffb 100644 --- a/MicroBlink.framework/Headers/MBViewControllerFactory.h +++ b/MicroBlink.framework/Headers/MBViewControllerFactory.h @@ -1,11 +1,11 @@ // // MBViewControllerFactory.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 15/12/2017. // -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizerRunnerViewController.h" #import "MBOverlayViewController.h" diff --git a/MicroBlink.framework/Headers/MBVinParser.h b/MicroBlink.framework/Headers/MBVinParser.h index 8cb6055..7b42e6c 100644 --- a/MicroBlink.framework/Headers/MBVinParser.h +++ b/MicroBlink.framework/Headers/MBVinParser.h @@ -1,15 +1,15 @@ // // MBVinParser.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 07/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParser.h" #import "MBVinParserResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBVinParserResult.h b/MicroBlink.framework/Headers/MBVinParserResult.h index 9018fb4..e4bf6fd 100644 --- a/MicroBlink.framework/Headers/MBVinParserResult.h +++ b/MicroBlink.framework/Headers/MBVinParserResult.h @@ -1,12 +1,12 @@ // // MBVinParserResult.h -// MicroBlinkDev +// MicroblinkDev // // Created by Jura Skrlec on 07/03/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBParserResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBVinRecognizer.h b/MicroBlink.framework/Headers/MBVinRecognizer.h index 1c05251..8320d29 100644 --- a/MicroBlink.framework/Headers/MBVinRecognizer.h +++ b/MicroBlink.framework/Headers/MBVinRecognizer.h @@ -1,15 +1,15 @@ // // MBVinRecognizer.h -// MicroBlink +// Microblink // // Created by Dino Gustin on 23/04/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizer.h" #import "MBVinRecognizerResult.h" -#import "MBMicroBlinkInitialization.h" +#import "MBMicroblinkInitialization.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MBVinRecognizerResult.h b/MicroBlink.framework/Headers/MBVinRecognizerResult.h index f246efd..b0ba2f1 100644 --- a/MicroBlink.framework/Headers/MBVinRecognizerResult.h +++ b/MicroBlink.framework/Headers/MBVinRecognizerResult.h @@ -1,12 +1,12 @@ // // MBVinRecognizerResult.h -// MicroBlink +// Microblink // // Created by Dino Gustin on 23/04/2018. // #import -#import "MBMicroBlinkDefines.h" +#import "MBMicroblinkDefines.h" #import "MBRecognizerResult.h" NS_ASSUME_NONNULL_BEGIN diff --git a/MicroBlink.framework/Headers/MicroBlink.h b/MicroBlink.framework/Headers/MicroBlink.h index 329e22f..1a0a86e 100644 --- a/MicroBlink.framework/Headers/MicroBlink.h +++ b/MicroBlink.framework/Headers/MicroBlink.h @@ -56,7 +56,7 @@ #import "MBResultSubview.h" #import "MBOcrLayoutSubview.h" -// Recognizers -#import "PPBlinkInputRecognizers.h" +#import "MBEntities.h" +#import "MBUIComponents.h" #endif diff --git a/MicroBlink.framework/Headers/PPBlinkBarcodeRecognizers.h b/MicroBlink.framework/Headers/PPBlinkBarcodeRecognizers.h deleted file mode 100644 index aab5a00..0000000 --- a/MicroBlink.framework/Headers/PPBlinkBarcodeRecognizers.h +++ /dev/null @@ -1,34 +0,0 @@ -// -// PPBlinkBarcodeRecognizers.h -// BlinkIdFramework -// -// Created by Jura on 30/12/15. -// Copyright © 2015 MicroBlink Ltd. All rights reserved. -// - -#ifndef PPBlinkBarcodeRecognizers_h -#define PPBlinkBarcodeRecognizers_h - -// Pdf417 -#import "MBPdf417Recognizer.h" -#import "MBPdf417RecognizerResult.h" - -// SimNumber -#import "MBSimNumberRecognizer.h" -#import "MBSimNumberRecognizerResult.h" - -//VIN -#import "MBVinRecognizer.h" -#import "MBVinRecognizerResult.h" - -// Barcode -#import "MBBarcodeRecognizer.h" -#import "MBBarcodeRecognizerResult.h" - -// Image -#import "MBImage.h" - -// Basic functionality -//#import "PPRecognizerResult+Test.h" - -#endif /* PPBlinkBarcodeRecognizers_h */ diff --git a/MicroBlink.framework/Headers/PPMicroBlinkDefines.h b/MicroBlink.framework/Headers/PPMicroBlinkDefines.h index 31ef778..4cae55b 100644 --- a/MicroBlink.framework/Headers/PPMicroBlinkDefines.h +++ b/MicroBlink.framework/Headers/PPMicroBlinkDefines.h @@ -1,13 +1,13 @@ // -// PPMicroBlinkDefines.h +// PPMicroblinkDefines.h // BlinkIdFramework // // Created by Jura on 04/01/16. -// Copyright © 2016 MicroBlink Ltd. All rights reserved. +// Copyright © 2016 Microblink Ltd. All rights reserved. // -#ifndef PPMicroBlinkDefines_h -#define PPMicroBlinkDefines_h +#ifndef PPMicroblinkDefines_h +#define PPMicroblinkDefines_h /** * Define your macros for accessing localization tables. @@ -22,16 +22,26 @@ #ifndef MB_LOCALIZED // note - this might return nil if frameworkBundle is nil! #define MB_LOCALIZED(key) \ - NSLocalizedStringWithDefaultValue(key, [[MBMicroblinkApp instance] language], [[MBMicroblinkApp instance] resourcesBundle], \ - MB_LOCALIZED_DEFAULT_STRING(key), nil) +NSLocalizedStringWithDefaultValue(key, [[MBMicroblinkApp instance] language], [[MBMicroblinkApp instance] resourcesBundle], \ +MB_LOCALIZED_DEFAULT_STRING(key), nil) #endif #ifndef MB_LOCALIZED_FORMAT // note - this might return nil if frameworkBundle is nil! #define MB_LOCALIZED_FORMAT(key, ...) \ - [NSString stringWithFormat:NSLocalizedStringWithDefaultValue(key, [[MBMicroblinkApp instance] language], [[MBMicroblinkApp instance] resourcesBundle], \ - MB_LOCALIZED_DEFAULT_STRING(key), nil), \ - ##__VA_ARGS__] +[NSString stringWithFormat:NSLocalizedStringWithDefaultValue(key, [[MBMicroblinkApp instance] language], [[MBMicroblinkApp instance] resourcesBundle], \ +MB_LOCALIZED_DEFAULT_STRING(key), nil), \ +##__VA_ARGS__] +#endif + +#ifndef MB_LOCALIZED_PROPERTY_GETTER +// note - this might return nil if frameworkBundle is nil! +#define MB_LOCALIZED_PROPERTY_GETTER(propertyName, key) \ +if (propertyName) { \ +return propertyName; \ +} else { \ +return MB_LOCALIZED(key); \ +} #endif #ifdef __cplusplus @@ -46,4 +56,4 @@ #define PP_INIT_UNAVAILABLE - (instancetype)init NS_UNAVAILABLE; -#endif /* PPMicroBlinkDefines_h */ +#endif /* PPMicroblinkDefines_h */ diff --git a/MicroBlink.framework/Info.plist b/MicroBlink.framework/Info.plist index 110426c..019c372 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 deleted file mode 100755 index c2e74ae..0000000 --- a/MicroBlink.framework/MicroBlink +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fbbe09cba26b9fc1acef8f41636bcf7b051981b33343f99fd8792ab7cc86e820 -size 70439216 diff --git a/MicroBlink.framework/Microblink b/MicroBlink.framework/Microblink new file mode 100755 index 0000000..13b1731 --- /dev/null +++ b/MicroBlink.framework/Microblink @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:971eb241ef6296df4b5054107f143066799b3faf13bde0ef3206b67cc084addf +size 81902672 diff --git a/MicroBlink.framework/Modules/module.modulemap b/MicroBlink.framework/Modules/module.modulemap index 0fe49ff..92715d3 100644 --- a/MicroBlink.framework/Modules/module.modulemap +++ b/MicroBlink.framework/Modules/module.modulemap @@ -1,5 +1,5 @@ framework module MicroBlink { - umbrella header "MicroBlink.h" + umbrella header "Microblink.h" export * module * { export * } diff --git a/MicroBlink.framework/_CodeSignature/CodeResources b/MicroBlink.framework/_CodeSignature/CodeResources index b0d801a..ddba8c9 100644 --- a/MicroBlink.framework/_CodeSignature/CodeResources +++ b/MicroBlink.framework/_CodeSignature/CodeResources @@ -6,179 +6,199 @@ Headers/MBAmountParser.h - fk9fF2iY0Ay5YJr3RiWVEnwtLXw= + s4CY1cmh7uIC9hHsqJ7DRhdtAZE= Headers/MBAmountParserResult.h - BhNzTihGNlH2mi41bsFPKa8iXtE= + td31okFKjPnVqFOj/LFZRFel1qQ= + + Headers/MBBarcodeEntities.h + + xnovkJ9NfdF5aRdT8NRWhyc5Cq0= Headers/MBBarcodeOverlaySettings.h - TJbkp8L2vcKiWqdTZCxyqgfrVMw= + H1vvYtxbJxjwmOMwQ4b5e7LvAL8= Headers/MBBarcodeOverlayViewController.h - VtXw687EeXh7BWEj71wP8dhPxPk= + wCqiGrKvuGaYFAwRD8NYZheSEBc= Headers/MBBarcodeOverlayViewControllerDelegate.h - qVVtiDAUkHrTixcmrwOkVB+u/O8= + y2N2U/cpHBb/01UqvRXiGcv+UC0= Headers/MBBarcodeRecognizer.h - hFfFZkaCLJaL4cIrqEuPLcJULHY= + dqIct+0QgUzVWVGoVaaVg2o0occ= Headers/MBBarcodeRecognizerResult.h - cN6KmWIldJKGtASZsMHlmmBmmh4= + xViLtcsdHlghH43qeZHY6dONtL0= Headers/MBBarcodeResult.h - be420q2unpVXwQE1oGDOW8RzrlA= + xhZnJwyh7r2k3CpZlAHfKvfQ7V4= + + Headers/MBBarcodeUIComponents.h + + 4snfrwY1/m2wXfV+ZkmibIOoaUg= Headers/MBBaseOcrEngineOptions.h - 10acXBGg96HpFmo4vQZ+bvxHwDg= + q4/3XIFwCvhSTM+HnnmJwh+k4Oo= Headers/MBBaseOcrOverlaySettings.h - bvm7vX/8MtjiU19Q1NkxJKUXlN8= + 8dUpnQYbuhh3XjMk3DgqezmtIuY= Headers/MBBaseOverlaySettings.h - E9zGTmK4w0LaGjL3d0zfUY3YxL4= + z6bhcymTekf4+80S48yx8+WLBuo= Headers/MBBaseOverlayViewController.h - oO19CN5viDYBWodk3lia1LVZpx0= + otfzYXKPVH5ABzmn28HSSw30IkY= + + Headers/MBBlinkInputEntities.h + + wdf0etFwGncImeRCmfYUtrb+Uys= Headers/MBBlinkInputRecognizer.h - 3K4oX/XO/6UNhyw2acTAbyJA13U= + 1Uryj6SI2ADnES4NUh0OBh3ae+4= Headers/MBBlinkInputRecognizerResult.h - +5MlfGZ2GZYbUPCTGuuBoapNeoQ= + eCgqofSYz0KFPNvJ/2DaDbOatbY= + + Headers/MBBlinkInputUIComponents.h + + 6PnqH8rHtlmCxsC4+jfrwbHGJ/Y= Headers/MBCameraSettings.h - OFGQXZBG5qnGeqnDtKv3aHCTTGY= + OlzBDAFkjC8+DVEUEIAMarJoD7o= Headers/MBCustomOverlayViewController.h - 57ovNFJm2EjMnQWIRcjC2ibjzp0= + lwRr3fdKY+fRliel+acpGFp1ZZE= Headers/MBDPIBasedDewarpPolicy.h - vHWkOSNxu4lhK9qsH6jq40Gtj4I= + 86I/F59TVHv0rSJMEKQKCotTko8= Headers/MBDateParser.h - VEQdS7bMHMbT85HnKUegIdhf3ng= + 4B7GxltRwVscHdtmu7/ldgksnSA= Headers/MBDateParserResult.h - FBziQ9FFZzciCtax4b9iEwNDo9E= + X3LVENe9DtqglWPpqGmnLkNVafA= Headers/MBDateResult.h - oGdqRHHpE3LkS1Rqye6fwdv8mFk= + 9/LfBx2SmF1fRbkAazp+Re1tC1w= Headers/MBDebugRecognizerRunnerDelegate.h - pHSLJ8Am5IvnY4viCuZ2RqmFS9Q= + RRZle2wowgH7HbKb+Op/AKcelF8= Headers/MBDebugRecognizerRunnerViewControllerDelegate.h - sHI0VC9Fv+BtqhjcmolF5fCqVIQ= + GY3TqBNqwapwuL3WnUSen4IOKJ4= Headers/MBDeepOcrEngineOptions.h - k1oyDeemGA0SJSsyU8cPwaVCcxw= + PxzxgUJimjAGHvSSpvCBSvGkNBY= Headers/MBDetectionRecognizerRunnerDelegate.h - XB+1/kszRsI5+d7eXbHUamD5kUY= + wkKjAMZ78kl2GBRIJbjDsHClHN8= Headers/MBDetectionRecognizerRunnerViewControllerDelegate.h - T3g0E+sChdvTm/cDzAe3F13+lk8= + 6AHSk5QLGP2i5cbh6vv5KYDHtNk= Headers/MBDetectionStatus.h - AcwS9vf42O0IXlAJMGZS+5ZJY7Q= + 2rX7M7wtxD4mM93wckjv2GTR1/w= Headers/MBDetector.h - dGzD8O10pQM7/DlbXl7Ii0tUyCY= + cZPQsaiHS40UnXc9wEM1rY+zN2o= Headers/MBDetectorRecognizer.h - y1SvkOZKJD7q8KCRvyJIoPBI53E= + nopTsLBo5GMqjMiRgmdfRYI6zxE= Headers/MBDetectorRecognizerResult.h - xvXbwI21335yikNmMB0Ikz27DXE= + Oslompz5cvq9nRniq37x2qNgdik= Headers/MBDetectorResult.h - gy0Zson4GW1/u62QkRNtCzuvcnw= + LS2J5du5HT5RR0Z68aBCb1/G1us= Headers/MBDewarpPolicy.h - fyz0wrwCaQq8BKs0zJyQ5Ij2Dqw= + qN8skbo4lYmJimjXOKdmcDg6rSY= Headers/MBDisplayableDetection.h - dumeBJcirKT1SziDr7QM+thTB3A= + ovoqRoBuj6ktOK8CZQkOEA/c8YU= Headers/MBDisplayableObject.h - nEUBylsXu/1oDDGqcOx8ZIQR+Rc= + gAT3SvDzR4ue/SZslzmdlA+G2io= Headers/MBDisplayablePointsDetection.h - PFiBpWn7kRSbAsAV62bBTzQYPFY= + nC6Tt7/I68HiQCpnt9SqAOyZ4O8= Headers/MBDisplayableQuadDetection.h - lDU1rIuq47c6xG64Ofxx1G3piU4= + BHva4NitqfysG/O67Z4PWGC0Ebw= Headers/MBDocumentDetector.h - DpZDwAO5SBI7HEZTXgQT6LHaP3I= + rXGoeRenakwmM4VLlm3auBAnioE= Headers/MBDocumentDetectorResult.h - SRriUdGcXsmJrle1OBojx3rt7Pg= + 8UEsA1O5dgtyJRWHbHQfWuOHYEo= Headers/MBDocumentOverlaySettings.h - O/n3ncBKNJqZxD4n+84nnc5jXbU= + 2M8PUFrCvZPGa644zPlEfxAxGDk= Headers/MBDocumentSpecification.h - ynfkpHUFRwXxRDv51rhwR2bvXHQ= + +inbgkmJVwDhXGNEGdLllhT80sk= Headers/MBDotsResultSubview.h - McD1PXFvpwb8lO9jNSG0Ualh+os= + AHblUO+FK2YUIDQUHoeYaRKenW8= Headers/MBDotsSubview.h - 7HW8UkHmwW4OwfYCtZyUpNNMKU8= + x1atFdwmXPBh/BgFOTlllCddUWM= Headers/MBEmailParser.h - VE+hgmPR3kkI+JHuvmaghjn65zw= + 1QXZG7tdyWSDch3Zocpb6pOV60o= Headers/MBEmailParserResult.h - K51uWvJAVDKyT0RbXWHK1XYnqXs= + x36vE4qyidLkrFupAzjCNGWHVjM= + + Headers/MBEntities.h + + PzimpJuI6r++/FUOXYKmkGkK/PY= Headers/MBEntity.h - EwJkUDWGZP2Ub/oShHDBZ+pryh8= + okDIKhb4ne4uFq8ITR1UfNAEoMo= Headers/MBException.h @@ -186,7 +206,7 @@ Headers/MBFieldByFieldOverlaySettings.h - jJoSxR0YzMaKMr7vK02/B+a0qcE= + imfGB5qUUrwgjHguwZl17BRePvI= Headers/MBFieldByFieldOverlayViewController.h @@ -194,351 +214,355 @@ Headers/MBFixedDewarpPolicy.h - vNgxhHelvdiJEQmE7/qEPzzrO54= + AcqHPWtuGuPEwV7bxQ58aT8aKds= Headers/MBFrameGrabberRecognizer.h - TJOvNAIdNPWVLsHM5o8Ln4egmSw= + xezzd7Lriw05h26Jhl/FL67oU2Y= Headers/MBGeometry.h - +85eFGmWyzwnYOkHYrTr4MWXXH0= + Vf6asKFXdlZr5uhOEHFEGya3oMg= Headers/MBGlareRecognizerRunnerDelegate.h - hhnfRblc1cm9fh8QmMlRJ13Hilo= + 4scNRZkzo6vi4pItKvDCSrBB8Bs= Headers/MBGlareRecognizerRunnerViewControllerDelegate.h - ruaZJGTaRPtPph60v8JkgSSqN8A= + ANWhjFk0cQbm1NCNUsIWt3safG0= + + Headers/MBGlareStatusSubview.h + + 58Paw0tggRozFZHkFxxqHluUV64= Headers/MBIbanParser.h - tJg/vYu3AWy9KIAMJeC5g1pt9p8= + Q8cTwC+osD3+8EKgtgcbT1dlh+M= Headers/MBIbanParserResult.h - qk5sBarOuHQy5HFWex1yl8vC1EY= + 3/PEIZ5exEoHqQRqeGwVPkbQIuU= Headers/MBImage.h - 9KUg9w0SglfiFNcBHg2xO22+Qrk= + VlYNyu4ivL5y89TA+5Ful1MwSnQ= Headers/MBImageProcessingRecognizerRunnerDelegate.h - vuQwGeF3UuPClA8hZFnkyYYE6Ps= + O3NVRv7e6nsyS2p2Jsz1yv2Ngo4= Headers/MBImageReturnProcessor.h - QcOBGFG3pi0CwMPREtYVC2d3tjM= + JfZdQu29+EZCkLKrpS9xtraokz0= Headers/MBImageReturnProcessorResult.h - 3qH3RiuWwlSaYFAF/v8UfvibG54= + Dr2vOXlDVSnp2yZ8mXUDQlsGWAQ= Headers/MBLicensePlatesParser.h - mcXnRqzltjMC7E4ZxCWyRT98dCc= + B3ecwconNCWtiMgaPZLEmT2ZCAA= Headers/MBLicensePlatesParserResult.h - oyEvrC3KPMMF5wX5l6t95Vv5mgo= + BUY5D6jBF6pE0MsHT699tRoINVg= - Headers/MBMicroBlinkDefines.h + Headers/MBMicroblinkApp.h - O/HBCk52leRQ1YV8XDCUpkN1NFw= + TdX2P/Damv+2RViHn9Ih7qL60C8= - Headers/MBMicroBlinkInitialization.h + Headers/MBMicroblinkDefines.h - 5YdAZlRjQmSc048/LXHrqt/gGmw= + rMxtxzm2Y4yJD3g2BzxdipAbVFA= - Headers/MBMicroblinkApp.h + Headers/MBMicroblinkInitialization.h - uRPi91+BMFWgrF+8ws0aXrKPVpU= + QSpirY+gUS9A5KVIisHMsA1yfik= Headers/MBMicroblinkSDK.h - QINMlP5qEMbUx9uNvHAnuAJuOnQ= + 5+B1PzDl4C74yfqoLAPkpN1ySzk= Headers/MBModernViewfinderSubview.h - 5XSFVvhxw4LVFDUJqT8MXtCUuGI= + g9vyv1iWGhrGQFha5+l78ZnBF4k= Headers/MBMrtdDetector.h - aUIEmz597anOK9w8DleNitPCMww= + 6/eEvZxs7hJimHjz/LYxkOkYx2k= Headers/MBMrtdDetectorResult.h - IW+FIMBkQUBsIHrYm7KSqZ0Z2yc= + dSTqPXpsPHBrcU2KM+DnKre62PA= Headers/MBMrtdSpecification.h - rHYOFz1vqG1kNlRW7IvQjSelBcM= + NtZFExUczIcObeXwtdMI7i+DGg0= Headers/MBNativeResult.h - rXCTf5MOs1iy31txh5izI8FF7Xc= + GCEyCCwbLge32bVB61h+h+eYHKA= Headers/MBNoUpScalingDewarpPolicy.h - wipdzW9EiRH1KrZvX5Wda/N0WJA= + rSd3exLHKBeTIu0/xzJD5wkbYk4= Headers/MBOcrEngineOptions.h - ba6RFQkx3UM2BZfzTIvfI7NhR+Q= + jO8YnhnjuYhrlfwrxGDptBg5OMs= Headers/MBOcrFont.h - ULAaoF+T8ZdhBqjXfvq4UC2XYUI= + uVr7j0xbrP8/VKibp1wqVFSW7Ow= Headers/MBOcrLayout.h - Cmk+BdfzptYm/bBSZctJU5EkCtQ= + NKrOErllp3nVLSXP0O6i/evMED0= Headers/MBOcrLayoutSubview.h - k5IW15xYmMnwmz3CLqtAwjHNfYc= + tO2JlNAaA0why5+ZskMyG/gt9sA= Headers/MBOcrRecognizerRunnerDelegate.h - 34XIHP8TThsP+guM97lS/lX+uos= + ZqeK7evp/eHLrSCUYe4gXEFb2Ec= Headers/MBOcrRecognizerRunnerViewControllerDelegate.h - C2flxMElfu4alu6S3gUfconkrWo= + ExRS1jsEGO29Pmf5N5TQFwCducg= Headers/MBOcrResultSubview.h - 1CX3lnKdkBZOaGYqgSAqZJ8FLz4= + tbKKD8/idN9VFLXsezK0D93Kf0E= Headers/MBOverlayContainerViewController.h - J+KkQ/5lO0amWlfTMDefg5gJfa8= + rwiRS3zDLiUjcXPggVVCizvuOlY= Headers/MBOverlaySettings.h - 8ayTgyDdyjH3MAZLckbHfKIHChc= + aVkClUCvZiCM6fIAPXbIHr0FSKw= Headers/MBOverlayViewController.h - PK4Y1SJDzTMUwh6ksy6lIzPCp9o= + UzqoT2+ZASYqVM60c4eN4KOeGUs= Headers/MBParser.h - NhHml56y38J2oIiSFOKPQBGq7PY= + PeQI9LJJxdmFlkwedzpyxtQ4Bb4= Headers/MBParserGroupProcessor.h - VAba5hKVSg6N7BYqjGlnqDtwkIg= + DONFgRFSitEYJNPD/QOYy09E+jU= Headers/MBParserGroupProcessorResult.h - q5ewnvhRrbBWF6ZAzhxFFBclj3o= + dUKDn2xYpim14XmqIc3buZrNwDU= Headers/MBParserResult.h - b6uySWkIPUhq/aVaq46c3Wq9p9k= + +wWChQ3XdlBh33AaIxsS4b32rQM= Headers/MBPdf417Recognizer.h - d2lXhamuk3x+srnFb6DHfSFKAMI= + IdFvoMhzbc57CMGsOo1p6ufMqeg= Headers/MBPdf417RecognizerResult.h - cLi/eQRiWPm7RaTI2OZGZd/cV/c= + aX12egQZvl33mgVHhoM73I/Armc= Headers/MBPointDetectorSubview.h - ZJVSrjDkz9UIEWb1O69JzfolsDg= + zolUrbNidtvitCVJ+EbKBvPbfVQ= Headers/MBProcessor.h - cJI/lESCM3Jh41nlfEnpqea0Bvs= + GQ/RQbZXgDekOhiHXJO/Airrn7s= Headers/MBProcessorGroup.h - uWwsA9dVKHd/Y4KMtJKVBuMOQnM= + +6B4M5ysQW8HgMLaBolFoAo07S8= Headers/MBProcessorResult.h - 7n+Rpho6t1VO9vrEtZ+d3Ok3Bjg= + lLfhtb32umGGvC/G8JNajXxwykg= Headers/MBQuadDetector.h - 2YBH5Hs7ztAG3P3IM+VvbeWlNpI= + AtXFnUkrnZLtFe+zy428DMmr14M= Headers/MBQuadDetectorResult.h - RGNqJyAPUIkreoypQpGszMWp4JE= + MvjEDWMDyEicWcAFl7Vkft7W1hE= Headers/MBQuadDetectorSubview.h - VVtfF6XDvZu8VotaNFinaEhFUW8= + fHQpHrIyw3RO2NlXtVUrl296nNs= Headers/MBQuadWithSizeDetector.h - 5ZN6vPsZHbAGlemOC5j5b6Jn3AM= + Aj8hbLJyjsgGf0pzG3gkMgpkUqs= Headers/MBQuadWithSizeDetectorResult.h - ACKNFXuuyTYecf46lgOjoDKmwk8= + Blb9qY7OP7neRXBM8/5tG62f7Yw= Headers/MBQuadrangle.h - w2x0GSIT+FxE4fNQF1EnM4cNwtU= + Td0bw+EvmD2NCQNlro63eD0wa7Q= Headers/MBRawParser.h - UV5bgMt8Hwa6TgHvIrApTFpAd90= + DxLD74MOxmJo6+97lNaRG1HI51I= Headers/MBRawParserResult.h - iL+Ap0dUUOqcoteQXKu/gccDhCY= + UfzNNR+OEGbJZTRn3qbEMW5RTLM= Headers/MBRecognizer.h - hT6xNu4n9cnCT2WVyNJXIRM/Xzg= + b/ZrocozvdVfv0Gba1TNb0kbmek= Headers/MBRecognizerCollection.h - TIlSH/lOK85O5YiQz4DYRyxnPDw= + 6ILx2hstxB7QHXsurNAmcyIGZ4o= Headers/MBRecognizerResult.h - jEKJ0h3bM9F0HTTWR7IQ+AMUCIk= + FXhnC4R0FBSkmks7nIT5A/mkjlE= Headers/MBRecognizerRunner.h - tRQ70mIe85mn9psOlKWFkJDD7mw= + 66ls/DMLs+32immpxueR9AkKHuk= Headers/MBRecognizerRunnerMetadataDelegates.h - zEKJSnvSW6s2cxo3xz6K/lJmqZk= + VaNA5sC9fwdzdu7hOZvRVXJZoeo= Headers/MBRecognizerRunnerViewController.h - /Ct/h2wowTH0hlJn1x3HckC8ddg= + 0wMD+YY1DaqbdYaAkw2vu0g/cAQ= Headers/MBRecognizerRunnerViewControllerDelegate.h - kp7UHE4tBGp6CN6h5ssici3xPHQ= + BhLVTlhMG8DQHhpzsjQHhILnVeE= Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h - KbeVvnxgJ4KL5YRRt6eAntjnGKw= + QTWcI7/D51+/QVIhP/+p5IGPKzs= Headers/MBRegexParser.h - bNeNc46pIdC3ihfGkNfxHvzrS6Y= + MP/N3xQ6TKxSR2csamlqYF4VIrM= Headers/MBRegexParserResult.h - YyCuVlVHZLOKcrxjD4ZFYwqeJnM= + IZzqf1YBuzqh/BmbLBg1h03hlL4= Headers/MBResultSubview.h - jVIKXBcAOClu6Icw3hnusiqCxg8= + Wxpu6oTG78Nchj1gwzKbVmuncxY= Headers/MBScanElement.h - vGf2vNqcAZM2LV72Q30/1F16Jjs= + 6crMEHsfRdAgO8EEIA3votAc030= Headers/MBScanningRecognizerRunnerDelegate.h - WMbeMTAUYtnWcOC6VRywzq1yVE0= + eyGnu6s7zR8mOT0oJY7up8im7DA= Headers/MBScanningRecognizerRunnerViewControllerDelegate.h - zhKckxTEeC55E86ASWrhuXN8FM0= + YA95F4HUsGH5gIElWApN5ngvWxo= Headers/MBSimNumberRecognizer.h - bsCMkOD9donh1qP+VewnUYUmJ+I= + S0TU+ia4P8UyZvQOoa9JXrFwGHI= Headers/MBSimNumberRecognizerResult.h - 4thk8k4kQbn+qT+GBODtfWL5Gfc= + 5T6m9Mbr+6DXo9iMWCd1VXtyEMw= + + Headers/MBStringProcessingRecognizerRunnerDelegate.h + + c2v+SqYtbVxHFjshOAc4iUl3NX8= Headers/MBSubview.h - Pa2YxepPtbRNeiKB+g9DdwVqxAI= + Ow7aEX7k3rkSbdYeClXl3NMGo9M= Headers/MBSuccessFrameGrabberRecognizer.h - DWHTnjXNYH3bj7orMdj85BGa3o4= + LQpdx6ZPyDUvIMDvdmfiRgo5HF8= Headers/MBSuccessFrameGrabberRecognizerResult.h - P5y8tnZESOLMjNFROHmT3MWMHt0= + JOLsnDNyVUSzStAZVJjN0vIVKeY= Headers/MBTapToFocusSubview.h - eFDmWXFbOxJeolPx5dm9b0sjnkc= + ig8kZV0h4OAurOVt4mH+ASUi2mk= Headers/MBTemplatingClass.h - lCoubdWyGNnWfuTAbXT8kFU/UsI= + JPZskSz91iH0hHXPJG1Nv0ToZdc= Headers/MBTemplatingRecognizer.h - dPVb21kseZgaAk8pqw9rG/LipG8= + CZ36DBPBHyYys5mDGljWVdfaHxc= Headers/MBTemplatingRecognizerResult.h - shvBfCRDtBONMxB0XqkKdufZd+o= + OPu5MLwbS/fpex5uiwMxvOBCPVA= Headers/MBTopUpParser.h - ncdHOqNjU459DfaNIq4KdQS11qc= + MmQQ8n1WYyc/beBy65z+Xe9fTaA= Headers/MBTopUpParserResult.h - OJQA7oodZEuyeBpCZucdTxNwi/I= + UKjRUOoenR5yCTep5OvB/jHUqzY= + + Headers/MBUIComponents.h + + LDaRxchfLkkMqcwczmyXEjgWjKg= Headers/MBViewControllerFactory.h - peoKcbrsRZrBAbBqihSbsoGzQLE= + AN27TCnGNIsbi0wCtjj3SJjkxow= Headers/MBVinParser.h - evEehLH9w9eGeyTXe5Qi40lm+kQ= + wnrH5dY4R+o/IPuq9WJj1A6ex7U= Headers/MBVinParserResult.h - o6ASkusZKmC1BZikIubtAH8xx60= + jXbmad0u6Fa0WTcJCx307EM/HK0= Headers/MBVinRecognizer.h - kr9ut/9yE5B9XKgTosUWsD4LwB8= + puun5+UOPPHZEtXb3BqBK9ubkfs= Headers/MBVinRecognizerResult.h - CcYNhoSC9nSQfK7VfVACywtgRkc= + LYIkphjyYxTDBAwNqI+BOxAci/4= Headers/MicroBlink.h - 2aAqlxZa9QbuU2ylk+Xe4m4afRo= - - Headers/PPBlinkBarcodeRecognizers.h - - OoFeRFbxZxITKJH+dD2GEwJCibk= - - Headers/PPBlinkInputRecognizers.h - - u+pbWh9cJsR94/Kk9dfWtizKODA= + +9E/QWCjqwAMSAsPGzXnWFJs6eg= - Headers/PPMicroBlinkDefines.h + Headers/PPMicroblinkDefines.h - ALTnkAS7vcgCyF5CaQZkMwQJKPY= + TOOJnk5dJ8DCF0SbYDw3abd72w8= Info.plist - uuUfISLTAhS6IE2VLyhncoZmexE= + Vc5jB2lAEtqfJZH9x4tRXWBcupc= Modules/module.modulemap - r1IMnO5oqrKTdbYvy5j7J0DRUQ4= + V9XnUWJ3v7ZTIggf5MD31++YiQ8= files2 @@ -547,484 +571,539 @@ hash - fk9fF2iY0Ay5YJr3RiWVEnwtLXw= + s4CY1cmh7uIC9hHsqJ7DRhdtAZE= hash2 - e3LG7EqJCQ074b7rgq87f1cgUuhcMIrQncM7cX24Gz4= + hvtjwHy4LzFcYW4TqgIhkcsuNksYw2GXA1ARiYgKrzk= Headers/MBAmountParserResult.h hash - BhNzTihGNlH2mi41bsFPKa8iXtE= + td31okFKjPnVqFOj/LFZRFel1qQ= hash2 - iZzFmEvQa130/ejHIB8q6UAzbmHfiAqD+gLo4vAX0+o= + Js8L7J9WRYRumTdZhxfZI8efWU3qCwpxCTjCbCiSwZU= + + + Headers/MBBarcodeEntities.h + + hash + + xnovkJ9NfdF5aRdT8NRWhyc5Cq0= + + hash2 + + 8PiQq3cwDnGKxyfl/ba2VZZEezdthljOTJkT85Bbmgc= Headers/MBBarcodeOverlaySettings.h hash - TJbkp8L2vcKiWqdTZCxyqgfrVMw= + H1vvYtxbJxjwmOMwQ4b5e7LvAL8= hash2 - /Awsxse/NAwBh+YAgmupNxmGjvYZnEEpQ5yyNfDims0= + S2pb8TAm1ffpMV21x1R7VbxY8oX9N/iS7EIv127csyg= Headers/MBBarcodeOverlayViewController.h hash - VtXw687EeXh7BWEj71wP8dhPxPk= + wCqiGrKvuGaYFAwRD8NYZheSEBc= hash2 - vL78V0vfiA7xghnr+Bj0fpJxKo9r8L9CcgF1jT68cXQ= + DEw+bN1WLlAxxMldCRjgqa4qNtWKSzeFdQhFmXAN6pg= Headers/MBBarcodeOverlayViewControllerDelegate.h hash - qVVtiDAUkHrTixcmrwOkVB+u/O8= + y2N2U/cpHBb/01UqvRXiGcv+UC0= hash2 - n9GQrdMU8GsR3tPbeFbutjNGDdH/uNVwo+Z/xBOE+Mc= + es1lT4nNKuO6GVh7eERPt1tMAU0HcGRbKduktuQ+kjs= Headers/MBBarcodeRecognizer.h hash - hFfFZkaCLJaL4cIrqEuPLcJULHY= + dqIct+0QgUzVWVGoVaaVg2o0occ= hash2 - 3mvxETjq5YrtqNwdpTha+RDgLdoZ4M5GtLUKtmm2qXs= + 7BLlHGhQvWmQeUbyABr1N4HyosTUM6DzeBfauCH5Sg8= Headers/MBBarcodeRecognizerResult.h hash - cN6KmWIldJKGtASZsMHlmmBmmh4= + xViLtcsdHlghH43qeZHY6dONtL0= hash2 - dk1nlsc7DE9J2AzzAXmtv7aNtAMM4Cp/03O+oA30Pbw= + P53Dlspn07xG3C2XbP3XluptI6rpTmHvyMkp+Ib9OZw= Headers/MBBarcodeResult.h hash - be420q2unpVXwQE1oGDOW8RzrlA= + xhZnJwyh7r2k3CpZlAHfKvfQ7V4= + + hash2 + + dIwc5xwHL+TmZCq2hgRFQtFE6/jkf1BOgSn0aeM5X1A= + + + Headers/MBBarcodeUIComponents.h + + hash + + 4snfrwY1/m2wXfV+ZkmibIOoaUg= hash2 - fcs89KTO4IuYkXCJQoCA+kcqytdzIDRclWTBmTbFtcU= + YdWjRQ+aTLlrUA4kb/1MzjbNxZx8GdTM75PxKB+P5jk= Headers/MBBaseOcrEngineOptions.h hash - 10acXBGg96HpFmo4vQZ+bvxHwDg= + q4/3XIFwCvhSTM+HnnmJwh+k4Oo= hash2 - MW/T0ybdYiUJKwBw3b6BLScHx1CS8ZHKCtbj+78bWgE= + xmPgKYWLxJPGWe6+1j/A7zz1xVghvt21qzZxbhYpgqU= Headers/MBBaseOcrOverlaySettings.h hash - bvm7vX/8MtjiU19Q1NkxJKUXlN8= + 8dUpnQYbuhh3XjMk3DgqezmtIuY= hash2 - aLtoj3iiWbpHgwW4xK+sAYXFzYFMe0J0Pr76HYi5HiI= + 4BXH1Ls3yzSmdrjHTLXKHBS8/kXcxAsdg1GN8CqVVHo= Headers/MBBaseOverlaySettings.h hash - E9zGTmK4w0LaGjL3d0zfUY3YxL4= + z6bhcymTekf4+80S48yx8+WLBuo= hash2 - P5PSjS5ANrZDMCkD5OmV7B7LnhYapGoWp5K6L4l7Yds= + 0r8vAu77X/fkWNklM+Sa7EHOSmpWfA36BqXPqhkcQ3U= Headers/MBBaseOverlayViewController.h hash - oO19CN5viDYBWodk3lia1LVZpx0= + otfzYXKPVH5ABzmn28HSSw30IkY= + + hash2 + + vx6bqXrd3LON7cGbL//BPX1/79sVYOdnISMU5znMgng= + + + Headers/MBBlinkInputEntities.h + + hash + + wdf0etFwGncImeRCmfYUtrb+Uys= hash2 - vwgU3xw+iEpXPSKk3ikG43NIhopSpMTB1OpBWqOMP/g= + Zt/Nv23bLTDZwboRK9yS8FVWtwzPbRJhTtEVGISqSnM= Headers/MBBlinkInputRecognizer.h hash - 3K4oX/XO/6UNhyw2acTAbyJA13U= + 1Uryj6SI2ADnES4NUh0OBh3ae+4= hash2 - Qdz+jb7zNBFbFRCZ8wueMAEEPiSnGlPl/UgCoi2JB+k= + DqqHtf4L6HnZb5FsSEHoJwQkFTyfHWXa9xVA3KidPaU= Headers/MBBlinkInputRecognizerResult.h hash - +5MlfGZ2GZYbUPCTGuuBoapNeoQ= + eCgqofSYz0KFPNvJ/2DaDbOatbY= + + hash2 + + gU/BMzx5AfYWgjk8phJBwH6SdOFD3Vp1GyM7J9PC2o8= + + + Headers/MBBlinkInputUIComponents.h + + hash + + 6PnqH8rHtlmCxsC4+jfrwbHGJ/Y= hash2 - 4D8xnpVlVSVG0HSYJ5jbYJfg2vDoRNw4QmSrsJ4WF+Q= + 7d14SaFI6KfEYD4DanisE6fHks6EA25H7exjEFtuHoo= Headers/MBCameraSettings.h hash - OFGQXZBG5qnGeqnDtKv3aHCTTGY= + OlzBDAFkjC8+DVEUEIAMarJoD7o= hash2 - 6K4V11EtZiScnqVVjgIMBGXaz07ClnkjY3CMURZpXSs= + hfumFjJy2XR9KbhQdgtRoA3J/u3sn4pkcU0gtV3YwQM= Headers/MBCustomOverlayViewController.h hash - 57ovNFJm2EjMnQWIRcjC2ibjzp0= + lwRr3fdKY+fRliel+acpGFp1ZZE= hash2 - nTGMFnt2decFRI15sko/M6lycm7JYKUwbz+2TnWkrIE= + hvWa3EhImigzV8klI2TsSJQO8lpcUMunjiw8djWZGPY= Headers/MBDPIBasedDewarpPolicy.h hash - vHWkOSNxu4lhK9qsH6jq40Gtj4I= + 86I/F59TVHv0rSJMEKQKCotTko8= hash2 - 4WCUwZWzobF7MTjtpjLZc+8eBcBLQ+UnFYJXO8nCs3k= + YANzUXl55AHKpT/CylL4oV2isE90OuEnIsuZYYyxsnY= Headers/MBDateParser.h hash - VEQdS7bMHMbT85HnKUegIdhf3ng= + 4B7GxltRwVscHdtmu7/ldgksnSA= hash2 - KzGjy+p16h+9BRS+U9xa03PrasoSuinKMw02WyjdE44= + iOlySanNA1ttZf6k+LK3j3xyX1VQUHeezgAdLkoJ6fs= Headers/MBDateParserResult.h hash - FBziQ9FFZzciCtax4b9iEwNDo9E= + X3LVENe9DtqglWPpqGmnLkNVafA= hash2 - L3o72unYDZg7F5TfxgTmZwVGRSq1+zTzBfI2lEOg6fo= + iAr4KrPqOYt5mRdgIlgJOJwSYb1V+ELL9qp72MNf5W0= Headers/MBDateResult.h hash - oGdqRHHpE3LkS1Rqye6fwdv8mFk= + 9/LfBx2SmF1fRbkAazp+Re1tC1w= hash2 - u5drogytjleJMHSDjWNBI5VHydYiYHYvIa70ZoSBMR0= + YxnNNJO+slx7SYnMS5inEg4Ov3FihOQNwVrENaaYKTg= Headers/MBDebugRecognizerRunnerDelegate.h hash - pHSLJ8Am5IvnY4viCuZ2RqmFS9Q= + RRZle2wowgH7HbKb+Op/AKcelF8= hash2 - hNdl5083Nu+7VAM7UVx327EJKV+xkyNLdRPmOTeQZ34= + /fq8vldngI4nNJ78Zq3EN369tl7K8JfCFYPFGpERhu4= Headers/MBDebugRecognizerRunnerViewControllerDelegate.h hash - sHI0VC9Fv+BtqhjcmolF5fCqVIQ= + GY3TqBNqwapwuL3WnUSen4IOKJ4= hash2 - A6kwphOFKSao4ZKgTmA8nsF6uQBsInrAOU00zWcyrJM= + vLAp+Ywbi+TMV1GjinbkjalCqYB29J+M8mUw64vULyo= Headers/MBDeepOcrEngineOptions.h hash - k1oyDeemGA0SJSsyU8cPwaVCcxw= + PxzxgUJimjAGHvSSpvCBSvGkNBY= hash2 - 5iMrpHiKMMOyyiKwU1jbkJU2gJSWTCzYEidzzFUZZgA= + ly9ikPOzVw+g2Ogp775sMm/zcDLHME+sbJnZqVvsdhM= Headers/MBDetectionRecognizerRunnerDelegate.h hash - XB+1/kszRsI5+d7eXbHUamD5kUY= + wkKjAMZ78kl2GBRIJbjDsHClHN8= hash2 - lSDmzYkEcDscCBDxP6aA7gnxjdgPoWNVF0asHL4SkHk= + XpsDke7S6n/xgK/OsdAuTmSRkiDRbEEtqnMOInfGwKs= Headers/MBDetectionRecognizerRunnerViewControllerDelegate.h hash - T3g0E+sChdvTm/cDzAe3F13+lk8= + 6AHSk5QLGP2i5cbh6vv5KYDHtNk= hash2 - kX08/zDZmgC4VGeFgw620z0y0J+dR/BVbpiDAwUHoeA= + SrjMaTCnIohR7nvXOEjdOtOt12zUt755t2ezbOukIi4= Headers/MBDetectionStatus.h hash - AcwS9vf42O0IXlAJMGZS+5ZJY7Q= + 2rX7M7wtxD4mM93wckjv2GTR1/w= hash2 - iYwV3NQKBqF8Da12KzBC7wBgn0FXljbTe9vW7+aoevY= + V0NdaaTUMPCtqVI2BDUqCtmmgFGWZGtFepWTgz9pEXs= Headers/MBDetector.h hash - dGzD8O10pQM7/DlbXl7Ii0tUyCY= + cZPQsaiHS40UnXc9wEM1rY+zN2o= hash2 - RPoJJzxn6EZOgzJxpNsfX318ztuejrKM6o44BSr1iyU= + xUMy0QooFQPb+eyF+ofb2JMIU3Prs3wY8z/0LIyU2uA= Headers/MBDetectorRecognizer.h hash - y1SvkOZKJD7q8KCRvyJIoPBI53E= + nopTsLBo5GMqjMiRgmdfRYI6zxE= hash2 - yyXEMVwFy2lPjou36JhzVJNVo6Q9N3nDndNvVZG0ye4= + sbRjL6jWXhrC7m72EJ7tXaP1OdxQYp4ph5U3v/BEJ9U= Headers/MBDetectorRecognizerResult.h hash - xvXbwI21335yikNmMB0Ikz27DXE= + Oslompz5cvq9nRniq37x2qNgdik= hash2 - MmcgG89VHgFtqoND5dyIH5Vz99drMPpHFQntEM40fxc= + +dDa4tzlKiq9MpyBhlKbTOrOijUWQxtj8n57nmPJvFw= Headers/MBDetectorResult.h hash - gy0Zson4GW1/u62QkRNtCzuvcnw= + LS2J5du5HT5RR0Z68aBCb1/G1us= hash2 - MYig9pf8kk6PPnNpYmEFlGNeb+Tw0z9qi289KcaPMqA= + Y8z6E1wNSycjxYfswpKO6Ka/XrtJRften4uW7I+zPGE= Headers/MBDewarpPolicy.h hash - fyz0wrwCaQq8BKs0zJyQ5Ij2Dqw= + qN8skbo4lYmJimjXOKdmcDg6rSY= hash2 - sGTN62vFXQ/ucfJaCe3c0zz7mT2XM3hhGHCQXAaddbQ= + 1LoE/3mkgB6g0BE9Nzc7RnhCyWIj55nbXT1A5BNqSgI= Headers/MBDisplayableDetection.h hash - dumeBJcirKT1SziDr7QM+thTB3A= + ovoqRoBuj6ktOK8CZQkOEA/c8YU= hash2 - dvaO0C9R2ucZjLXaOLhy3zAUsMVzwOi+Lx6vPBNv64s= + yrv0XId18vfdVZ+1ScCi+rYPJFiZ81lNaR20vShkHUo= Headers/MBDisplayableObject.h hash - nEUBylsXu/1oDDGqcOx8ZIQR+Rc= + gAT3SvDzR4ue/SZslzmdlA+G2io= hash2 - qVJP1hhwjMxYI1anUpNcmSEjYB+lUROOZkXtfIncDdg= + 6bTFZ+d4e2c6vJ3Cv2eqHJkJYSneBoKeBDX3I2nOYLw= Headers/MBDisplayablePointsDetection.h hash - PFiBpWn7kRSbAsAV62bBTzQYPFY= + nC6Tt7/I68HiQCpnt9SqAOyZ4O8= hash2 - WGwAKHBKnOg1pFShWQhisNLhKp5eypioEt5lk4SkVWk= + zu5sBg6YmLBZpah/OqbXHupPVim6ckhNlnzueI3keDY= Headers/MBDisplayableQuadDetection.h hash - lDU1rIuq47c6xG64Ofxx1G3piU4= + BHva4NitqfysG/O67Z4PWGC0Ebw= hash2 - 7IvZ8/TbNNZUb6QOJam/OyimMvK4T2lerszdXwozL8o= + DOQEpvsMbU9/tR6LKUgfBc/1lcZIS+6bsEOEriyO+6Y= Headers/MBDocumentDetector.h hash - DpZDwAO5SBI7HEZTXgQT6LHaP3I= + rXGoeRenakwmM4VLlm3auBAnioE= hash2 - pcOiCbQM7IUPmyuVWNUPKrd9DgKBaRNawajMLuBoxUM= + kHS46S0aaH8UwnNcne6UBaQ8y4C8geIvYyzcrvYK9I4= Headers/MBDocumentDetectorResult.h hash - SRriUdGcXsmJrle1OBojx3rt7Pg= + 8UEsA1O5dgtyJRWHbHQfWuOHYEo= hash2 - LwgqLCWTajzIc7mY5bijyP25LxKiKUhKnVk3XOjHVwA= + sE50jz77kuqD0artBqm2lC846GnZXs5bf7IeJf3gdvM= Headers/MBDocumentOverlaySettings.h hash - O/n3ncBKNJqZxD4n+84nnc5jXbU= + 2M8PUFrCvZPGa644zPlEfxAxGDk= hash2 - 6xJHUS+BNJ2H+eevSVZp18Dyb3I6wMqRzHlk33kGyDE= + iq66QvpONYQSDp0ffvFljzBeA+2/+V9iKhCaWZMUXFM= Headers/MBDocumentSpecification.h hash - ynfkpHUFRwXxRDv51rhwR2bvXHQ= + +inbgkmJVwDhXGNEGdLllhT80sk= hash2 - DGcnaeGNbRD6JYEndOi4MWYcj6wowfF6PM3zeKnWKus= + wnyYQomcnsvdNduooPozORiv8phkWI2+oQmqVLJz3t4= Headers/MBDotsResultSubview.h hash - McD1PXFvpwb8lO9jNSG0Ualh+os= + AHblUO+FK2YUIDQUHoeYaRKenW8= hash2 - PQOyoMZZNA5EMmCzX1q+32xobKItjhJiRr0c3ejbxcU= + eYSQmmiG0teOHLxSZZyZmQj52aqiSux7OicPjTWUJbA= Headers/MBDotsSubview.h hash - 7HW8UkHmwW4OwfYCtZyUpNNMKU8= + x1atFdwmXPBh/BgFOTlllCddUWM= hash2 - cF4F2UV8Nya3YnYVE4xMjCX5EmKJTMogHwj2xjT+nCY= + aTTTaLt7i8jXN9vONscDwJ9bhO96ghJQd3oooe/Hm1U= Headers/MBEmailParser.h hash - VE+hgmPR3kkI+JHuvmaghjn65zw= + 1QXZG7tdyWSDch3Zocpb6pOV60o= hash2 - l29hA+MEQwdMRtzcx86/7QROouE8Yb83ed9kxjc1ofg= + MusKKS7KI0uh1VaVcZqQU57xD5QNjQOwEez0WWQ2vGM= Headers/MBEmailParserResult.h hash - K51uWvJAVDKyT0RbXWHK1XYnqXs= + x36vE4qyidLkrFupAzjCNGWHVjM= hash2 - gBQuodC/73h8CZeeHRJmwgvqO5QvtwjGhkDUnZGL7rk= + Shglejw1iILGDKW47ddrpQve7zobdVCSf04ELOC8sYc= + + + Headers/MBEntities.h + + hash + + PzimpJuI6r++/FUOXYKmkGkK/PY= + + hash2 + + GHBQRkoxBISqaLcuMpEhqKgME7PLWgNMhRKJfcrI+es= Headers/MBEntity.h hash - EwJkUDWGZP2Ub/oShHDBZ+pryh8= + okDIKhb4ne4uFq8ITR1UfNAEoMo= hash2 - 8Ytn8eMeYT1ZRQJlqGwjoUbFbszsB1gRETkk0MO8u7Y= + SIl/YG1vGs6LOS6DM+b2+N0twuVB0sfkdfiDBrMfX0U= Headers/MBException.h @@ -1042,11 +1121,11 @@ hash - jJoSxR0YzMaKMr7vK02/B+a0qcE= + imfGB5qUUrwgjHguwZl17BRePvI= hash2 - cCk/HpcQTGGoKne3wNHJhJPNdhkjv+xAvsB7r6mADSA= + OhtuZDcEojb5aB2l9xGyNdcBeduG1/DR2n3HU3/ke60= Headers/MBFieldByFieldOverlayViewController.h @@ -1064,952 +1143,963 @@ hash - vNgxhHelvdiJEQmE7/qEPzzrO54= + AcqHPWtuGuPEwV7bxQ58aT8aKds= hash2 - Z4emXnIeOerYGlvyyLYldz+TITVtVPXMqFCDu15mYew= + P1qQnekEQQKCukCk4oBoQlgl1lpaXHpa8KpgeVNtbXE= Headers/MBFrameGrabberRecognizer.h hash - TJOvNAIdNPWVLsHM5o8Ln4egmSw= + xezzd7Lriw05h26Jhl/FL67oU2Y= hash2 - YNkcP8SGd+JLi+HkTj9YsJIu0I2Nnpa1C13I934G8tg= + O4D78tBkiuB+A76miZTdGcRYGjdyLGNSuDH3HiC33OI= Headers/MBGeometry.h hash - +85eFGmWyzwnYOkHYrTr4MWXXH0= + Vf6asKFXdlZr5uhOEHFEGya3oMg= hash2 - Ht+U3pWNYtHTjWOBpzzATtKnjZTKs9kuG9d3xcULY5M= + NtJ7+N3ezgHWvagAxksYpMJ1K2r/Yo46loZwWKvrjes= Headers/MBGlareRecognizerRunnerDelegate.h hash - hhnfRblc1cm9fh8QmMlRJ13Hilo= + 4scNRZkzo6vi4pItKvDCSrBB8Bs= hash2 - zf0vZHOawgUbFGMHr839dkO2qomChqzrcFIYZPs+r7M= + ShheP+AR48lajrX9yfjp1NKCB/lMz295tHIRgRdAw1E= Headers/MBGlareRecognizerRunnerViewControllerDelegate.h hash - ruaZJGTaRPtPph60v8JkgSSqN8A= + ANWhjFk0cQbm1NCNUsIWt3safG0= + + hash2 + + HdE9xXJEVSw0V2tm05mAGDHyR5Pe/P3kUqUEzO9U+HE= + + + Headers/MBGlareStatusSubview.h + + hash + + 58Paw0tggRozFZHkFxxqHluUV64= hash2 - i/S2JSlA7P+DpN3udtUcWjhz0BsIgWg/M7ewq8fBYV4= + Ut/KyI1FEogE63WiiUdykl4kuz7HI+ixY+gyTBJJqWk= Headers/MBIbanParser.h hash - tJg/vYu3AWy9KIAMJeC5g1pt9p8= + Q8cTwC+osD3+8EKgtgcbT1dlh+M= hash2 - O/FhaoK8Nckawl37GjDhiIRc36/ebmzhyHkotRJ/s3E= + EQiqjL2h8a+OZX4Dc/vD1cv3+gS3tHX3d9nCE4K8HT4= Headers/MBIbanParserResult.h hash - qk5sBarOuHQy5HFWex1yl8vC1EY= + 3/PEIZ5exEoHqQRqeGwVPkbQIuU= hash2 - UllWrzju3TSVhi7rRCpteV4g+9dUI0ngaxX0YcAiYdM= + 7tRdHnTW3FCkr67QeqGRtxeS0nwfVJis+cxaOv/UPnQ= Headers/MBImage.h hash - 9KUg9w0SglfiFNcBHg2xO22+Qrk= + VlYNyu4ivL5y89TA+5Ful1MwSnQ= hash2 - nmtFBpzibc3G7RntEWhudZs+SNpEkJXhUazSfmMmkWg= + 6c94/J6y2BM/RrNRykxJ3OKbdJMmnENrSA0FGPg6JCI= Headers/MBImageProcessingRecognizerRunnerDelegate.h hash - vuQwGeF3UuPClA8hZFnkyYYE6Ps= + O3NVRv7e6nsyS2p2Jsz1yv2Ngo4= hash2 - dgd+sRh5e0il2orjVYkZ10NHjpX5lrFOr8EBmmPIYvU= + n2Lc8T0QLmV9D3yNze9MAJgEB5pUqP0iLhrJUNguxt4= Headers/MBImageReturnProcessor.h hash - QcOBGFG3pi0CwMPREtYVC2d3tjM= + JfZdQu29+EZCkLKrpS9xtraokz0= hash2 - NoX+nBvlf0TXeVkN5PmHxTeznUbuC8g3PzwA4Qbix6s= + 3N/qXm77kEWKrzI/vebWhBf5HPqrRHJIQnf240msRJ4= Headers/MBImageReturnProcessorResult.h hash - 3qH3RiuWwlSaYFAF/v8UfvibG54= + Dr2vOXlDVSnp2yZ8mXUDQlsGWAQ= hash2 - 58wOvFzbZBEa8T+NzfhAxGhbsOHUEHEWfCQWzt/o9lQ= + Mibdc7WlHih1Ellj39n1zoRYFI7HzBidtKkA+GbE9qc= Headers/MBLicensePlatesParser.h hash - mcXnRqzltjMC7E4ZxCWyRT98dCc= + B3ecwconNCWtiMgaPZLEmT2ZCAA= hash2 - Rdjpp3fAAcUhtIBVsBWFDCDD6qJxN+E3Q5pNWE/f4kc= + EmQ5xNWs3p/23mStuPjJ/Q9VWq2JZmVv23ILD+IH/9M= Headers/MBLicensePlatesParserResult.h hash - oyEvrC3KPMMF5wX5l6t95Vv5mgo= + BUY5D6jBF6pE0MsHT699tRoINVg= hash2 - FhWzP7OfwT1/LhSrqJEAMPFDf8jVgnwmOMLUOHS7Kxk= + pksDzJYrhx73AXebAVOG5361KE8Ij/LqkoUrX4ihbsg= - Headers/MBMicroBlinkDefines.h + Headers/MBMicroblinkApp.h hash - O/HBCk52leRQ1YV8XDCUpkN1NFw= + TdX2P/Damv+2RViHn9Ih7qL60C8= hash2 - 3kWNnUVoSBM+NluR0k1s4d6/gyBNn/hcM3r1DBWPwGQ= + y3Cuk4BPt4Ed7VPmqXWseQXo3OhgOSeCiN+L0dLq5ps= - Headers/MBMicroBlinkInitialization.h + Headers/MBMicroblinkDefines.h hash - 5YdAZlRjQmSc048/LXHrqt/gGmw= + rMxtxzm2Y4yJD3g2BzxdipAbVFA= hash2 - ezI4y3nKGJTi6M2JunEtwJSo2JMsBo3lG+LQEPDaAjA= + 1mpbyVbXHxPJIqXOrP0vcy7kN23vy61T7TlpdIvcbS0= - Headers/MBMicroblinkApp.h + Headers/MBMicroblinkInitialization.h hash - uRPi91+BMFWgrF+8ws0aXrKPVpU= + QSpirY+gUS9A5KVIisHMsA1yfik= hash2 - YlxPyvenJqcJW0/9TAJI0wag1L/qJGw2lTQh/NiKiPk= + S1L1NRQMNZWdG1A2ey6VsKjiMLYOXgsnwyDuX8BGssc= Headers/MBMicroblinkSDK.h hash - QINMlP5qEMbUx9uNvHAnuAJuOnQ= + 5+B1PzDl4C74yfqoLAPkpN1ySzk= hash2 - 8+V5E9xDxTfnaX0bIf87OoBLH25vBFlvzh+0yQTpKhI= + P8RCtAEHvrf06Fw2GdVXNJjcoShW0cqT8DncwDdn5Q8= Headers/MBModernViewfinderSubview.h hash - 5XSFVvhxw4LVFDUJqT8MXtCUuGI= + g9vyv1iWGhrGQFha5+l78ZnBF4k= hash2 - xpKOYqn8YCxq8BBo2BOplYKw4Dk93Vtk7XVxfOvWN5M= + /syjUI0NhLe9lhpiE1/qsvhNwK0kzNl587J8G5rD0Jo= Headers/MBMrtdDetector.h hash - aUIEmz597anOK9w8DleNitPCMww= + 6/eEvZxs7hJimHjz/LYxkOkYx2k= hash2 - SrnfvhVQ3H+BhHxzc4kbdlKeDPMnDVikdm7wL67tABk= + OMQWjiN9ckVDTy0eWkEjKS5yDbvWjRcoqiENAFkXiPs= Headers/MBMrtdDetectorResult.h hash - IW+FIMBkQUBsIHrYm7KSqZ0Z2yc= + dSTqPXpsPHBrcU2KM+DnKre62PA= hash2 - 8GyxeOzH189CtZmcnoevlhef2k8Gq5XxtijOsp7vP3Q= + uGljcG/k5uyE+3xmxld8eSZnDDXCmN3z4rPVotrtjF8= Headers/MBMrtdSpecification.h hash - rHYOFz1vqG1kNlRW7IvQjSelBcM= + NtZFExUczIcObeXwtdMI7i+DGg0= hash2 - RvT3G/RF6SwByeqMjXIJxbpri1GifysTxqJEr4V6aoI= + pd4Mdpd20tcesQdukvk3t5S7Jer9FEKoUCtYkeeJxjA= Headers/MBNativeResult.h hash - rXCTf5MOs1iy31txh5izI8FF7Xc= + GCEyCCwbLge32bVB61h+h+eYHKA= hash2 - Ej/LvneL0jvBtVEMc9ApCEcywMH9RIGAI7QT+jC6Iyw= + z/I44iYjSDPc7t/rBUlc6NTazsUMBy7V6TXzD/Q0JXo= Headers/MBNoUpScalingDewarpPolicy.h hash - wipdzW9EiRH1KrZvX5Wda/N0WJA= + rSd3exLHKBeTIu0/xzJD5wkbYk4= hash2 - gLZU+6AsP9f4yMypqKJCwM3CafhpsHOTSo5K9rkgAyA= + L7ZqkP+BaWaA3qUMr3xaWqvL0kyiZZ1uFGFQ18/7q6M= Headers/MBOcrEngineOptions.h hash - ba6RFQkx3UM2BZfzTIvfI7NhR+Q= + jO8YnhnjuYhrlfwrxGDptBg5OMs= hash2 - mTx8rOi2RwKt8eyREiybKkuZM5wbUYWhZ9RFkT38JPE= + VU5ezLb/x7IbJ7odKpCn/MfPC97MjC4M3Ish5HFsnEQ= Headers/MBOcrFont.h hash - ULAaoF+T8ZdhBqjXfvq4UC2XYUI= + uVr7j0xbrP8/VKibp1wqVFSW7Ow= hash2 - /hOv27RKdT1T4mkbmgm1ro1b/MhhzZfGnIRNpLOY1zo= + sv1N5/xlABn4rAzKLB9zhKyp4mOGcYa9wW/Sq0sFWUM= Headers/MBOcrLayout.h hash - Cmk+BdfzptYm/bBSZctJU5EkCtQ= + NKrOErllp3nVLSXP0O6i/evMED0= hash2 - drP070ysFSLQOOQwkkr7yF7FxDxPisnZiIuOhgHf8To= + QTjADLoZWcwm2q1HCBPcgLjsfTTOPrBVhKGLc6micJo= Headers/MBOcrLayoutSubview.h hash - k5IW15xYmMnwmz3CLqtAwjHNfYc= + tO2JlNAaA0why5+ZskMyG/gt9sA= hash2 - bRPuqzqjc5OAp7aJASWTdvcSx0eHciww4ypaJGQLRMw= + g9HhzfQO0gLt3WweOYnrDHzfEbFUThTb+ADifZrONkw= Headers/MBOcrRecognizerRunnerDelegate.h hash - 34XIHP8TThsP+guM97lS/lX+uos= + ZqeK7evp/eHLrSCUYe4gXEFb2Ec= hash2 - XFhO7dgiUYEAASb9rGVvkEr73CJRV/lZD4MWTcGeE08= + FaNwNNv0gu50v3avtD+4+xnfM3DZckJLyaP8ins9EVk= Headers/MBOcrRecognizerRunnerViewControllerDelegate.h hash - C2flxMElfu4alu6S3gUfconkrWo= + ExRS1jsEGO29Pmf5N5TQFwCducg= hash2 - 8lkX1N/NF9NEhVl350di8MpgKZYkRGpAeMwO5g3o2ZY= + ettjErRnYSIPsBGvQGz4hOl8+p1NaK24cQYXxn63Qms= Headers/MBOcrResultSubview.h hash - 1CX3lnKdkBZOaGYqgSAqZJ8FLz4= + tbKKD8/idN9VFLXsezK0D93Kf0E= hash2 - dwxlXjO//YvPhL+zvyXIad6LqV/0OHOOhkwiZfqwD1w= + pFwKMmuSSnI4GRyVtndyVLEfaa9HLlXbTw8E5gAaJ4c= Headers/MBOverlayContainerViewController.h hash - J+KkQ/5lO0amWlfTMDefg5gJfa8= + rwiRS3zDLiUjcXPggVVCizvuOlY= hash2 - 8VpwGPSvevI9adNxZyfP/dH/V55cdlCp9/gbLQ4MZps= + 3cHK4xczxq8/VhXxYb4TJMKsv2g+IUZwGfLuHHbxBwY= Headers/MBOverlaySettings.h hash - 8ayTgyDdyjH3MAZLckbHfKIHChc= + aVkClUCvZiCM6fIAPXbIHr0FSKw= hash2 - ykqB+foR1H0tak6SnLQScFHl9wkTiedY19fVIPbq6Z8= + 7xtiFODZNoUbYTs6l3EVNYhbznLoX7oa4PKXW+OkZAU= Headers/MBOverlayViewController.h hash - PK4Y1SJDzTMUwh6ksy6lIzPCp9o= + UzqoT2+ZASYqVM60c4eN4KOeGUs= hash2 - KHKoPeIjk1i5F+LrzxeFJbGlBM/4jG5evhstUAj1Ai4= + S8DA3YN8zJj9id258fuiSKddsnL315w6m+ri7RVb06g= Headers/MBParser.h hash - NhHml56y38J2oIiSFOKPQBGq7PY= + PeQI9LJJxdmFlkwedzpyxtQ4Bb4= hash2 - ZoTjoRnwG3YOj+H/AUywzSKJLy66JpHTsM0wmOFZ+YE= + C+FKh5CUVecAwK6bJd/PwTPdufskqX36NS0AuNFwa3o= Headers/MBParserGroupProcessor.h hash - VAba5hKVSg6N7BYqjGlnqDtwkIg= + DONFgRFSitEYJNPD/QOYy09E+jU= hash2 - P4H9zZ/yKRYtuAN95O6wcd0+F52PVDINrBZ39rjJHJ8= + bg/owE6WzHlOoWpvijHNgJZ/Gjdlckt6vFa7PeS9iCw= Headers/MBParserGroupProcessorResult.h hash - q5ewnvhRrbBWF6ZAzhxFFBclj3o= + dUKDn2xYpim14XmqIc3buZrNwDU= hash2 - cq7xPvrGmZJchyc+05HiDKgVhp7mJtu1271pNmOEKrw= + 9EKOTaqzXgTP0aF9gFjEGjo/p5ufGdXbpAJcwMokQb8= Headers/MBParserResult.h hash - b6uySWkIPUhq/aVaq46c3Wq9p9k= + +wWChQ3XdlBh33AaIxsS4b32rQM= hash2 - XvpyK0U0792sKcILkyncF/WuXLH89Tnz9TZmyXrKF3M= + iXUvL7hqjqgZEOS2n3m2bDs/hoAmlOFTDNMJayvatvE= Headers/MBPdf417Recognizer.h hash - d2lXhamuk3x+srnFb6DHfSFKAMI= + IdFvoMhzbc57CMGsOo1p6ufMqeg= hash2 - Em58paNAQZeERD78KiNq3B8IHEa70R08YKsSPLncwHU= + QmJwpqpy1EgmhFgHh3doK0xzf4h9xLh/6aC8XfhsbN4= Headers/MBPdf417RecognizerResult.h hash - cLi/eQRiWPm7RaTI2OZGZd/cV/c= + aX12egQZvl33mgVHhoM73I/Armc= hash2 - qneKNLXzx4DUx0k4C1Zq3CuTF0CUauelrPreJRz2rbE= + Z7x6dXDsMVvWXK048npjhclk4E/QoyedeOd+vETaSsI= Headers/MBPointDetectorSubview.h hash - ZJVSrjDkz9UIEWb1O69JzfolsDg= + zolUrbNidtvitCVJ+EbKBvPbfVQ= hash2 - /nhVVGWOPhXgH0zuu5sSTJ6ejpfHooqRFtylL6yx/Xw= + aeIdLxXa9pL0yk41OscSb53s4FmQckgLfJVlkNu3r54= Headers/MBProcessor.h hash - cJI/lESCM3Jh41nlfEnpqea0Bvs= + GQ/RQbZXgDekOhiHXJO/Airrn7s= hash2 - X+NVjLeaz6SzbzRVl/AuSojXWE4F4TWoKpGVDIFTdcw= + KKLIY+St/tO5Jbt9CSdIQNAWoOYBZOtGfwTh6vCC3gM= Headers/MBProcessorGroup.h hash - uWwsA9dVKHd/Y4KMtJKVBuMOQnM= + +6B4M5ysQW8HgMLaBolFoAo07S8= hash2 - gpEwR7f7Eq/vjQhJS1JzFpRR7s/4gRnPPv9cuOSA/B4= + V8ETo2z7pYoJ7M43+0S9zCPWXKqa7JQ/ED2G/CvO0Rc= Headers/MBProcessorResult.h hash - 7n+Rpho6t1VO9vrEtZ+d3Ok3Bjg= + lLfhtb32umGGvC/G8JNajXxwykg= hash2 - yZkdOyU6jakl7gd7oBH8ApOhn1reswA09bGE0e0JRmI= + BCu6TDJS9IyUPxsAgklDq0nYqBPDg81kuaN353Fqsyw= Headers/MBQuadDetector.h hash - 2YBH5Hs7ztAG3P3IM+VvbeWlNpI= + AtXFnUkrnZLtFe+zy428DMmr14M= hash2 - 9woGy5787cTTUBYXDO10dLR6/dRWktUHzmqCpwx1/O0= + dsovAr99EZCJedwJ6i+1dbBFfTdFMx7mUlX6Bb/MiBo= Headers/MBQuadDetectorResult.h hash - RGNqJyAPUIkreoypQpGszMWp4JE= + MvjEDWMDyEicWcAFl7Vkft7W1hE= hash2 - MVrEp1xtxSYiZGJm876vvSPs0y1XKTMhC6aL6QYZomU= + HSJ7LRTQyF1MpRNSE7eg8soMvBqLiUJ7I7cwo3tUYQ8= Headers/MBQuadDetectorSubview.h hash - VVtfF6XDvZu8VotaNFinaEhFUW8= + fHQpHrIyw3RO2NlXtVUrl296nNs= hash2 - F78O+Dh4VX8zA4SR8xHRsy/qNNu+LcBbRmpXGHY+yeQ= + JRuF+vXQ8MDykafv82rZ71QsCAYehIY4tIM1rzQ1650= Headers/MBQuadWithSizeDetector.h hash - 5ZN6vPsZHbAGlemOC5j5b6Jn3AM= + Aj8hbLJyjsgGf0pzG3gkMgpkUqs= hash2 - V24jgYg8+DB52g0/AfpUkVyHAre7+I3piRA3Rq5cVYo= + q+QRJdsm0ugrXceh4h1j3vBOO/qUUwGjZU7DjvCHtHI= Headers/MBQuadWithSizeDetectorResult.h hash - ACKNFXuuyTYecf46lgOjoDKmwk8= + Blb9qY7OP7neRXBM8/5tG62f7Yw= hash2 - zJGOg4SuKXE+MxaUbgtUPnxHT4WEzfwrERFqPH6w1FY= + exPzguXxTOEVvl8IFXdV03G36o1HUrJbDU+gdim2WQ4= Headers/MBQuadrangle.h hash - w2x0GSIT+FxE4fNQF1EnM4cNwtU= + Td0bw+EvmD2NCQNlro63eD0wa7Q= hash2 - wjepEoxD+w4fvwFC3G5HmzuqU4Vu9jEmPbdpADrmEHg= + yHqRiUaVplup6Hn/gCenGf17UoqJMo367IS0w+LXLKk= Headers/MBRawParser.h hash - UV5bgMt8Hwa6TgHvIrApTFpAd90= + DxLD74MOxmJo6+97lNaRG1HI51I= hash2 - 53luhbSDScs6n6tdOyL+qFvS3agb+wEKMluQgy/Wvhc= + fvDPeo5PNjIvo1Xxrd/C/ca8WrsJT/x0SmLvfnVHB7c= Headers/MBRawParserResult.h hash - iL+Ap0dUUOqcoteQXKu/gccDhCY= + UfzNNR+OEGbJZTRn3qbEMW5RTLM= hash2 - k6QFLP2SdU3FcxDbhkFVVI9HeA0s8AaPU+Qo5FaYig0= + YZPOJ1vDKgJbZKYwBUs7jrbgO0pLZF3+fl4qwyNxh6U= Headers/MBRecognizer.h hash - hT6xNu4n9cnCT2WVyNJXIRM/Xzg= + b/ZrocozvdVfv0Gba1TNb0kbmek= hash2 - y4ROsoGNX7YP6N+kGqoIoukfVEEMBBumtSCz4he0NRc= + Pu+RamT1NGa/6at3e3QCSr2izta5aSxdw62BSMNXC2k= Headers/MBRecognizerCollection.h hash - TIlSH/lOK85O5YiQz4DYRyxnPDw= + 6ILx2hstxB7QHXsurNAmcyIGZ4o= hash2 - cMLx7/Feq8lzMRXg5hPHknuXFVUxNGc05UEjDGEVv0A= + oyhgSxjeIVg1kB3xaach5Az2lEz+X1LorkaEz3Hd8QM= Headers/MBRecognizerResult.h hash - jEKJ0h3bM9F0HTTWR7IQ+AMUCIk= + FXhnC4R0FBSkmks7nIT5A/mkjlE= hash2 - RiBG5M513MfrGDOJ0sCcf2Nj9HZSauqbku8K70JE5NM= + y6VdRHOcIrRtObxJbm2OJyRBWv/cbWX8FFgWmRKDK5k= Headers/MBRecognizerRunner.h hash - tRQ70mIe85mn9psOlKWFkJDD7mw= + 66ls/DMLs+32immpxueR9AkKHuk= hash2 - 4V7qoqLJT8jD97o9hTwsmWfn7AZP3qXU/Cm4rTBSLOs= + OewlbcoaHym7esQa2QmKCgtjW/E4ubP65FCknjP/oJo= Headers/MBRecognizerRunnerMetadataDelegates.h hash - zEKJSnvSW6s2cxo3xz6K/lJmqZk= + VaNA5sC9fwdzdu7hOZvRVXJZoeo= hash2 - O4abSN7UWJdfv66n2ZxzORk0KPMuRX1Ovdah/mVOLEY= + VtmrVTd26+dlP236o+HR4A4Lpl0jF0bjgMFRnKvQAYw= Headers/MBRecognizerRunnerViewController.h hash - /Ct/h2wowTH0hlJn1x3HckC8ddg= + 0wMD+YY1DaqbdYaAkw2vu0g/cAQ= hash2 - qFc2aepNILT3pr9X7RhpCqqDEGbycnWRkPe5Ow7tA1E= + DP+uWLQldXHEE8Id9cKjSm7vh7bCemPp2merj8vtkDY= Headers/MBRecognizerRunnerViewControllerDelegate.h hash - kp7UHE4tBGp6CN6h5ssici3xPHQ= + BhLVTlhMG8DQHhpzsjQHhILnVeE= hash2 - 5tmnE6RYEX+II/c7Yy9qNojPqhINGnKxg1yoxj/I0N4= + k8540TAfUNlIma3cOAsxU6c8sOOCwjo4EK9KbCBvbNQ= Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h hash - KbeVvnxgJ4KL5YRRt6eAntjnGKw= + QTWcI7/D51+/QVIhP/+p5IGPKzs= hash2 - sfKOXj3yMtwkqxOEQSapiN/FNYNm9pw3clQWHn9oh0s= + 12iS11lM+wCjO7HWHAnrpTVtfWsVO0KAigR6svbqYHg= Headers/MBRegexParser.h hash - bNeNc46pIdC3ihfGkNfxHvzrS6Y= + MP/N3xQ6TKxSR2csamlqYF4VIrM= hash2 - 1vt/S1w7V0Hy4vX/7vjOf60ageD3sWPcqGQAImjZgu4= + CfKPzHvZbzfwRZxe3DDJTDtnktakAGe+Ric9B0GFw4g= Headers/MBRegexParserResult.h hash - YyCuVlVHZLOKcrxjD4ZFYwqeJnM= + IZzqf1YBuzqh/BmbLBg1h03hlL4= hash2 - FJngbJeZKvyXQGNWMxQrirvFPfxdSCzmrGDGkY38NVM= + UT0Q6Js3WVEbuZ67G0425OxAXIcJa/siRoWQo3qs0cE= Headers/MBResultSubview.h hash - jVIKXBcAOClu6Icw3hnusiqCxg8= + Wxpu6oTG78Nchj1gwzKbVmuncxY= hash2 - ZDQ9j9R9Jblb9fJDfjVBWevHBWkFwb5dXAzHSvBcEhI= + Do8Lk/80aY7LF1dO+68n+9ewSwqDQFcx7PC7PJOGZ/w= Headers/MBScanElement.h hash - vGf2vNqcAZM2LV72Q30/1F16Jjs= + 6crMEHsfRdAgO8EEIA3votAc030= hash2 - kur7JYhk8zAkda3/hm7s7v0sVbpe3e0XKs+SD710dXE= + l5htaS2/I6Xd9tW+Xwd8pmtxVVHbVaC6q/e6TGikZak= Headers/MBScanningRecognizerRunnerDelegate.h hash - WMbeMTAUYtnWcOC6VRywzq1yVE0= + eyGnu6s7zR8mOT0oJY7up8im7DA= hash2 - JpmN+Bx/7XETXC37bfTpBtO3jN23MCIWJZc2sxkD12c= + 1j3dsALonjzgzmnf1dUIQhSE+Vx5xqsY3l3zMXzHOjo= Headers/MBScanningRecognizerRunnerViewControllerDelegate.h hash - zhKckxTEeC55E86ASWrhuXN8FM0= + YA95F4HUsGH5gIElWApN5ngvWxo= hash2 - 1ijRGOY1U2v/uqDDTR37SmPGA2zduLifBXihjvyYj4k= + ee2tv51wKNZQuSu/x54yKSzv3hefs8MRt4BgGlRdQCs= Headers/MBSimNumberRecognizer.h hash - bsCMkOD9donh1qP+VewnUYUmJ+I= + S0TU+ia4P8UyZvQOoa9JXrFwGHI= hash2 - qC0dEaNLAbRdELr4EbvpE64Vjze02jTSEbHyzu7JxY8= + NxLa132UfVwv70DAql8Q7/G1vmXTaKPQj9AxBeN9jRM= Headers/MBSimNumberRecognizerResult.h hash - 4thk8k4kQbn+qT+GBODtfWL5Gfc= + 5T6m9Mbr+6DXo9iMWCd1VXtyEMw= + + hash2 + + O0BKyyctdIwFlL2Rr1sG7K0WZQ7SsNYx4Mxsf9IYhPg= + + + Headers/MBStringProcessingRecognizerRunnerDelegate.h + + hash + + c2v+SqYtbVxHFjshOAc4iUl3NX8= hash2 - A8s8aSXzZ+QjjtkYW+fDqfcSE3OJxTl3/FglJzW+eSU= + j4K6oPOS5mqxuC54JHsqSarA3uS1lVCpRAjDiMz6nyQ= Headers/MBSubview.h hash - Pa2YxepPtbRNeiKB+g9DdwVqxAI= + Ow7aEX7k3rkSbdYeClXl3NMGo9M= hash2 - oWyYlYJ/wsdGDtaS0AXhTHbuYHZCrTYWUkG/opMBuHs= + von7+kHNiZRwSBf8uDcQEbKdm+gBHpe7cJMBm0+46xM= Headers/MBSuccessFrameGrabberRecognizer.h hash - DWHTnjXNYH3bj7orMdj85BGa3o4= + LQpdx6ZPyDUvIMDvdmfiRgo5HF8= hash2 - HpEjrpEggX2jgEwQDv0YpIKImBwGPWbZR9ZOwq1CtPE= + 9ypXObIMHf3NexXiK1lzhHs5CIrhChXwCdPtyrEeeY0= Headers/MBSuccessFrameGrabberRecognizerResult.h hash - P5y8tnZESOLMjNFROHmT3MWMHt0= + JOLsnDNyVUSzStAZVJjN0vIVKeY= hash2 - 4U3pKXj6vHSshgHOGt7auXaEo2JfP+l92hbiqEfiLKQ= + 8GiJPNGn87PhPLWgOaBdbZvehpfGK+MuSeEJozUGAAw= Headers/MBTapToFocusSubview.h hash - eFDmWXFbOxJeolPx5dm9b0sjnkc= + ig8kZV0h4OAurOVt4mH+ASUi2mk= hash2 - uJTn3G58Re0PwIJvENUnL8ScQTs08/KtmEp4lAwC8cQ= + /VxrT8y1dnz6G0AsHp546qXICsHrcI/c3R5kRgVC1sE= Headers/MBTemplatingClass.h hash - lCoubdWyGNnWfuTAbXT8kFU/UsI= + JPZskSz91iH0hHXPJG1Nv0ToZdc= hash2 - cZwF89yqAczNekxIfBbq/Fr60HEjq5jn0TBymJHEnRs= + igUQrDTjUAqN/+/5+aVfFGlaelxPo0B3mHKbpFdCrm4= Headers/MBTemplatingRecognizer.h hash - dPVb21kseZgaAk8pqw9rG/LipG8= + CZ36DBPBHyYys5mDGljWVdfaHxc= hash2 - MbnYfkZ/NUmhvSyhlbtRnpltBjQ96srXNoC6kLMhEBc= + K3iml8U/HQRBqy3VmRSFJupvjCR/zdzdqgoTbBwkWGg= Headers/MBTemplatingRecognizerResult.h hash - shvBfCRDtBONMxB0XqkKdufZd+o= + OPu5MLwbS/fpex5uiwMxvOBCPVA= hash2 - Wv+K+rRdLYUEVv3ihenS98xJIZ6kCzq3+2+Dhf7eQE0= + 5T3nk+zRssIi06eTyCjJl2aU2/zIsTV4V8VnYXWfpPI= Headers/MBTopUpParser.h hash - ncdHOqNjU459DfaNIq4KdQS11qc= + MmQQ8n1WYyc/beBy65z+Xe9fTaA= hash2 - BupjMjEGSI4e0aYiejxHr62P9IsC4ntEFCE5eixvPdg= + FqNogy6XUjfHDqU7beikVJWOln/8YooHFFIjo9+ABu8= Headers/MBTopUpParserResult.h hash - OJQA7oodZEuyeBpCZucdTxNwi/I= - - hash2 - - oRVHDClScl+DltTgJ6xYBcUYf4h/oF8Hx+3b64dYwFk= - - - Headers/MBViewControllerFactory.h - - hash - - peoKcbrsRZrBAbBqihSbsoGzQLE= + UKjRUOoenR5yCTep5OvB/jHUqzY= hash2 - YIFbK8TXvNl6XUGEF9Mnvy0PnyPgq88CW3X22f5zYAM= + OcKi1q7AJQsx9n6a8wNHv2zA/QkKsOx+gwW7iKk/9tE= - Headers/MBVinParser.h + Headers/MBUIComponents.h hash - evEehLH9w9eGeyTXe5Qi40lm+kQ= + LDaRxchfLkkMqcwczmyXEjgWjKg= hash2 - jXe1KtWKEpU2MiKe8yvbdnqafjBLz4yHiG4l6s84fWM= + /bXHYxptcpNoRabBb5ttEmN7n1jsVHgXE35PJNKtjGQ= - Headers/MBVinParserResult.h + Headers/MBViewControllerFactory.h hash - o6ASkusZKmC1BZikIubtAH8xx60= + AN27TCnGNIsbi0wCtjj3SJjkxow= hash2 - iWj8W19kfKhrGEtx90bBqizS3AZwgfbIu+wQN+JSc3A= + L4DIxo1htKfBQQVUnUQxZnEfeHPKfcAl4QkQbp3ZWeI= - Headers/MBVinRecognizer.h + Headers/MBVinParser.h hash - kr9ut/9yE5B9XKgTosUWsD4LwB8= + wnrH5dY4R+o/IPuq9WJj1A6ex7U= hash2 - BHuscL/9YYPzksWrZMepQUiB0bKG7IuhncE0feyNX40= + QLHNWiuFsQn/lxG3O5+m1bFcWz0BaepVJlFCPptfmqA= - Headers/MBVinRecognizerResult.h + Headers/MBVinParserResult.h hash - CcYNhoSC9nSQfK7VfVACywtgRkc= + jXbmad0u6Fa0WTcJCx307EM/HK0= hash2 - rKu9pkHxJdUmkGRR9Po/vIM4ve55ulX0TArCTJUwNzk= + 1K7NxOKbbSoyCFG9TOy7wu5BPPD9sbgRueA2MrHx5e8= - Headers/MicroBlink.h + Headers/MBVinRecognizer.h hash - 2aAqlxZa9QbuU2ylk+Xe4m4afRo= + puun5+UOPPHZEtXb3BqBK9ubkfs= hash2 - /kfOkIuR7iWvHpGQb3ib+VKT7iVWYfmhz2jtJfIKcGo= + X59uT+3yPGUS/9aiUCwgvU+BS1EjYMqS+kKp1gG5BUg= - Headers/PPBlinkBarcodeRecognizers.h + Headers/MBVinRecognizerResult.h hash - OoFeRFbxZxITKJH+dD2GEwJCibk= + LYIkphjyYxTDBAwNqI+BOxAci/4= hash2 - 9qXEMme2RAr2L5tGU+EwjFwxBOyY5NwVYnlKApBx5f8= + aspjOwl55lToJg43jjbI1aUUxvUWM3JMZsldixmanIU= - Headers/PPBlinkInputRecognizers.h + Headers/MicroBlink.h hash - u+pbWh9cJsR94/Kk9dfWtizKODA= + +9E/QWCjqwAMSAsPGzXnWFJs6eg= hash2 - 2mDZ5Mqv8E9OhifbdtZloBR1xKZgTZHOPPObKlEwZF0= + QvIVX7jly1UnBNu+nRh/SdMJ5OYJyPZJV+qRbd9+mKw= - Headers/PPMicroBlinkDefines.h + Headers/PPMicroblinkDefines.h hash - ALTnkAS7vcgCyF5CaQZkMwQJKPY= + TOOJnk5dJ8DCF0SbYDw3abd72w8= hash2 - oqAaL2VUb33UvPMKSY+Og3HvInEk9ia1WTh2/C1x+uc= + 9puAh03a6vlOVCNHv5W/gNDzu3AAtW/9tc/lFWOIOA0= Modules/module.modulemap hash - r1IMnO5oqrKTdbYvy5j7J0DRUQ4= + V9XnUWJ3v7ZTIggf5MD31++YiQ8= hash2 - 2I0X72jAndG+LYGriRMKJ3sr3K9zm6SVTTq/mDJ8m6o= + 2hCCzTpMwzdAmcBO7BIC8QY8YXR0Uc832E+CFRDFfEA= rules - ^ + ^.* ^.*\.lproj/ @@ -2040,11 +2130,6 @@ weight 11 - ^ - - weight - 20 - ^(.*/)?\.DS_Store$ omit @@ -2052,13 +2137,6 @@ weight 2000 - ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ - - nested - - weight - 10 - ^.* ^.*\.lproj/ @@ -2094,13 +2172,6 @@ weight 20 - ^[^/]+$ - - nested - - weight - 10 - ^embedded\.provisionprofile$ weight diff --git a/PPBlinkOCR.podspec b/PPBlinkOCR.podspec index 97179f9..6b7db27 100644 --- a/PPBlinkOCR.podspec +++ b/PPBlinkOCR.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "PPBlinkOCR" - s.version = "4.0.0" + s.version = "4.1.0" s.summary = "A state-of-the-art OCR module for mobile devices" s.homepage = "http://microblink.com" @@ -31,8 +31,7 @@ Pod::Spec.new do |s| } s.source = { - :git => 'https://github.com/BlinkOCR/blinkocr-ios.git', - :tag => 'v4.0.0' + :http => 'https://github.com/blinkinput/blinkinput-ios/releases/download/v4.1.0/blinkinput-ios_v4.1.0.tar.gz' } s.platform = :ios @@ -40,9 +39,9 @@ Pod::Spec.new do |s| # ――― MULTI-PLATFORM VALUES ――――――――――――――――――――――――――――――――――――――――――――――――― # s.ios.deployment_target = '8.0.0' - s.ios.resources = "MicroBlink.bundle" + s.ios.resources = "Microblink.bundle" s.ios.requires_arc = false - s.ios.vendored_frameworks = 'MicroBlink.framework' + s.ios.vendored_frameworks = 'Microblink.framework' s.ios.frameworks = 'Accelerate', 'AVFoundation', 'AudioToolbox', 'AssetsLibrary', 'CoreMedia' s.ios.libraries = 'c++', 'iconv', 'z' diff --git a/README.md b/README.md index 3684583..8b69fc7 100644 --- a/README.md +++ b/README.md @@ -20,66 +20,68 @@ BlinkInput SDK is a state-of-the-art OCR module for mobile devices. It's OCR tec BlinkInput is a part of family of SDKs developed by [MicroBlink](http://www.microblink.com) for optical text recognition, barcode scanning, ID document scanning and many others. +BlinkInput powers [PhotoMath app](https://photomath.net/en/) where it's used to [recognize mathematic expressions](https://vimeo.com/109405701) in real time. + # Table of contents -* [Requirements](#user-content-requirements) -* [Quick Start](#user-content-quickStart) -* [Advanced BlinkInput integration instructions](#user-content-advancedIntegration) - * [UI customizations of built-in `MBOverlayViewControllers` and `MBOverlaySubviews`](#user-content-uiCustomizations) - * [Built-in overlay view controllers and overlay subviews](#user-content-builtInUIComponents) - * [Using `MBBarcodeOverlayViewController`](#user-content-mbBarcodeOverlayViewcontroller) - * [Custom overlay view controller](#user-content-recognizerRunnerViewController) - * [Direct processing API](#user-content-directAPI) -* [`MBRecognizer` and available recognizers](#user-content-availableRecognizers) - * [The `MBRecognizer` concept](#user-content-recognizerConcept) - * [`MBRecognizerCollection` concept](#user-content-recognizerBCollection) - * [List of available recognizers](#user-content-recognizerList) - * [Frame Grabber Recognizer](#user-content-frameGrabberRecognizer) - * [Success Frame Grabber Recognizer](#user-content-successFrameGrabberRecognizer) - * [PDF417 recognizer](#user-content-pdf417Recognizer) - * [Barcode recognizer](#user-content-barcodeRecognizer) - * [BlinkInput recognizer](#user-content-blinkInputRecognizer) - * [Detector recognizer](#user-content-detectorRecognizer) -* [`Field by field` scanning feature](#user-content-fieldScan) - * [`Field by field` feature](#user-content-fieldByFieldFeature) -* [`MBProcessor` and `MBParser`](#user-content-processorsAndParsers) - * [The `MBProcessor` concept](#user-content-processorConcept) - * [List of available processors](#user-content-processorList) - * [Image Return Processor](#user-content-imageReturnProcessor) - * [Parser Group Processor](#user-content-parserGroupProcessor) - * [The `MBParser` concept](#user-content-parserConcept) - * [List of available parsers](#user-content-parserList) - * [Amount Parser](#user-content-amountParser) - * [Date Parser](#user-content-dateParser) - * [Email Parser](#user-content-emailParser) - * [IBAN Parser](#user-content-ibanParser) - * [License Plates Parser](#user-content-licensePlatesParser) - * [Raw Parser](#user-content-rawParser) - * [Regex Parser](#user-content-regexParser) - * [TopUp Parser](#user-content-topUpParser) - * [VIN (*Vehicle Identification Number*) Parser](#user-content-vinParser) -* [Scanning generic documents with Templating API](#user-content-detectorTemplating) - * [The `MBProcessorGroup` component](#user-content-processorGroup) - * [List of available dewarp policies](#user-content-dewarpPolicyList) - * [The `MBTemplatingClass` component](#user-content-templatingClass) - * [Implementing the `MBTemplatingClassifier`](#user-content-implementingTemplatingClassifier) -* [The `MBDetector` concept](#user-content-detectorConcept) - * [List of available detectors](#user-content-detectorList) - * [Document Detector](#user-content-documentDetector) - * [MRTD Detector](#user-content-mrtdDetector) -* [Troubleshooting](#user-content-troubleshoot) - * [Integration problems](#user-content-integrationTroubleshoot) - * [SDK problems](#user-content-sdkTroubleshoot) - * [Frequently asked questions and known problems](#user-content-faq) -* [Additional info](#user-content-info) +- [Requirements](#requirements) +- [Quick Start](#quick-start) +- [Advanced BlinkInput integration instructions](#advanced-integration) + - [Built-in overlay view controllers and overlay subviews](#ui-customizations) + - [Using `MBBarcodeOverlayViewController`](#using-pdf417-overlay-viewcontroller) + - [Using `MBFieldByFieldOverlayViewController`](#using-fieldbyfield-overlay-viewcontroller) + - [Custom overlay view controller](#using-custom-overlay-viewcontroller) + - [Direct processing API](#direct-api-processing) + - [Using Direct API for `NSString` recognition (parsing)](#direct-api-string-processing) +- [`MBRecognizer` and available recognizers](#recognizer) +- [List of available recognizers](#available-recognizers) + - [Frame Grabber Recognizer](#frame-grabber-recognizer) + - [Success Frame Grabber Recognizer](#success-frame-grabber-recognizer) + - [PDF417 recognizer](#pdf417-recognizer) + - [Barcode recognizer](#barcode-recognizer) + - [BlinkInput recognizer](#blinkinput-recognizer) + - [Detector recognizer](#detector-recognizer) +- [`MBProcessor` and `MBParser`](#processors-and-parsers) + - [The `MBProcessor` concept](#processor-concept) + - [Image Return Processor](#image-processors) + - [Parser Group Processor](#parser-group-processor) + - [The `MBParser` concept](#parser-concept) + - [Amount Parser](#amount-parser) + - [Date Parser](#date-parser) + - [Email Parser](#email-parser) + - [IBAN Parser](#iban-parser) + - [License Plates Parser](#license-plate-parser) + - [Raw Parser](#raw-parser) + - [Regex Parser](#regex-parser) + - [TopUp Parser](#topup-parser) + - [VIN (*Vehicle Identification Number*) Parser](#vin-parser) +- [Scanning generic documents with Templating API](#templating-api) + - [Defining how document should be detected](#defining-document-detection) + - [Defining how fields of interest should be extracted](#defining-field-extraction) + - [The `MBProcessorGroup` component](#processor-group) + - [List of available dewarp policies](#dewarp-policy-list) + - [The `MBTemplatingClass` component](#templating-class) + - [Implementing the `MBTemplatingClassifier`](#implementing-templating-classifier) +- [The `MBDetector` concept](#detector-concept) + - [List of available detectors](#detector-list) + - [Document Detector](#document-detector) + - [MRTD Detector](#mrtd-detector) +- [Troubleshooting](#troubleshooting) + - [Integration problems](#troubleshooting-integration-problems) + - [SDK problems](#troubleshooting-sdk-problems) + - [Licencing problems](#troubleshooting-licensing-problems) + - [Other problems](#troubleshooting-other-problems) + - [Frequently asked questions and known problems](#troubleshooting-faq) +- [Additional info](#info) + # Requirements SDK package contains Microblink framework and one or more sample apps which demonstrate framework integration. The framework can be deployed in iOS 8.0 or later, iPhone 4S or newer and iPad 2 or newer. SDK performs significantly better when the images obtained from the camera are focused. Because of that, the SDK can have lower performance on iPad 2 and iPod Touch 4th gen devices, which [don't have camera with autofocus](http://www.adweek.com/socialtimes/ipad-2-rear-camera-has-tap-for-auto-exposure-not-auto-focus/12536). - -# Quick Start + +# Quick Start ## Getting started with BlinkInput SDK @@ -100,14 +102,21 @@ git lfs install ``` - **Be sure to restart your console after installing Git LFS** - +- **Note:** if you already did try adding SDK using cocoapods and it's not working, first install the git-lfs and then clear you cocoapods cache. This should be sufficient to force cocoapods to clone BlinkInput SDK, if it still doesn't work, try deinitializing your pods and installing them again. - Project dependencies to be managed by CocoaPods are specified in a file called `Podfile`. Create this file in the same directory as your Xcode project (`.xcodeproj`) file. +- If you don't have podfile initialized run the following in your project directory. +``` +pod init +``` + - Copy and paste the following lines into the TextEdit window: ```ruby platform :ios, '9.0' -pod 'PPBlinkOCR', '~> 4.0.0' +target 'Your-App-Name' do + pod 'PPBlinkOCR', '~> 4.1.0' +end ``` - Install the dependencies in your project: @@ -124,7 +133,8 @@ open .xcworkspace #### Integration without CocoaPods --[Download](https://github.com/blinkinput/blinkinput-ios/releases) latest release (Download .zip or .tar.gz file starting with BlinkID. DO NOT download Source Code as GitHub does not fully support Git LFS) + +-[Download](https://github.com/BlinkInput/blinkinput-ios/releases) latest release (Download .zip or .tar.gz file starting with BlinkID. DO NOT download Source Code as GitHub does not fully support Git LFS) OR @@ -141,18 +151,18 @@ git lfs install - To clone, run the following shell command: ```shell -git clone git@github.com:blinkinput/blinkinput-ios.git +git clone git@github.com:BlinkInput/blinkinput-ios.git ``` -- Copy MicroBlink.framework and MicroBlink.bundle to your project folder. +- Copy Microblink.framework and Microblink.bundle to your project folder. -- In your Xcode project, open the Project navigator. Drag the MicroBlink.framework and MicroBlink.bundle files to your project, ideally in the Frameworks group, together with other frameworks you're using. When asked, choose "Create groups", instead of the "Create folder references" option. +- In your Xcode project, open the Project navigator. Drag the Microblink.framework and Microblink.bundle files to your project, ideally in the Frameworks group, together with other frameworks you're using. When asked, choose "Create groups", instead of the "Create folder references" option. -![Adding MicroBlink.embeddedframework to your project](https://raw.githubusercontent.com/wiki/blinkocr/blinkocr-ios/Images/01%20-%20Add%20Framework.jpg) +![Adding Microblink.embedded framework to your project](https://raw.githubusercontent.com/wiki/blinkocr/blinkocr-ios/Images/01%20-%20Add%20Framework.jpg) - Since Microblink.framework is a dynamic framework, you also need to add it to embedded binaries section in General settings of your target. -![Adding MicroBlink.framework to embedded binaries](https://raw.githubusercontent.com/wiki/blinkocr/blinkocr-ios/Images/03%20-%20Embed%20Binaries.png) +![Adding Microblink.framework to embedded binaries](https://raw.githubusercontent.com/wiki/blinkocr/blinkocr-ios/Images/03%20-%20Embed%20Binaries.png) - Include the additional frameworks and libraries into your project in the "Linked frameworks and libraries" section of your target settings. @@ -185,10 +195,12 @@ Objective-C To initiate the scanning process, first decide where in your app you want to add scanning functionality. Usually, users of the scanning library have a button which, when tapped, starts the scanning process. Initialization code is then placed in touch handler for that button. Here we're listing the initialization code as it looks in a touch handler method. -Also, for initialization purposes, the ViewController which initiates the scan have private prperties for [`MBRawParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRawParser.html), [`MBParserGroupProcessor`](http://blinkinput.github.io/blinkinput-ios/Classes/MBParserGroupProcessor.html) and [`MBBlinkInputRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBlinkInputRecognizer.html), so we know how to obtain result. +Also, for initialization purposes, the ViewController which initiates the scan have private properties for [`MBRawParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRawParser.html), [`MBParserGroupProcessor`](http://blinkinput.github.io/blinkinput-ios//Classes/MBParserGroupProcessor.html) and [`MBBlinkInputRecognizer`](http://blinkinput.github.io/blinkinput-ios//Classes/MBBlinkInputRecognizer.html), so we know how to obtain result. + +Swift ```swift -class ViewController: UIViewController, MBBarcodeOverlayViewControllerDelegate { +class ViewController: UIViewController, MBDocumentOverlayViewControllerDelegate { var rawParser: MBRawParser? var parserGroupProcessor: MBParserGroupProcessor? @@ -200,19 +212,19 @@ class ViewController: UIViewController, MBBarcodeOverlayViewControllerDelegate @IBAction func didTapScan(_ sender: AnyObject) { - let settings = MBBarcodeOverlaySettings() + let settings = MBDocumentOverlaySettings() rawParser = MBRawParser() parserGroupProcessor = MBParserGroupProcessor(parsers: [rawParser!]) blinkInputRecognizer = MBBlinkInputRecognizer(processors: [parserGroupProcessor!]) let recognizerList = [self.blinkInputRecognizer!] - let recognizerCollection : MBRecognizerCollection = MBRecognizerCollection(recognizers: recognizerList) + let recognizerCollection = MBRecognizerCollection(recognizers: recognizerList) /** Create your overlay view controller */ - let barcodeOverlayViewController : MBBarcodeOverlayViewController = MBBarcodeOverlayViewController(settings: settings, recognizerCollection: recognizerCollection, delegate: self) + let documentOverlayViewController = MBDocumentOverlayViewController(settings: settings, recognizerCollection: recognizerCollection, delegate: self) /** Create recognizer view controller with wanted overlay view controller */ - let recognizerRunneViewController : UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: barcodeOverlayViewController) + let recognizerRunnerViewController: UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: documentOverlayViewController) /** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */ present(recognizerRunnerViewController!, animated: true, completion: nil) @@ -220,9 +232,10 @@ class ViewController: UIViewController, MBBarcodeOverlayViewControllerDelegate } ``` +Objective-C ```objective-c -@interface ViewController () +@interface ViewController () @property (nonatomic, strong) MBRawParser *rawParser; @property (nonatomic, strong) MBParserGroupProcessor *parserGroupProcessor; @@ -239,7 +252,7 @@ class ViewController: UIViewController, MBBarcodeOverlayViewControllerDelegate - (IBAction)didTapScan:(id)sender { - MBBarcodeOverlaySettings* settings = [[MBBarcodeOverlaySettings alloc] init]; + MBDocumentOverlaySettings* settings = [[MBDocumentOverlaySettings alloc] init]; self.rawParser = [[MBRawParser alloc] init]; self.parserGroupProcessor = [[MBParserGroupProcessor alloc] initWithParsers:@[self.rawParser]]; @@ -248,7 +261,7 @@ class ViewController: UIViewController, MBBarcodeOverlayViewControllerDelegate /** Create recognizer collection */ MBRecognizerCollection *recognizerCollection = [[MBRecognizerCollection alloc] initWithRecognizers:@[self.blinkInputRecognizer]]; - MBBarcodeOverlayViewController *overlayVC = [[MBBarcodeOverlayViewController alloc] initWithSettings:settings recognizerCollection:recognizerCollection delegate:self]; + MBDocumentOverlayViewController *overlayVC = [[MBDocumentOverlayViewController alloc] initWithSettings:settings recognizerCollection:recognizerCollection delegate:self]; UIViewController* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:overlayVC]; /** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */ @@ -259,19 +272,58 @@ class ViewController: UIViewController, MBBarcodeOverlayViewControllerDelegate @end ``` -### 4. Registering for scanning events +### 4. License key + +A valid license key is required to initalize scanning. You can generate a free demo license key, after you register, at [Microblink developer dashboard](https://microblink.com/login). + +You can include the license key in your app by passing a string or a file with license key. +**Note** that you need to set the license key before intializing scanning. Ideally in `AppDelegate` or `viewDidLoad` before initializing any recognizers. + +#### License key as string +You can pass the license key as a string, the following way: + +Swift + +```swift +MBMicroblinkSDK.sharedInstance().setLicenseKey("LICENSE-KEY") +``` + +Objective-C + +```objective-c +[[MBMicroblinkSDK sharedInstance] setLicenseKey:@"LICENSE-KEY"]; +``` + +#### License key as file +Or you can include the license key, with the code below. Please make sure that the file that contains the license key is included in your project and is copied during **Copy Bundle Resources** build phase. + +Swift + +```swift +MBMicroblinkSDK.sharedInstance().setLicenseResource("license-key-file", withExtension: "txt", inSubdirectory: "directory-to-license-key", for: Bundle.main) +``` + +Objective-C + +```objective-c +[[MBMicroblinkSDK sharedInstance] setLicenseResource:@"license-key-file" withExtension:@"txt" inSubdirectory:@"" forBundle:[NSBundle mainBundle]]; +``` + +### 5. Registering for scanning events -In the previous step, you instantiated [`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html) object with a delegate object. This object gets notified on certain events in scanning lifecycle. In this example we set it to `self`. The protocol which the delegate has to implement is [`MBBarcodeOverlayViewControllerDelegate`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBBarcodeOverlayViewControllerDelegate.html) protocol. It is necessary to conform to that protocol. We will discuss more about protocols in [Advanced integration section](#advancedIntegration). You can use the following default implementation of the protocol to get you started. +In the previous step, you instantiated [`MBDocumentOverlayViewController`](http://blinkinput.github.io/blinkinput-ios//Classes/MBDocumentOverlayViewController.html) object with a delegate object. This object gets notified on certain events in scanning lifecycle. In this example we set it to `self`. The protocol which the delegate has to implement is [`MBDocumentOverlayViewControllerDelegate`](http://blinkinput.github.io/blinkinput-ios//Protocols/MBDocumentOverlayViewControllerDelegate.html) protocol. It is necessary to conform to that protocol. We will discuss more about protocols in [Advanced integration section](#advanced-integration). You can use the following default implementation of the protocol to get you started. + +Swift ```swift -func barcodeOverlayViewControllerDidFinishScanning(_ barcodeOverlayViewController: MBBarcodeOverlayViewController, state: MBRecognizerResultState) { +func documentOverlayViewControllerDidFinishScanning(_ documentOverlayViewController: MBDocumentOverlayViewController, state: MBRecognizerResultState) { // this is done on background thread // check for valid state - if state == MBRecognizerResultState.valid { + if state == .valid { // first, pause scanning until we process all the results - barcodeOverlayViewController.recognizerRunnerViewController?.pauseScanning() + documentOverlayViewController.recognizerRunnerViewController?.pauseScanning() DispatchQueue.main.async(execute: {() -> Void in // All UI interaction needs to be done on main thread @@ -279,20 +331,22 @@ func barcodeOverlayViewControllerDidFinishScanning(_ barcodeOverlayViewControlle } } -func barcodeOverlayViewControllerDidTapClose(_ barcodeOverlayViewController: MBBarcodeOverlayViewController) { +func documentOverlayViewControllerDidTapClose(_ documentOverlayViewController: MBDocumentOverlayViewController) { // Your action on cancel } ``` +Objective-C + ```objective-c -- (void)barcodeOverlayViewControllerDidFinishScanning:(MBBarcodeOverlayViewController *)barcodeOverlayViewController state:(MBRecognizerResultState)state { +- (void)documentOverlayViewControllerDidFinishScanning:(MBDocumentOverlayViewController *)documentOverlayViewController state:(MBRecognizerResultState)state { // this is done on background thread // check for valid state if (state == MBRecognizerResultStateValid) { // first, pause scanning until we process all the results - [barcodeOverlayViewController.recognizerRunnerViewController pauseScanning]; + [documentOverlayViewController.recognizerRunnerViewController pauseScanning]; dispatch_async(dispatch_get_main_queue(), ^{ // All UI interaction needs to be done on main thread @@ -300,32 +354,26 @@ func barcodeOverlayViewControllerDidTapClose(_ barcodeOverlayViewController: MBB } } -- (void)barcodeOverlayViewControllerDidTapClose:(MBBarcodeOverlayViewController *)barcodeOverlayViewController { +- (void)documentOverlayViewControllerDidTapClose:(MBDocumentOverlayViewController *)documentOverlayViewController { // Your action on cancel } ``` -# Advanced BlinkInput integration instructions +# Advanced BlinkInput integration instructions This section covers more advanced details of BlinkInput integration. -1. [First part](#uiCustomizations) will cover the possible customizations when using UI provided by the SDK. -2. [Second part](#recognizerRunnerViewController) will describe how to embed [`MBRecognizerRunnerViewController's delegates`](http://blinkinput.github.io/blinkinput-ios/Protocols.html) into your `UIViewController` with the goal of creating a custom UI for scanning, while still using camera management capabilites of the SDK. -3. [Third part](#directAPI) will describe how to use the [`MBRecognizerRunner`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerRunner.html) (Direct API) for recognition directly from `UIImage` without the need of camera or to recognize camera frames that are obtained by custom camera management. -4. [Fourth part](#availableRecognizers) will describe recognizer concept and available recognizers. - -## UI customizations of built-in `MBOverlayViewControllers` and `MBOverlaySubviews` - -### Built-in overlay view controllers and overlay subviews +1. [First part](#ui-customizations) will cover the possible customizations when using UI provided by the SDK. +2. [Second part](#custom-overyal-view-controller) will describe how to embed [`MBRecognizerRunnerViewController's delegates`](http://blinkinput.github.io/blinkinput-ios/Protocols.html) into your `UIViewController` with the goal of creating a custom UI for scanning, while still using camera management capabilites of the SDK. +3. [Third part](#direct-processing-api) will describe how to use the [`MBRecognizerRunner`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerRunner.html) (Direct API) for recognition directly from `UIImage` without the need of camera or to recognize camera frames that are obtained by custom camera management. +4. [Fourth part](#recognizer) will describe recognizer concept and available recognizers. -Within BlinkInput SDK there are several built-in overlay view controllers and scanning subview overlays that you can use to perform scanning. -#### `MBBarcodeOverlayViewController` +## Built-in overlay view controllers and overlay subviews -[`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html) is overlay view controller best suited for performing scanning of various barcodes. It has [`MBBarcodeOverlayViewControllerDelegate`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBBarcodeOverlayViewControllerDelegate.html) delegate which can be used out of the box to perform scanning using the default UI. +Within BlinkInput SDK there are several built-in overlay view controllers and scanning subview overlays that you can use to perform scanning. +### Using `MBBarcodeOverlayViewController` -## Using `MBBarcodeOverlayViewController` - -[`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html) is built-in overlay view controller which is best suiteed to use while scanning various barcodes. As you have seen in [Quick Start](#quickStart), [`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html) has [`MBBarcodeOverlaySettings`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlaySettings.html). Here is an example how to use and initialize [`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html): +[`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html) is overlay view controller best suited for performing scanning of various barcodes. It has [`MBBarcodeOverlayViewControllerDelegate`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBBarcodeOverlayViewControllerDelegate.html) delegate which can be used out-of-the-box to perform scanning using the default UI. Here is an example how to use and initialize [`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html): Swift ```swift @@ -349,9 +397,33 @@ UIViewController* recognizerRunnerViewControll ``` As you can see, when initializing [`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html), we are sending delegate property as `self`. To get results, we need to conform to [`MBBarcodeOverlayViewControllerDelegate`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBBarcodeOverlayViewControllerDelegate.html) protocol. +### Using `MBFieldByFieldOverlayViewController` + +[`MBFieldByFieldOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBFieldByFieldOverlayViewController.html) is overlay view controller best suited for performing scanning of various payment slips and barcodes with field of view. It has [`MBFieldByFieldOverlayViewControllerDelegate`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBFieldByFieldOverlayViewControllerDelegate.html) delegate which can be used out-of-the-box to perform scanning using the default UI. Here is an example how to use and initialize [`MBFieldByFieldOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBFieldByFieldOverlayViewController.html): + +Swift +```swift +/** Create your overlay view controller */ +let fieldByFieldOverlayViewController : MBFieldByFieldOverlayViewController = MBFieldByFieldOverlayViewController(settings: fieldByFieldOverlaySettings, recognizerCollection: recognizerCollection, delegate: self) + +/** Create recognizer view controller with wanted overlay view controller */ +let recognizerRunneViewController : UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: fieldByFieldOverlayViewController) +/** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */ +self.present(recognizerRunneViewController, animated: true, completion: nil) +``` -## Custom overlay view controller +Objective-C +```objective-c +MBFieldByFieldOverlayViewController *overlayVC = [[MBFieldByFieldOverlayViewController alloc] initWithSettings:settings recognizerCollection: recognizerCollection delegate:self]; +UIViewController* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:overlayVC]; + +/** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */ +[self presentViewController:recognizerRunnerViewController animated:YES completion:nil]; +``` + +As you can see, when initializing [`MBFieldByFieldOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBFieldByFieldOverlayViewController.html), we are sending delegate property as `self`. To get results, we need to conform to [`MBFieldByFieldOverlayViewControllerDelegate`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBFieldByFieldOverlayViewControllerDelegate.html) protocol. +### Custom overlay view controller Please check our pdf417-sample-Swift for custom implementation of overlay view controller. @@ -365,13 +437,13 @@ Typical actions which need to be allowed to the user are: - a way to cancel the scanning, typically with a "cancel" or "back" button - a way to power on and off the light (i.e. "torch") button -BlinkInput SDK always provides it's own default implementation of the Overlay View Controller for every specific use. Your implementation should closely mimic the default implementation as it's the result of thorough testing with end users. Also, it closely matches the underlying scanning technology. +BlinkID SDK always provides it's own default implementation of the Overlay View Controller for every specific use. Your implementation should closely mimic the default implementation as it's the result of thorough testing with end users. Also, it closely matches the underlying scanning technology. For example, the scanning technology usually gives results very fast after the user places the device's camera in the expected way above the scanned object. This means a progress bar for the scan is not particularly useful to the user. The majority of time the user spends on positioning the device's camera correctly. That's just an example which demonstrates careful decision making behind default camera overlay view. ### 1. Initialization -To use your custom overlay with MicroBlink's camera view, you must first subclass [`MBCustomOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBCustomOverlayViewController.html) and implement the overlay behaviour conforming wanted protocols. +To use your custom overlay with Microblink's camera view, you must first subclass [`MBCustomOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBCustomOverlayViewController.html) and implement the overlay behaviour conforming wanted protocols. ### 2. Protocols @@ -392,24 +464,42 @@ self.scanningRecognizerRunnerViewControllerDelegate = self; ``` ### 3. Overlay subviews -Developer needs to know which subivew is needed for custom view controller. If you want to use built-in implementation we recommend to use [`MBModernViewfinderOverlaySubview`](http://blinkinput.github.io/blinkinput-ios/Classes/MBModernViewfinderOverlaySubview.html). In can be initialized in `viewDidLoad` method: +The SDK contains various subviews you can use to notify users of the state of scanning. If you want to use built-in implementation we recommend to use [`MBModernViewfinderSubview`](http://blinkinput.github.io/blinkinput-ios/Classes/MBModernViewfinderSubview.html). In can be initialized in `viewDidLoad` method: Swift ```swift -viewfinderSubview = MBModernViewfinderOverlaySubview() +viewfinderSubview = MBModernViewfinderSubview() +viewfinderSubview.frame = view.frame viewfinderSubview.moveable = true view.addSubview(viewfinderSubview) ``` + Objective-C ```objective-c -self.viewfinderSubview = [[MBModernViewfinderOverlaySubview alloc] init]; +self.viewfinderSubview = [[MBModernViewfinderSubview alloc] init]; +self.viewfinderSubview.frame = self.view.frame; self.viewfinderSubview.delegate = self.overlaySubviewsDelegate; self.viewfinderSubview.moveable = YES; [self.view addSubview:self.viewfinderSubview]; ``` +To use this subview you'll need to implement `MBDetectionRecognizerRunnerViewControllerDelegate`(http://blinkinput.github.io/blinkinput-ios/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html) then in the `-recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad:` notify subview of detection changes. + +Swift +```swift +func recognizerRunnerViewController(_ recognizerRunnerViewController: Any!, didFinishDetectionWithDisplayableQuad displayableQuad: MBDisplayableQuadDetection) { + viewfinderSubview.detectionFinished(withDisplayableQuad: displayableQuad) +} +``` +Objective-C +```objective-c +- (void)recognizerRunnerViewController: (nonnull UIViewController *) recognizerRunnerViewController didFinishDetectionWithDisplayableQuad: (nonnull MBDisplayableQuadDetection *)displayableQuad { + [self.viewfinderSubview detectionFinishedWithDisplayableQuad:displayableQuad]; +} +``` + ### 4. Initialization -In [Quick Start](#quickStart) guide it is shown how to use [`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBRecognizerRunnerViewController.html). You can now swap [`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBRecognizerRunnerViewController.html) with `CustomOverlayViewController` +In [Quick Start](#quick-start) guide it is shown how to use a default overlay view controller. You can now swap default view controller with your implementation of `CustomOverlayViewController` Swift ```swift @@ -422,16 +512,16 @@ UIViewController* recognizerRunnerViewControll ``` -## Direct processing API +## Direct processing API -This guide will in short present you how to process UIImage objects with PDF417.mobi SDK, without starting the camera video capture. +This guide will in short present you how to process UIImage objects with BlinkInput SDK, without starting the camera video capture. With this feature you can solve various use cases like: - recognizing text on images in Camera roll - taking full resolution photo and sending it to processing - scanning barcodes on images in e-mail etc. -DirectAPI-sample demo app here will present UIImagePickerController for taking full resolution photos, and then process it with MicroBlink SDK to get scanning results using Direct processing API. +DirectAPI-sample demo app here will present UIImagePickerController for taking full resolution photos, and then process it with Microblink SDK to get scanning results using Direct processing API. Direct processing API is handled with [`MBRecognizerRunner`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerRunner.html). That is a class that handles processing of images. It also has protocols as [`MBRecognizerRunnerViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerRunnerViewController.html). Developer can choose which protocol to conform: @@ -514,14 +604,20 @@ Now you've seen how to implement the Direct processing API. In essence, this API consists of two steps: - Initialization of the scanner. -- Call of processImage: method for each UIImage or CMSampleBufferRef you have. +- Call of `- (void)processImage:(MBImage *)image;` method for each UIImage or CMSampleBufferRef you have. -# `MBRecognizer` and available recognizers +### Using Direct API for `NSString` recognition (parsing) -## The `MBRecognizer` concept +Some recognizers support recognition from `NSString`. They can be used through Direct API to parse given `NSString` and return data just like when they are used on an input image. When recognition is performed on `NSString`, there is no need for the OCR. Input `NSString` is used in the same way as the OCR output is used when image is being recognized. +Recognition from `String` can be performed in the same way as recognition from image. +The only difference is that user should call `- (void)processString:(NSString *)string;` on [`MBRecognizerRunner`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerRunner.html). -The [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) is the basic unit of processing within the SDK. Its main purpose is to process the image and extract meaningful information from it. As you will see [later](#recognizerList), the SDK has lots of different [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects that have various purposes. +# `MBRecognizer` and available recognizers + +## The `MBRecognizer` concept + +The [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) is the basic unit of processing within the SDK. Its main purpose is to process the image and extract meaningful information from it. As you will see [later](#available-recognizers), the SDK has lots of different [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects that have various purposes. Each [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) has a [`MBRecognizerResult`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerResult.html) object, which contains the data that was extracted from the image. The [`MBRecognizerResult`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerResult.html) object is a member of corresponding [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) object its lifetime is bound to the lifetime of its parent [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) object. If you need your `MBRecognizerRecognizer` object to outlive its parent [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) object, you must make a copy of it by calling its method `copy`. @@ -531,7 +627,7 @@ As soon as one [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Class As soon as `onScanningFinished` method ends, the `MBRecognizerRunnerViewController` will continue processing new camera frames with same [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects, unless `paused`. Continuation of processing or `reset` recognition will modify or reset all [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects's [`MBRecognizerResult`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerResult.html). When using built-in activities, as soon as `onScanningFinished` is invoked, built-in activity pauses the `MBRecognizerRunnerViewController` and starts finishing the activity, while saving the [`MBRecognizerCollection`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerCollection.html) with active [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html). -## `MBRecognizerCollection` concept +## `MBRecognizerCollection` concept The [`MBRecognizerCollection`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerCollection.html) is is wrapper around [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects that has array of [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects that can be used to give [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects to `MBRecognizerRunner` or `MBRecognizerRunnerViewController` for processing. @@ -541,17 +637,17 @@ The [`MBRecognizerCollection`](http://blinkinput.github.io/blinkinput-ios/Classe You cannot change the order of the [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects within the chain - no matter the order in which you give [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects to [`MBRecognizerCollection`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerCollection.html), they are internally ordered in a way that provides best possible performance and accuracy. Also, in order for SDK to be able to order [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects in recognition chain in a best way possible, it is not allowed to have multiple instances of [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects of the same type within the chain. Attempting to do so will crash your application. -## List of available recognizers +# List of available recognizers -This section will give a list of all [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects that are available within PDF417.mobi SDK, their purpose and recommendations how they should be used to get best performance and user experience. +This section will give a list of all [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) objects that are available within BlinkInput SDK, their purpose and recommendations how they should be used to get best performance and user experience. -### Frame Grabber Recognizer +## Frame Grabber Recognizer The [`MBFrameGrabberRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBFrameGrabberRecognizer.html) is the simplest recognizer in SDK, as it does not perform any processing on the given image, instead it just returns that image back to its `onFrameAvailable`. Its result never changes state from empty. This recognizer is best for easy capturing of camera frames with `MBRecognizerRunnerViewController`. Note that [`MBImage`](http://blinkinput.github.io/blinkinput-ios/Classes/MBImage.html) sent to `onFrameAvailable` are temporary and their internal buffers all valid only until the `onFrameAvailable` method is executing - as soon as method ends, all internal buffers of [`MBImage`](http://blinkinput.github.io/blinkinput-ios/Classes/MBImage.html) object are disposed. If you need to store [`MBImage`](http://blinkinput.github.io/blinkinput-ios/Classes/MBImage.html) object for later use, you must create a copy of it by calling `copy`. -### Success Frame Grabber Recognizer +## Success Frame Grabber Recognizer The [`MBSuccessFrameGrabberRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBSuccessFrameGrabberRecognizer.html) is a special `MBecognizer` that wraps some other [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) and impersonates it while processing the image. However, when the [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) being impersonated changes its [`MBRecognizerResult`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerResult.html) into `Valid` state, the [`MBSuccessFrameGrabberRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBSuccessFrameGrabberRecognizer.html) captures the image and saves it into its own [`MBSuccessFrameGrabberRecognizerResult`](http://blinkinput.github.io/blinkinput-ios/Classes/MBSuccessFrameGrabberRecognizerResult.html) object. @@ -559,114 +655,60 @@ Since [`MBSuccessFrameGrabberRecognizer`](http://blinkinput.github.io/blinkinput This recognizer is best for use cases when you need to capture the exact image that was being processed by some other [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizer.html) object at the time its [`MBRecognizerResult`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRecognizerResult.html) became `Valid`. When that happens, `MBSuccessFrameGrabberRecognizer's` `MBSuccessFrameGrabberRecognizerResult` will also become `Valid` and will contain described image. -### PDF417 recognizer +## PDF417 recognizer -The [`MBPdf417Recognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBPdf417Recognizer.html) is recognizer specialised for scanning [PDF417 2D barcodes](https://en.wikipedia.org/wiki/PDF417). This recognizer can recognize only PDF417 2D barcodes - for recognition of other barcodes, please refer to [BarcodeRecognizer](#barcodeRecognizer). +The [`MBPdf417Recognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBPdf417Recognizer.html) is recognizer specialised for scanning [PDF417 2D barcodes](https://en.wikipedia.org/wiki/PDF417). This recognizer can recognize only PDF417 2D barcodes - for recognition of other barcodes, please refer to [BarcodeRecognizer](#barcode-recognizer). This recognizer can be used in any overlay view controller, but it works best with the [`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html), which has UI best suited for barcode scanning. -### Barcode recognizer +## Barcode recognizer -The [`MBBarcodeRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeRecognizer.html) is recognizer specialised for scanning various types of barcodes. This recognizer should be your first choice when scanning barcodes as it supports lots of barcode symbologies, including the [PDF417 2D barcodes](https://en.wikipedia.org/wiki/PDF417), thus making [PDF417 recognizer](#pdf417Recognizer) possibly redundant, which was kept only for its simplicity. +The [`MBBarcodeRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeRecognizer.html) is recognizer specialised for scanning various types of barcodes. This recognizer should be your first choice when scanning barcodes as it supports lots of barcode symbologies, including the [PDF417 2D barcodes](https://en.wikipedia.org/wiki/PDF417), thus making [PDF417 recognizer](#pdf417-recognizer) possibly redundant, which was kept only for its simplicity. You can enable multiple barcode symbologies within this recognizer, however keep in mind that enabling more barcode symbologies affect scanning performance - the more barcode symbologies are enabled, the slower the overall recognition performance. Also, keep in mind that some simple barcode symbologies that lack proper redundancy, such as [Code 39](https://en.wikipedia.org/wiki/Code_39), can be recognized within more complex barcodes, especially 2D barcodes, like [PDF417](https://en.wikipedia.org/wiki/PDF417). This recognizer can be used in any overlay view controller, but it works best with the [`MBBarcodeOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBarcodeOverlayViewController.html), which has UI best suited for barcode scanning. - -### BlinkInput recognizer +## BlinkInput recognizer The [`MBBlinkInputRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBBlinkInputRecognizer.html) is generic OCR recognizer used for scanning segments which enables specifying `MBProcessors` that will be used for scanning. Most commonly used `MBProcessor` within this recognizer is [`MBParserGroupProcessor`](http://blinkinput.github.io/blinkinput-ios/Classes/MBParserGroupProcessor.html)) that activates all `MBParsers` in the group to extract data of interest from the OCR result. This recognizer can be used in any context. It is used internally in the implementation of the provided [`MBFieldByFieldOverlayViewController`](http://blinkinput.github.io/blinkinput-ios/Classes/MBFieldByFieldOverlayViewController.html). -`MBProcessors` are explained in [The Processor concept](#processorConcept) section and you can find more about `MBParsers` in [The Parser concept](#parserConcept) section. - -### Detector recognizer - -The [`MBDetectorRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBDetectorRecognizer.html) is recognizer for scanning generic documents using custom `MBDetector`. You can find more about `Detector` in [The Detector concept](#detectorConcept) section. `MBDetectorRecognizer` can be used simply for document detection and obtaining its image. The more interesting use case is data extraction from the custom document type. `MBDetectorRecognizer` performs document detection and can be configured to extract fields of interest from the scanned document by using **Templating API**. You can find more about Templating API in [this](#detectorTemplating) section. - -# `Field by field` scanning feature - -[`Field by field`](#fieldByFieldFeature) scanning feature is designed for scanning small text fields which are called scan elements. For each scan element, specific [`MBParser`](#parserConcept) that will extract structured data of interest from the OCR result is defined. Focusing on the small text fields which are scanned one by one enables implementing support for the **free-form documents** because field detection is not required. The user is responsible for positioning the field of interest inside the scanning window and the scanning process guides him. When implementing support for the custom document, only fields of interest has to be defined. - -[`Field by field`](#fieldByFieldFeature) approaches are described in the following sections. - -## `Field by field` feature - -`Field by field` feature is designed for scanning small text fields in the predefined order by using [`MBFieldByFieldViewController`](#fieldByFieldUiComponent). - -To start with Field by Field feature all you need to do is to initialize MBFieldByFieldOverlayViewController and conform to [`MBFieldByFieldOverlayViewControllerDelegate`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBFieldByFieldOverlayViewControllerDelegate.html) (this example follows our FieldByField-sample-Swift project): - -Swift -```swift - // Create MBFieldByFieldOverlaySettings - let settings = MBFieldByFieldOverlaySettings(scanElements: MBGenericPreset.getPreset()!) - - // Create field by field VC - let fieldByFieldVC = MBFieldByFieldOverlayViewController(settings: settings, delegate: self) - - // Create scanning VC - let recognizerRunnerViewController: (UIViewController & MBRecognizerRunnerViewController)? = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: fieldByFieldVC) - - // Present VC - self.present(recognizerRunnerViewController!, animated: true, completion: nil) - - - func field(_ fieldByFieldOverlayViewController: MBFieldByFieldOverlayViewController, didFinishScanningWith scanElements: [MBScanElement]) { - // Whatever you want to do with results - } -``` - -Objective-C -```objective-c - // Create MBFieldByFieldOverlaySettings - MBFieldByFieldOverlaySettings *settings = [[MBFieldByFieldOverlaySettings alloc] initWithScanElements: [MBGenericPreset getPreset] initWithSettings: settings, delegate: self]; - - // Create field by field VC - MBFieldByFieldOverlayViewController *fieldByFieldOverlayViewController = [[MBFieldByFieldOverlayViewController alloc] initWithSettings:settings delegate: self]; - - // Create scanning VC - UIViewController* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:fieldByFieldOverlayViewController]; - - / Present VC - [self presentViewController:recognizerRunnerViewController animated:YES completion:nil]; - - - (void)fieldByFieldOverlayViewController:(MBFieldByFieldOverlayViewController *)fieldByFieldOverlayViewController didFinishScanningWithElements:(NSArray *)scanElements { - // Whatever you want to do with results - } -``` +`MBProcessors` are explained in [The Processor concept](#processor-concept) section and you can find more about `MBParsers` in [The Parser concept](#parser-concept) section. +## Detector recognizer -# `MBProcessor` and `MBParser` +The [`MBDetectorRecognizer`](http://blinkinput.github.io/blinkinput-ios/Classes/MBDetectorRecognizer.html) is recognizer for scanning generic documents using custom `MBDetector`. You can find more about `Detector` in [The Detector concept](#detector-concept) section. `MBDetectorRecognizer` can be used simply for document detection and obtaining its image. The more interesting use case is data extraction from the custom document type. `MBDetectorRecognizer` performs document detection and can be configured to extract fields of interest from the scanned document by using **Templating API**. You can find more about Templating API in [this](#detector-templating) section. +# `MBProcessor` and `MBParser` -The `MBProcessors` and `MBParsers` are standard processing units within *BlinkInput* SDK used for data extraction from the input images. Unlike the [`MBRecognizer`](#recognizerConcept), `MBProcessor` and `MBParser` are not stand-alone processing units. `MBProcessor` is always used within `MBRecognizer` and `MBParser` is used within appropriate `MBProcessor` to extract data from the OCR result. +The `MBProcessors` and `MBParsers` are standard processing units within *BlinkID* SDK used for data extraction from the input images. Unlike the [`MBRecognizer`](#recognizer-concept), `MBProcessor` and `MBParser` are not stand-alone processing units. `MBProcessor` is always used within `MBRecognizer` and `MBParser` is used within appropriate `MBProcessor` to extract data from the OCR result. -## The `MBProcessor` concept +## The `MBProcessor` concept `MBProcessor` is a processing unit used within some `Recognizer` which supports processors. It process the input image prepared by the enclosing `Recognizer` in the way that is characteristic to the implementation of the concrete `MBProcessor`. -`MBProcessor` architecture is similar to `MBRecognizer` architecture described in [The Recognizer concept](#recognizerConcept) section. Each instance also has associated inner `MBRecognizerResult` object whose lifetime is bound to the lifetime of its parent `MBProcessor` object and it is updated while `MBProcessor` works. If you need your `MBRecognizerResult` object to outlive its parent `MBProcessor` object, you must make a copy of it by calling its method `copy`. +`MBProcessor` architecture is similar to `MBRecognizer` architecture described in [The Recognizer concept](#recognizer-concept) section. Each instance also has associated inner `MBRecognizerResult` object whose lifetime is bound to the lifetime of its parent `MBProcessor` object and it is updated while `MBProcessor` works. If you need your `MBRecognizerResult` object to outlive its parent `MBProcessor` object, you must make a copy of it by calling its method `copy`. It also has its internal state and while it is in the *working state* during recognition process, it is not allowed to tweak `MBProcessor` object's properties. To support common use cases, there are several different `MBProcessor` implementations available. They are listed in the next section. -## List of available processors +## List of available processors -This section will give a list of `MBProcessor` types that are available within *BlinkInput* SDK and their purpose. +This section will give a list of `MBProcessor` types that are available within *BlinkID* SDK and their purpose. -### Image Return Processor +### Image Return Processor The [`MBImageReturnProcessor`](http://blinkinput.github.io/blinkinput-ios/Classes/MBImageReturnProcessor.html) is used for obtaining input images. It simply saves the input image and makes it available after the scanning is done. -The appearance of the input image depends on the context in which `MBImageReturnProcessor` is used. For example, when it is used within [`MBBlinkInputRecognizer`](#blinkInputRecognizer), simply the raw image of the scanning region is processed. When it is used within the [`Templating API`](#detectorTemplating), input image is dewarped (cropped and rotated). +The appearance of the input image depends on the context in which `MBImageReturnProcessor` is used. For example, when it is used within [`MBBlinkInputRecognizer`](#blinkinput-recognizer), simply the raw image of the scanning region is processed. When it is used within the [`Templating API`](#detector-templating), input image is dewarped (cropped and rotated). The image is returned as the raw [`MBImage`](http://blinkinput.github.io/blinkinput-ios/Classes/MBImage.html) type. Also, processor can be configured to [encode saved image to JPEG](http://blinkinput.github.io/blinkinput-ios/Classes/MBImageReturnProcessor.html). -### Parser Group Processor +### Parser Group Processor -The [`MBParserGroupProcessor`](http://blinkinput.github.io/blinkinput-ios/Classes/MBParserGroupProcessor.html) is the type of the processor that performs the OCR (*Optical Character Recognition*) on the input image and lets all the parsers within the group to extract data from the OCR result. The concept of `MBParser` is described in [the next](#parserConcept) section. +The [`MBParserGroupProcessor`](http://blinkinput.github.io/blinkinput-ios/Classes/MBParserGroupProcessor.html) is the type of the processor that performs the OCR (*Optical Character Recognition*) on the input image and lets all the parsers within the group to extract data from the OCR result. The concept of `MBParser` is described in [the next](#parser-concept) section. Before performing the OCR, the best possible OCR engine options are calculated by combining engine options needed by each `MBParser` from the group. For example, if one parser expects and produces result from uppercase characters and other parser extracts data from digits, both uppercase characters and digits must be added to the list of allowed characters that can appear in the OCR result. This is a simplified explanation because OCR engine options contain many parameters which are combined by the `MBParserGroupProcessor`. @@ -680,94 +722,95 @@ If we put `MBAmountParser` in one `MBParserGroupProcessor` and `MBEmailParser` i `MBParserGroupProcessor` is most commonly used `MBProcessor`. It is used whenever the OCR is needed. After the OCR is performed and all parsers are run, parsed results can be obtained through parser objects that are enclosed in the group. `MBParserGroupProcessor` instance also has associated inner `MBParserGroupProcessorResult` whose state is updated during processing and its property [`ocrLayout`](http://blinkinput.github.io/blinkinput-ios/Classes/MBParserGroupProcessor.html) can be used to obtain the raw [`MBOcrLayout`](http://blinkinput.github.io/blinkinput-ios/Classes/MBOcrLayout.html) that was used for parsing data. -Take note that `MBOcrLayout` is available only if it is allowed by the *BlinkInput* SDK license key. `MBOcrLayout` structure contains information about all recognized characters and their positions on the image. To prevent someone to abuse that, obtaining of the `MBOcrLayout` structure is allowed only by the premium license keys. +Take note that `MBOcrLayout` is available only if it is allowed by the *BlinkID* SDK license key. `MBOcrLayout` structure contains information about all recognized characters and their positions on the image. To prevent someone to abuse that, obtaining of the `MBOcrLayout` structure is allowed only by the premium license keys. -## The `MBParser` concept +## The `MBParser` concept `MBParser` is a class of objects that are used to extract structured data from the raw OCR result. It must be used within `MBParserGroupProcessor` which is responsible for performing the OCR, so `MBParser` is not stand-alone processing unit. -Like [`MBRecognizer`](#recognizerConcept) and all other processing units, each `MBParser` instance has associated inner `MBRecognizerResult` object whose lifetime is bound to the lifetime of its parent `MBParser` object and it is updated while `MBParser` works. When parsing is done `MBParserResult` can be used for obtaining extracted data. If you need your `MBParserResult` object to outlive its parent `MBParser` object, you must make a copy of it by calling its method `copy`. +Like [`MBRecognizer`](#recognizer-concept) and all other processing units, each `MBParser` instance has associated inner `MBRecognizerResult` object whose lifetime is bound to the lifetime of its parent `MBParser` object and it is updated while `MBParser` works. When parsing is done `MBParserResult` can be used for obtaining extracted data. If you need your `MBParserResult` object to outlive its parent `MBParser` object, you must make a copy of it by calling its method `copy`. It also has its internal state and while it is in the *working state* during recognition process, it is not allowed to tweak `MBParser` object's properties. There are a lot of different `MBParsers` for extracting most common fields which appear on various documents. Also, most of them can be adjusted for specific use cases. For all other custom data fields, there is `RegexParser` available which can be configured with the arbitrary regular expression. -## List of available parsers +## List of available parsers -### Amount Parser +### Amount Parser [`MBAmountParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBAmountParser.html) is used for extracting amounts from the OCR result. -### Date Parser +### Date Parser [`MBDateParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBDateParser.html) is used for extracting dates in various formats from the OCR result. -### Email Parser +### Email Parser [`MBEmailParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBEmailParser.html) is used for extracting e-mail addresses from the OCR result. -### IBAN Parser +### IBAN Parser [`MBIbanParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBIbanParser.html) is used for extracting IBAN (*International Bank Account Number*) from the OCR result. -### License Plates Parser +### License Plates Parser [`MBLicensePlatesParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBLicensePlatesParser.html) is used for extracting license plate content from the OCR result. -### Raw Parser +### Raw Parser [`MBRawParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRawParser.html) is used for obtaining string version of raw OCR result, without performing any smart parsing operations. -### Regex Parser +### Regex Parser [`MBRegexParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBRegexParser.html) is used for extracting OCR result content which is in accordance with the given regular expression. Regular expression parsing is not performed with java's regex engine. Instead, it is performed with custom regular expression engine. -### TopUp Parser +### TopUp Parser [`MBTopUpParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBTopUpParser.html) is used for extracting TopUp (mobile phone coupon) codes from the OCR result. There exists [`TopUpPreset`](http://blinkinput.github.io/blinkinput-ios/Enums/MBTopUpPreset.html) enum with presets for most common vendors. Method `- (void)setTopUpPreset:(MBTopUpPreset)topUpPreset` can be used to configure parser to only return codes with the appropriate format defined by the used preset. -### VIN (*Vehicle Identification Number*) Parser +### VIN (*Vehicle Identification Number*) Parser [`MBVinParser`](http://blinkinput.github.io/blinkinput-ios/Classes/MBVinParser.html) is used for extracting VIN (*Vehicle Identification Number*) from the OCR result. -# Scanning generic documents with Templating API + +# Scanning generic documents with Templating API This section discusses the setting up of `MBDetectorRecognizer` for scanning templated documents. Please check `Templating-sample` sample app for source code examples. Templated document is any document which is defined by its template. Template contains the information about how the document should be detected, i.e. found on the camera scene and information about which part of the document contains which useful information. -## Defining how document should be detected +## Defining how document should be detected -Before performing OCR of the document, _BlinkInput_ first needs to find its location on a camera scene. In order to perform detection, you need to define [MBDetector](#detectorConcept). +Before performing OCR of the document, _BlinkID_ first needs to find its location on a camera scene. In order to perform detection, you need to define [MBDetector](#detector-concept). You have to set concrete `MBDetector` when instantiating the `MBDetectorRecognizer` as a parameter to its constructor. -You can find out more information about detectors that can be used in section [List of available detectors](#detectorList). The most commonly used detector is [`MBDocumentDetector`](#documentDetector). +You can find out more information about detectors that can be used in section [List of available detectors](#detector-list). The most commonly used detector is [`MBDocumentDetector`](#document-detector). -## Defining how fields of interest should be extracted +## Defining how fields of interest should be extracted `MBDetector` produces its result which contains document location. After the document has been detected, all further processing is done on the detected part of the input image. -There may be one or more variants of the same document type, for example for some document there may be old and new version and both of them must be supported. Because of that, for implementing support for each document, one or multiple templating classes are used. `MBTemplatingClass` is described in [The Templating Class component](#templatingClass) section. +There may be one or more variants of the same document type, for example for some document there may be old and new version and both of them must be supported. Because of that, for implementing support for each document, one or multiple templating classes are used. `MBTemplatingClass` is described in [The Templating Class component](#templating-class) section. `MBTemplatingClass` holds all needed information and components for processing its class of documents. Templating classes are processed in chain, one by one. On first class for which the data is successfully extracted, the chain is terminated and recognition results are returned. For each input image processing is done in the following way: -1. Classification `MBProcessorGroups` are run on the defined locations to extract data. `MBProcessorGroup` is used to define the location of interest on the detected document and `MBProcessors` that will extract data from that location. You can find more about `MBProcessorGroup` in the [next section](#processorGroup). +1. Classification `MBProcessorGroups` are run on the defined locations to extract data. `MBProcessorGroup` is used to define the location of interest on the detected document and `MBProcessors` that will extract data from that location. You can find more about `MBProcessorGroup` in the [next section](#processor-group). -2. `MBTemplatingClassifier` is run with the data extracted by the classification processor groups to decide whether the currently scanned document belongs to the current class or not. Its [classify](http://blinkinput.github.io/blinkinput-ios/Protocols/MBTemplatingClassifier.html) method simply returns `YES/true` or `NO/false`. If the classifier returns `NO/false`, recognition is moved to the next class in the chain, if it exists. You can find more about `MBTemplatingClassifier` in [this](#implementingTemplatingClassifier) section. +2. `MBTemplatingClassifier` is run with the data extracted by the classification processor groups to decide whether the currently scanned document belongs to the current class or not. Its [classify](http://blinkinput.github.io/blinkinput-ios/Protocols/MBTemplatingClassifier.html) method simply returns `YES/true` or `NO/false`. If the classifier returns `NO/false`, recognition is moved to the next class in the chain, if it exists. You can find more about `MBTemplatingClassifier` in [this](#implementing-templating-classifier) section. 3. If the `MBTemplatingClassifier` has decided that currently scanned document belongs to the current class, non-classification `MBProcessorGroups` are run to extract other fields of interest. -### The `MBProcessorGroup` component +### The `MBProcessorGroup` component In templating API [`MBProcessorGroup`](http://blinkinput.github.io/blinkinput-ios/Classes/MBProcessorGroup.html) is used to define the location of the field of interest on the detected document and how that location should be processed by setting following parameters in its constructor: 1. Location coordinates relative to document detection which are passed as [`Rectangle`] object. -2. `MBDewarpPolicy` which determines the resulting image chunk for processing. You can find a description of each `MBDewarpPolicy`, its purpose and recommendations when it should be used to get the best results in [List of available dewarp policies](#dewarpPolicyList) section. +2. `MBDewarpPolicy` which determines the resulting image chunk for processing. You can find a description of each `MBDewarpPolicy`, its purpose and recommendations when it should be used to get the best results in [List of available dewarp policies](#dewarp-policy-list) section. -3. Collection of processors that will be executed on the prepared chunk of the image for current document location. You can find more information about processors in [The Processor concept](#processorConcept) section. +3. Collection of processors that will be executed on the prepared chunk of the image for current document location. You can find more information about processors in [The Processor concept](#processor-concept) section. -### List of available dewarp policies +### List of available dewarp policies Concrete `MBDewarpPolicy` defines how specific location of interest should be dewarped (cropped and rotated). It determines the height and width of the resulting dewarped image in pixels. Here is the list of available dewarp policies with linked doc for more information: @@ -786,7 +829,7 @@ Concrete `MBDewarpPolicy` defines how specific location of interest should be de - if the height of the resulting image is larger than maximal allowed, then the maximal allowed height will be used as actual height, which effectively scales down the image - **usually the best policy for processors that use neural networks, for example, DEEP OCR, hologram detection or NN-based classification** -### The `MBTemplatingClass` component +### The `MBTemplatingClass` component [`MBTemplatingClass`](http://blinkinput.github.io/blinkinput-ios/Classes/MBTemplatingClass.html) enables implementing support for a specific class of documents that should be scanned with templating API. Final implementation of the templating recognizer consists of one or more templating classes, one class for each version of the document. @@ -798,13 +841,13 @@ The two collections of processor groups within `MBTemplatingClass` are: 2. The non-classification processor groups which are set by using the [`- (void)setNonClassificationProcessorGroups:(nonnull NSArray<__kindof MBProcessorGroup *> *)processorGroups`]method. `MBProcessorGroups` from this collection will be executed after classification if the classification has been positive. -A component which decides whether the scanned document belongs to the current class is [`MBTemplatingClass`](http://blinkinput.github.io/blinkinput-ios/Classes/MBTemplatingClass.html). It can be set by using the `- (void)setTemplatingClassifier:(nullable id)templatingClassifier` method. If it is not set, non-classification processor groups will not be executed. Instructions for implementing the `MBTemplatingClassifier` are given in the [next section](#implementingTemplatingClassifier). +A component which decides whether the scanned document belongs to the current class is [`MBTemplatingClass`](http://blinkinput.github.io/blinkinput-ios/Classes/MBTemplatingClass.html). It can be set by using the `- (void)setTemplatingClassifier:(nullable id)templatingClassifier` method. If it is not set, non-classification processor groups will not be executed. Instructions for implementing the `MBTemplatingClassifier` are given in the [next section](#implementing-templating-classifier). -### Implementing the `MBTemplatingClassifier` +### Implementing the `MBTemplatingClassifier` Each concrete templating classifier implements the [`MBTemplatingClassifier`](http://blinkinput.github.io/blinkinput-ios/Protocols/MBTemplatingClassifier.html) interface, which requires to implement its `classify` method that is invoked while evaluating associated `MBTemplatingClass`. -Classification decision should be made based on the processing result which is returned by one or more processing units contained in the collection of the classification processor groups. As described in [The ProcessorGroup component](#processorGroup) section, each processor group contains one or more `MBProcessors`. [There are different `MBProcessors`](#processorList) which may enclose smaller processing units, for example, [`MBParserGroupProcessor`](#parserGroupProcessor) maintains the group of [`MBParsers`](#parserConcept). Result from each of the processing units in that hierarchy can be used for classification. In most cases `MBParser` result is used to determine whether some data in the expected format exists on the specified location. +Classification decision should be made based on the processing result which is returned by one or more processing units contained in the collection of the classification processor groups. As described in [The ProcessorGroup component](#processor-group) section, each processor group contains one or more `MBProcessors`. [There are different `MBProcessors`](#processor-list) which may enclose smaller processing units, for example, [`MBParserGroupProcessor`](#parser-group-processor) maintains the group of [`MBParsers`](#parser-concept). Result from each of the processing units in that hierarchy can be used for classification. In most cases `MBParser` result is used to determine whether some data in the expected format exists on the specified location. To be able to retrieve results from the various processing units that are needed for classification, their instances must be available when `classify` method is called. @@ -812,11 +855,11 @@ To be able to retrieve results from the various processing units that are needed When recognition is done, results can be obtained through processing units instances, such as: `MBProcessors`, `MBParsers`, etc. which are used for configuring the `MBTemplatingRecognizer` and later for processing the input image. -# The `MBDetector` concept +# The `MBDetector` concept -[`MBDetector`](http://blinkinput.github.io/blinkinput-ios/Classes/MBDetector.html) is a processing unit used within some `MBRecognizer` which supports detectors, such as [`MBDetectorRecognizer`](#detectorRecognizer). Concrete `MBDetector` knows how to find the certain object on the input image. `MBRecognizer` can use it to perform object detection prior to performing further recognition of detected object's contents. +[`MBDetector`](http://blinkinput.github.io/blinkinput-ios/Classes/MBDetector.html) is a processing unit used within some `MBRecognizer` which supports detectors, such as [`MBDetectorRecognizer`](#detector-recognizer). Concrete `MBDetector` knows how to find the certain object on the input image. `MBRecognizer` can use it to perform object detection prior to performing further recognition of detected object's contents. -`MBDetector` architecture is similar to `MBRecognizer` architecture described in [The Recognizer concept](#recognizerConcept) section. Each instance also has associated inner `MBRecognizerResult` object whose lifetime is bound to the lifetime of its parent `MBDetector` object and it is updated while `MBDetector` works. If you need your `MBRecognizerResult` object to outlive its parent `MBDetector` object, you must make a copy of it by calling its `copy` method. +`MBDetector` architecture is similar to `MBRecognizer` architecture described in [The Recognizer concept](#recognizer-concept) section. Each instance also has associated inner `MBRecognizerResult` object whose lifetime is bound to the lifetime of its parent `MBDetector` object and it is updated while `MBDetector` works. If you need your `MBRecognizerResult` object to outlive its parent `MBDetector` object, you must make a copy of it by calling its `copy` method. It also has its internal state and while it is in the *working state* during recognition process, it is not allowed to tweak `MBDetector` object's properties. @@ -831,9 +874,9 @@ When detection is performed on the input image, each `MBDetector` in its associa To support common use cases, there are several different `MBDetector` implementations available. They are listed in the next section. -## List of available detectors +## List of available detectors -### Document Detector +### Document Detector [`MBDocumentDetector`](http://blinkinput.github.io/blinkinput-ios/Classes/MBDocumentDetector.html) is used to detect card documents, cheques, A4-sized documents, receipts and much more. @@ -844,7 +887,7 @@ For the most commonly used document formats, there is a helper method `+ (insta For the list of all available configuration methods see [`MBDocumentDetector`](http://blinkinput.github.io/blinkinput-ios/Classes/MBDocumentDetector.html) doc, and for available result content see [`MBDocumentDetectorResult`](http://blinkinput.github.io/blinkinput-ios/Classes/MBDocumentDetectorResult.html) doc. -### MRTD Detector +### MRTD Detector [`MBMrtdDetector`](http://blinkinput.github.io/blinkinput-ios/Classes/MBMrtdDetector.html) is used to perform detection of *Machine Readable Travel Documents (MRTD)*. @@ -854,19 +897,97 @@ If `MBMrtdSpecifications` are not set, all supported MRTD formats will be detect For the list of all available configuration methods see [`MBMrtdDetector`](http://blinkinput.github.io/blinkinput-ios/Classes/MBMrtdDetector.html) doc, and for available result content see [`MBMrtdDetectorResult`](http://blinkinput.github.io/blinkinput-ios/Classes/MBMrtdDetectorResult.html) doc. -# Troubleshooting +# Creating customized build of BlinkID SDK + +If your final app size is too large, you can create a customised build of _MicroBlink.framework_ and _MicroBlink.bundle_ which will contain only features and resources that you really need. + +In order to create customised build of BlinkID SDK, you first need to download the static distribution of BlinkID SDK. A valid production licence key is required in order to gain access to the download link of BlinkID SDK static distribution. Once you have a valid production licence key, please contact our [support team](http://help.microblink.com) and ask them to provide you with the download link. After they give you access to the static distribution of BlinkID SDK, you will be able to download it from you account at [MicroBlink Developer Dashboard](https://www.microblink.com/login). + +The static distribution of BlinkID SDK is a large zip file (several hundred megabytes) which contains static libraries of BlinkID SDK's native code, all assets and resources and a script which will create the customised build for you. + +### Prerequisites for creating customised build + +In order to create customised build of BlinkInput SDK, you will need following tools: + +- XCode and latest iOS SDK +- CMake - you can install it from Homebrew with `brew install cmake`, or you can download it from [official page](https://cmake.org/download/) + - please note that command-line version of CMake is required, so if you have downloaded CMake from official page, make sure you install command-line support as well + +### Steps for creating customised build + +1. Obtain the static distribution of BlinkID SDK by [contacting us](http://help.microblink.com) +2. Download the zip from link that you will be provided +3. Unzip the file into an empty folder +4. Edit the file `enabled-features.cmake` + - you should enable only features that you need to use by setting appropriate variables to `ON`. + - the list of all possible feature variables can be found in `features.cmake` + - for each `feature_option` command, first parameter defines the feature variable, and the second is the description of the feature, i.e. what it provides. Other parameters are information for script to work correctly. + - you should not edit any file except `enabled-features.cmake` (except if instructed so by our support team) to ensure creation of customised build works well +5. Open terminal and navigate to folder with zip's contents. +6. Execute command `./create-custom-build.sh` and select whether you want static or dynamic frameowk. + - when asked, enter `s` to build static framework or `d` to build dynamic framework +7. After several minutes (depedending of CPU speed of your computer), customised build will appear in the `Release` folder. Use that bundle and framework in your app instead of default one. + +#### Warning: + +Attempt to use feature within your app which was not enabled in customised build will cause a linker error when linking against the customised framework. + +### Troubleshooting: + +#### Getting `unrecognized selector sent to instance` when using customised static framework, while everything works OK with dynamic framework + +This happens when your app has not been linked with `-ObjC` flag against static framework. The problem is related to using Objective C categories within static library which are thrown away by linker. You can see more information in [official Apple documentation](https://developer.apple.com/library/content/qa/qa1490/_index.html). + +#### App crashing when scanning starts with log message _Failed to load resource XX. The program will now crash._ + +This means that a required resource was not packaged into final app. This usually indicates a bug in our script that makes the customised build. Please [contact us](http://help.microblink.com) and send your version of `enabled-features.cmake` and crash log. + +#### CMake error while running script. + +You probably have a typo in `enabled-features.cmake`. CMake is very sensitive language and will throw an non-understandable error if you have a typo or invoke any of its commands with wrong number of parameters. + +#### Linker error while running the script. + +This sometimes happens when XCode's link time optimizer runs out of memory. Usually running the script again solves the problem. Please reboot your Mac if this keeps happening. + +#### Keeping only `FEATURE_MRTD` creates rather large `MicroBlink.bundle` + +`FEATURE_MRTD` marks the _MRTD recognizer_. However, _MRTD recognizer_ can also be used in _Templating API_ mode where non-MRZ data can be scanned. To perform OCR of non-MRZ data, a rather large OCR model must be used, which supports all fonts. If you only plan to scan MRZ part of the document, you can edit the `features.cmake` in following way: + +- find the following line: + +``` +feature_resources( FEATURE_MRTD model_mrtd model_general_blink_ocr model_micr model_arabic ) +``` + +- keep only `model_mrtd` in the list, i.e. modify the line so that it will be like this: + +``` +feature_resources( FEATURE_MRTD model_mrtd ) +``` + +This will keep only support for reading MRZ zone in OCR - you will not be able to scan non-MRZ data with such configuration using _MRTD recognizer_, however you will reduce the `MicroBlink.bundle` and then final app size by more than 4MB. + +##### More information about OCR models in `FEATURE_MRTD` + +- `model_mrtd` is OCR model for performing OCR of MRZ zone +- `model_arabic` is OCR model for performing OCR of digits used in arabic languages - text scanning is not supported +- `model_micr` is OCR model for performing OCR of [Magnetic Ink Characters](https://en.wikipedia.org/wiki/Magnetic_ink_character_recognition) +- `model_general_blink_ocr` is OCR model for performing general-purpose OCR. This model is usually required for performing OCR of non-MRZ text on documents. + +# Troubleshooting -## Integration problems +## Integration problems -In case of problems with integration of the SDK, first make sure that you have tried integrating it into XCode by following [integration instructions](#quickStart). +In case of problems with integration of the SDK, first make sure that you have tried integrating it into XCode by following [integration instructions](#quick-start). -If you have followed [XCode integration instructions](#quickStart) and are still having integration problems, please contact us at [help.microblink.com](http://help.microblink.com). +If you have followed [XCode integration instructions](#quick-start) and are still having integration problems, please contact us at [help.microblink.com](http://help.microblink.com). -## SDK problems +## SDK problems In case of problems with using the SDK, you should do as follows: -### Licencing problems +### Licencing problems If you are getting "invalid licence key" error or having other licence-related problems (e.g. some feature is not enabled that should be or there is a watermark on top of camera), first check the console. All licence-related problems are logged to error log so it is easy to determine what went wrong. @@ -877,7 +998,7 @@ When you have determine what is the licence-relate problem or you simply do not * 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 +### Other problems 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: @@ -887,27 +1008,27 @@ If you are having problems with scanning certain items, undesired behaviour on s * information about device that you are using * please stress out that you are reporting problem related to iOS version of PDF417.mobi SDK -## Frequently asked questions and known problems +## 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. -#### In demo everything worked, but after switching to production license I get `NSError` with `MBMicroblinkSDKRecognizerErrorDomain` and `MBRecognizerFailedToInitalize` code as soon as I construct specific [`MBRecognizer`](http://pdf417.github.io/pdf417-ios/docs/Classes/MBRecognizer.html) object +#### In demo everything worked, but after switching to production license I get `NSError` with `MBMicroblinkSDKRecognizerErrorDomain` and `MBRecognizerFailedToInitalize` code as soon as I construct specific [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/docs/Classes/MBRecognizer.html) object Each license key contains information about which features are allowed to use and which are not. This `NSError` indicates that your production license does not allow using of specific `MBRecognizer` object. You should contact [support](http://help.microblink.com) to check if provided licence is OK and that it really contains all features that you have purchased. -#### I get `NSError` with `MBMicroblinkSDKRecognizerErrorDomain` and `MBRecognizerFailedToInitalize` code with trial license key +#### I get `NSError` with `MBMicroblinkSDKRecognizerErrorDomain` and `MBRecognizerFailedToInitalize` code with trial license key -Whenever you construct any [`MBRecognizer`](http://pdf417.github.io/pdf417-ios/docs/Classes/MBRecognizer.html) object or, a check whether license allows using that object will be performed. If license is not set prior constructing that object, you will get `NSError` with `MBMicroblinkSDKRecognizerErrorDomain` and `MBRecognizerFailedToInitalize` code. We recommend setting license as early as possible in your app. +Whenever you construct any [`MBRecognizer`](http://blinkinput.github.io/blinkinput-ios/docs/Classes/MBRecognizer.html) object or, a check whether license allows using that object will be performed. If license is not set prior constructing that object, you will get `NSError` with `MBMicroblinkSDKRecognizerErrorDomain` and `MBRecognizerFailedToInitalize` code. We recommend setting license as early as possible in your app. -#### Undefined Symbols on Architecture armv7 +#### Undefined Symbols on Architecture armv7 -Make sure you link your app with iconv and Accelerate frameworks as shown in [Quick start](#quickStart). +Make sure you link your app with iconv and Accelerate frameworks as shown in [Quick start](#quick-start). If you are using Cocoapods, please be sure that you've installed `git-lfs` prior to installing pods. If you are still getting this error, go to project folder and execute command `git-lfs pull`. -#### In my `didFinish` callback I have the result inside my `MBRecognizer`, but when scanning activity finishes, the result is gone +#### In my `didFinish` callback I have the result inside my `MBRecognizer`, but when scanning activity finishes, the result is gone -This usually happens when using [`MBRecognizerRunnerViewController`](http://pdf417.github.io/pdf417-ios/docs/Classes/MBRecognizerRunnerViewController.html) and forgetting to pause the [`MBRecognizerRunnerViewController`](http://pdf417.github.io/pdf417-ios/docs/Classes/MBRecognizerRunnerViewController.html) in your `didFinish` callback. Then, as soon as `didFinish` happens, the result is mutated or reset by additional processing that `MBRecognizer` performs in the time between end of your `didFinish` callback and actual finishing of the scanning activity. For more information about statefulness of the `MBRecognizer` objects, check [this section](#recognizerConcept). +This usually happens when using [`MBRecognizerRunnerViewController`](http://blinkinput.github.io/blinkinput-ios/docs/Classes/MBRecognizerRunnerViewController.html) and forgetting to pause the [`MBRecognizerRunnerViewController`](http://blinkinput.github.io/blinkinput-ios/docs/Classes/MBRecognizerRunnerViewController.html) in your `didFinish` callback. Then, as soon as `didFinish` happens, the result is mutated or reset by additional processing that `MBRecognizer` performs in the time between end of your `didFinish` callback and actual finishing of the scanning activity. For more information about statefulness of the `MBRecognizer` objects, check [this section](#recognizer-concept). -#### Unsupported architectures when submitting app to App Store +#### Unsupported architectures when submitting app to App Store Microblink.framework is a dynamic framework which contains slices for all architectures - device and simulator. If you intend to extract .ipa file for ad hoc distribution, you'll need to preprocess the framework to remove simulator architectures. @@ -948,6 +1069,6 @@ done # Additional info -Complete API reference can be found [here](http://blinkinput.github.io/blinkinput-ios/docs/index.html). +Complete API reference can be found [here](http://blinkinput.github.io/blinkinput-ios/index.html). -For any other questions, feel free to contact us at [help.microblink.com](http://help.microblink.com). +For any other questions, feel free to contact us at [help.microblink.com](http://help.microblink.com). \ No newline at end of file diff --git a/Release notes.md b/Release notes.md index dfdaacc..92a3738 100644 --- a/Release notes.md +++ b/Release notes.md @@ -1,5 +1,34 @@ # Release notes +## 4.1.0 + +- Updates and addtitions + - updated overlay view controllers with new icons for close and torch buttons + - switched to using HTTPS in podspec for Cocoapods + - enabled capturing high resolution camera frames: + When custom UI integration is performed, use - `(void)captureHighResImage:(MBCaptureHighResImage)highResoulutionImageCaptured on MBRecognizerRunnerViewController` + When using provided scan overlay view controllers, high resolution full camera frames taken at the moment of successful scan are returned if this option is enabled through `MBOverlaySettings`. + - Added support for checking if scanning is unsupported for camera type on `MBRecognizerRunnerViewController` + - Added `reconfigureRecognizers` method to `MBBaseOverlayViewController`, enabling it on all it's subclasses + +- Minor API changes + - renamed MicroBlink.framework to Microblink.framework + - renamed MicroBlink.bundle to Microblink.bundle + - `isScanningUnsupportedForCameraType:` is now class method of `MBMicroblinkSDK` + +- Bugfixes + - templating recognizers no longer execute callbacks with valid state once they are valid on every frame even if nothing is 'detected' + - fixed a crash which happened when scanning region was set before overlay view controller loaded, but after it was initialized + - fixed missing init in `MBDotsResultSubview` for Swift + - fix memory issue while using current frame grabber + - updated overlay view controllers for iPhone X Series + - Fixed bug where SDK crashed with exception when the user wanted to use custom resource bundle + - Calling `reconfigureRecognizers` before showing camera now correctly applies supplied recognizers + - Fixed autorotation of overlays and `MBRecognizerRunnerViewController` + - Fixed localization issues with some overlays + - Fixed constraint errors on `MBDocumentVerificationOverlayViewController` + - Various other bug fixes and improvements + ## 4.0.0 - new API, which is not backward compatible. Please check [README](README.md) and updated demo applications for more information, but the gist of it is: @@ -315,4 +344,4 @@ - Initial documentation added - Implemented Two sample apps - One for simple integration showing how OcrRecognizer can easily be included in the app - - One with custom UI for FormScanning with Price, IBAN and Reference number parsing \ No newline at end of file + - One with custom UI for FormScanning with Price, IBAN and Reference number parsing diff --git a/Samples/BlinkInput-sample-ObjC/BlinkInput-sample.xcodeproj/project.pbxproj b/Samples/BlinkInput-sample-ObjC/BlinkInput-sample.xcodeproj/project.pbxproj index 4c6c3cd..9f55197 100644 --- a/Samples/BlinkInput-sample-ObjC/BlinkInput-sample.xcodeproj/project.pbxproj +++ b/Samples/BlinkInput-sample-ObjC/BlinkInput-sample.xcodeproj/project.pbxproj @@ -17,14 +17,14 @@ 18CC81F71B697101000F6DA5 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18CC81F61B697101000F6DA5 /* CoreMedia.framework */; }; 18CC81F91B697106000F6DA5 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18CC81F81B697106000F6DA5 /* AVFoundation.framework */; }; 18CC81FD1B697133000F6DA5 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18CC81FC1B697133000F6DA5 /* AudioToolbox.framework */; }; - 3159A58B1CF4805D00641A11 /* MicroBlink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 3159A5891CF4805D00641A11 /* MicroBlink.bundle */; }; 3159A5C11CF4A5E900641A11 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 3159A5C01CF4A5E900641A11 /* libc++.tbd */; }; 3159A5C31CF4A5F100641A11 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 3159A5C21CF4A5F100641A11 /* libiconv.tbd */; }; 3159A5C51CF4A5F400641A11 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3159A5C41CF4A5F400641A11 /* Accelerate.framework */; }; - A2FE135D1F7503A600C6F1EA /* MicroBlink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3159A58A1CF4805D00641A11 /* MicroBlink.framework */; }; - A2FE135E1F7503A600C6F1EA /* MicroBlink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3159A58A1CF4805D00641A11 /* MicroBlink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; A2FE13611F7503C200C6F1EA /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A2FE13601F7503C200C6F1EA /* libz.tbd */; }; B403EE7820F4D0EC00EE5235 /* license.txt in Resources */ = {isa = PBXBuildFile; fileRef = B403EE7720F4D0EC00EE5235 /* license.txt */; }; + B4CCA03322AE4BCD00C76715 /* Microblink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B4CCA03122AE4BCD00C76715 /* Microblink.bundle */; }; + B4CCA03422AE4BD500C76715 /* Microblink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA03022AE4BCD00C76715 /* Microblink.framework */; }; + B4CCA03522AE4BD500C76715 /* Microblink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA03022AE4BCD00C76715 /* Microblink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -34,7 +34,7 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - A2FE135E1F7503A600C6F1EA /* MicroBlink.framework in Embed Frameworks */, + B4CCA03522AE4BD500C76715 /* Microblink.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -56,13 +56,13 @@ 18CC81F61B697101000F6DA5 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; }; 18CC81F81B697106000F6DA5 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; }; 18CC81FC1B697133000F6DA5 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; - 3159A5891CF4805D00641A11 /* MicroBlink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = MicroBlink.bundle; path = ../../MicroBlink.bundle; sourceTree = ""; }; - 3159A58A1CF4805D00641A11 /* MicroBlink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MicroBlink.framework; path = ../../MicroBlink.framework; sourceTree = ""; }; 3159A5C01CF4A5E900641A11 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; }; 3159A5C21CF4A5F100641A11 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; }; 3159A5C41CF4A5F400641A11 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; }; A2FE13601F7503C200C6F1EA /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; B403EE7720F4D0EC00EE5235 /* license.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = license.txt; sourceTree = ""; }; + B4CCA03022AE4BCD00C76715 /* Microblink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Microblink.framework; path = ../../Microblink.framework; sourceTree = ""; }; + B4CCA03122AE4BCD00C76715 /* Microblink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Microblink.bundle; path = ../../Microblink.bundle; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -72,9 +72,9 @@ files = ( A2FE13611F7503C200C6F1EA /* libz.tbd in Frameworks */, 3159A5C31CF4A5F100641A11 /* libiconv.tbd in Frameworks */, + B4CCA03422AE4BD500C76715 /* Microblink.framework in Frameworks */, 3159A5C11CF4A5E900641A11 /* libc++.tbd in Frameworks */, 3159A5C51CF4A5F400641A11 /* Accelerate.framework in Frameworks */, - A2FE135D1F7503A600C6F1EA /* MicroBlink.framework in Frameworks */, 18CC81FD1B697133000F6DA5 /* AudioToolbox.framework in Frameworks */, 18CC81F91B697106000F6DA5 /* AVFoundation.framework in Frameworks */, 18CC81F71B697101000F6DA5 /* CoreMedia.framework in Frameworks */, @@ -133,9 +133,9 @@ A2FE13601F7503C200C6F1EA /* libz.tbd */, 3159A5C21CF4A5F100641A11 /* libiconv.tbd */, 3159A5C01CF4A5E900641A11 /* libc++.tbd */, - 3159A5891CF4805D00641A11 /* MicroBlink.bundle */, + B4CCA03122AE4BCD00C76715 /* Microblink.bundle */, + B4CCA03022AE4BCD00C76715 /* Microblink.framework */, 3159A5C41CF4A5F400641A11 /* Accelerate.framework */, - 3159A58A1CF4805D00641A11 /* MicroBlink.framework */, 18CC81FC1B697133000F6DA5 /* AudioToolbox.framework */, 18CC81F81B697106000F6DA5 /* AVFoundation.framework */, 18CC81F61B697101000F6DA5 /* CoreMedia.framework */, @@ -192,6 +192,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -210,12 +211,12 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3159A58B1CF4805D00641A11 /* MicroBlink.bundle in Resources */, 187392121AA4B1070031D6C9 /* Main.storyboard in Resources */, B403EE7820F4D0EC00EE5235 /* license.txt in Resources */, 187392171AA4B1070031D6C9 /* LaunchScreen.xib in Resources */, 186226B71AB1B0A6002D71E5 /* en.strings in Resources */, 187392141AA4B1070031D6C9 /* Images.xcassets in Resources */, + B4CCA03322AE4BCD00C76715 /* Microblink.bundle in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/Samples/BlinkInput-sample-ObjC/BlinkInput-sample/License/license.txt b/Samples/BlinkInput-sample-ObjC/BlinkInput-sample/License/license.txt index 4c74652..69fb25a 100644 Binary files a/Samples/BlinkInput-sample-ObjC/BlinkInput-sample/License/license.txt and b/Samples/BlinkInput-sample-ObjC/BlinkInput-sample/License/license.txt differ diff --git a/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift.xcodeproj/project.pbxproj b/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift.xcodeproj/project.pbxproj index c9778eb..d8467db 100755 --- a/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift.xcodeproj/project.pbxproj +++ b/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift.xcodeproj/project.pbxproj @@ -7,9 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - 184958DC20AD8E8700F27C8D /* MicroBlink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 184958DA20AD8E8700F27C8D /* MicroBlink.bundle */; }; - 184958DD20AD8E8700F27C8D /* MicroBlink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 184958DB20AD8E8700F27C8D /* MicroBlink.framework */; }; - 184958E820AD908400F27C8D /* MicroBlink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 184958DB20AD8E8700F27C8D /* MicroBlink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 310E459A1C20612300B546BD /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 310E45991C20612300B546BD /* AppDelegate.swift */; }; 310E459F1C20612300B546BD /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 310E459D1C20612300B546BD /* Main.storyboard */; }; 310E45A11C20612300B546BD /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 310E45A01C20612300B546BD /* Assets.xcassets */; }; @@ -24,6 +21,9 @@ 31BF2FD41D95498C008816F3 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31BF2FD31D95498C008816F3 /* ViewController.swift */; }; A2FE137A1F75097F00C6F1EA /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A2FE13791F75097F00C6F1EA /* libz.tbd */; }; B403EE7B20F4D17A00EE5235 /* license.txt in Resources */ = {isa = PBXBuildFile; fileRef = B403EE7A20F4D17A00EE5235 /* license.txt */; }; + B4CCA03922AE4C9300C76715 /* Microblink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B4CCA03722AE4C9300C76715 /* Microblink.bundle */; }; + B4CCA03A22AE4C9900C76715 /* Microblink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA03622AE4C9300C76715 /* Microblink.framework */; }; + B4CCA03B22AE4C9900C76715 /* Microblink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA03622AE4C9300C76715 /* Microblink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -33,7 +33,7 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - 184958E820AD908400F27C8D /* MicroBlink.framework in Embed Frameworks */, + B4CCA03B22AE4C9900C76715 /* Microblink.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -41,8 +41,6 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 184958DA20AD8E8700F27C8D /* MicroBlink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = MicroBlink.bundle; path = ../../MicroBlink.bundle; sourceTree = ""; }; - 184958DB20AD8E8700F27C8D /* MicroBlink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MicroBlink.framework; path = ../../MicroBlink.framework; sourceTree = ""; }; 310E45961C20612300B546BD /* BlinkInput-sample-Swift.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "BlinkInput-sample-Swift.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 310E45991C20612300B546BD /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 310E459E1C20612300B546BD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; @@ -59,6 +57,8 @@ 31BF2FD31D95498C008816F3 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; A2FE13791F75097F00C6F1EA /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; B403EE7A20F4D17A00EE5235 /* license.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = license.txt; sourceTree = ""; }; + B4CCA03622AE4C9300C76715 /* Microblink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Microblink.framework; path = ../../Microblink.framework; sourceTree = ""; }; + B4CCA03722AE4C9300C76715 /* Microblink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Microblink.bundle; path = ../../Microblink.bundle; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -69,7 +69,7 @@ A2FE137A1F75097F00C6F1EA /* libz.tbd in Frameworks */, 310E45E61C206DF600B546BD /* libc++.tbd in Frameworks */, 310E45E41C206DF100B546BD /* libiconv.tbd in Frameworks */, - 184958DD20AD8E8700F27C8D /* MicroBlink.framework in Frameworks */, + B4CCA03A22AE4C9900C76715 /* Microblink.framework in Frameworks */, 3139C9371C32AE72005AC32C /* MobileCoreServices.framework in Frameworks */, 310E45E21C206DEB00B546BD /* CoreMedia.framework in Frameworks */, 310E45E01C206DC100B546BD /* AudioToolbox.framework in Frameworks */, @@ -115,8 +115,8 @@ 310E45AB1C2063F300B546BD /* Frameworks */ = { isa = PBXGroup; children = ( - 184958DA20AD8E8700F27C8D /* MicroBlink.bundle */, - 184958DB20AD8E8700F27C8D /* MicroBlink.framework */, + B4CCA03722AE4C9300C76715 /* Microblink.bundle */, + B4CCA03622AE4C9300C76715 /* Microblink.framework */, 3139C9361C32AE72005AC32C /* MobileCoreServices.framework */, 310E45E11C206DEB00B546BD /* CoreMedia.framework */, 310E45DF1C206DC100B546BD /* AudioToolbox.framework */, @@ -171,7 +171,7 @@ 310E45951C20612300B546BD = { CreatedOnToolsVersion = 7.2; DevelopmentTeam = CQTJWP89J7; - LastSwiftMigration = 0900; + LastSwiftMigration = 1020; }; }; }; @@ -180,6 +180,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -198,10 +199,10 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 184958DC20AD8E8700F27C8D /* MicroBlink.bundle in Resources */, 310E45A41C20612300B546BD /* LaunchScreen.storyboard in Resources */, 310E45A11C20612300B546BD /* Assets.xcassets in Resources */, B403EE7B20F4D17A00EE5235 /* license.txt in Resources */, + B4CCA03922AE4C9300C76715 /* Microblink.bundle in Resources */, 310E459F1C20612300B546BD /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -358,8 +359,7 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_SWIFT3_OBJC_INFERENCE = Default; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; }; name = Debug; }; @@ -375,8 +375,7 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_SWIFT3_OBJC_INFERENCE = Default; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; }; name = Release; }; diff --git a/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift/AppDelegate.swift b/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift/AppDelegate.swift index e7ba38a..76a4086 100755 --- a/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift/AppDelegate.swift +++ b/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift/AppDelegate.swift @@ -15,7 +15,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. // Valid until: 2019-07-10 diff --git a/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift/License/license.txt b/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift/License/license.txt index 4c74652..69fb25a 100644 Binary files a/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift/License/license.txt and b/Samples/BlinkInput-sample-Swift/BlinkInput-sample-Swift/License/license.txt differ diff --git a/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift.xcodeproj/project.pbxproj b/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift.xcodeproj/project.pbxproj index fb1a8bc..659a894 100644 --- a/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift.xcodeproj/project.pbxproj +++ b/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift.xcodeproj/project.pbxproj @@ -7,9 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - 184958E020AD8EBC00F27C8D /* MicroBlink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 184958DE20AD8EBC00F27C8D /* MicroBlink.bundle */; }; - 184958E120AD8EBC00F27C8D /* MicroBlink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 184958DF20AD8EBC00F27C8D /* MicroBlink.framework */; }; - 184958E220AD8EFF00F27C8D /* MicroBlink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 184958DF20AD8EBC00F27C8D /* MicroBlink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; A24E097A207B6348000AF21B /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A24E0979207B6348000AF21B /* AppDelegate.swift */; }; A24E097C207B6348000AF21B /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A24E097B207B6348000AF21B /* ViewController.swift */; }; A24E097F207B6348000AF21B /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A24E097D207B6348000AF21B /* Main.storyboard */; }; @@ -25,6 +22,9 @@ A24E099B207B63D4000AF21B /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A24E099A207B63D4000AF21B /* libiconv.tbd */; }; A24E09A4207B662F000AF21B /* CustomOverlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = A24E09A3207B662F000AF21B /* CustomOverlay.swift */; }; B403EE7E20F4D1DD00EE5235 /* license.txt in Resources */ = {isa = PBXBuildFile; fileRef = B403EE7D20F4D1DD00EE5235 /* license.txt */; }; + B4CCA03E22AE4D9600C76715 /* Microblink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B4CCA03C22AE4D9600C76715 /* Microblink.bundle */; }; + B4CCA04022AE4D9C00C76715 /* Microblink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA03D22AE4D9600C76715 /* Microblink.framework */; }; + B4CCA04122AE4D9C00C76715 /* Microblink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA03D22AE4D9600C76715 /* Microblink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -34,7 +34,7 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - 184958E220AD8EFF00F27C8D /* MicroBlink.framework in Embed Frameworks */, + B4CCA04122AE4D9C00C76715 /* Microblink.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -42,8 +42,6 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 184958DE20AD8EBC00F27C8D /* MicroBlink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = MicroBlink.bundle; path = ../../MicroBlink.bundle; sourceTree = ""; }; - 184958DF20AD8EBC00F27C8D /* MicroBlink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MicroBlink.framework; path = ../../MicroBlink.framework; sourceTree = ""; }; A24E0976207B6348000AF21B /* DeepOCR-sample-Swift.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "DeepOCR-sample-Swift.app"; sourceTree = BUILT_PRODUCTS_DIR; }; A24E0979207B6348000AF21B /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; A24E097B207B6348000AF21B /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; @@ -61,6 +59,8 @@ A24E099A207B63D4000AF21B /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; }; A24E09A3207B662F000AF21B /* CustomOverlay.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomOverlay.swift; sourceTree = ""; }; B403EE7D20F4D1DD00EE5235 /* license.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = license.txt; sourceTree = ""; }; + B4CCA03C22AE4D9600C76715 /* Microblink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Microblink.bundle; path = ../../Microblink.bundle; sourceTree = ""; }; + B4CCA03D22AE4D9600C76715 /* Microblink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Microblink.framework; path = ../../Microblink.framework; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -71,7 +71,7 @@ A24E099B207B63D4000AF21B /* libiconv.tbd in Frameworks */, A24E0999207B63CC000AF21B /* libc++.tbd in Frameworks */, A24E0997207B63BC000AF21B /* libz.tbd in Frameworks */, - 184958E120AD8EBC00F27C8D /* MicroBlink.framework in Frameworks */, + B4CCA04022AE4D9C00C76715 /* Microblink.framework in Frameworks */, A24E0995207B6380000AF21B /* MobileCoreServices.framework in Frameworks */, A24E0993207B6379000AF21B /* CoreMedia.framework in Frameworks */, A24E0991207B6374000AF21B /* AudioToolbox.framework in Frameworks */, @@ -118,8 +118,8 @@ A24E098B207B6364000AF21B /* Frameworks */ = { isa = PBXGroup; children = ( - 184958DE20AD8EBC00F27C8D /* MicroBlink.bundle */, - 184958DF20AD8EBC00F27C8D /* MicroBlink.framework */, + B4CCA03C22AE4D9600C76715 /* Microblink.bundle */, + B4CCA03D22AE4D9600C76715 /* Microblink.framework */, A24E0994207B6380000AF21B /* MobileCoreServices.framework */, A24E0992207B6379000AF21B /* CoreMedia.framework */, A24E0990207B6374000AF21B /* AudioToolbox.framework */, @@ -173,6 +173,7 @@ TargetAttributes = { A24E0975207B6348000AF21B = { CreatedOnToolsVersion = 9.3; + LastSwiftMigration = 1020; }; }; }; @@ -200,9 +201,9 @@ buildActionMask = 2147483647; files = ( B403EE7E20F4D1DD00EE5235 /* license.txt in Resources */, - 184958E020AD8EBC00F27C8D /* MicroBlink.bundle in Resources */, A24E0984207B634A000AF21B /* LaunchScreen.storyboard in Resources */, A24E0981207B634A000AF21B /* Assets.xcassets in Resources */, + B4CCA03E22AE4D9600C76715 /* Microblink.bundle in Resources */, A24E097F207B6348000AF21B /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -371,7 +372,7 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; }; name = Debug; @@ -391,7 +392,7 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; }; name = Release; diff --git a/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift/AppDelegate.swift b/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift/AppDelegate.swift index c14016e..23a999e 100644 --- a/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift/AppDelegate.swift +++ b/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift/AppDelegate.swift @@ -15,7 +15,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. // Valid until: 2019-07-10 diff --git a/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift/License/license.txt b/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift/License/license.txt index 4c74652..69fb25a 100644 Binary files a/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift/License/license.txt and b/Samples/DeepOCR-sample-Swift/DeepOCR-sample-Swift/License/license.txt differ diff --git a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift.xcodeproj/project.pbxproj b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift.xcodeproj/project.pbxproj index 43178c3..cfab86e 100644 --- a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift.xcodeproj/project.pbxproj +++ b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift.xcodeproj/project.pbxproj @@ -7,9 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - 184958E520AD8F4800F27C8D /* MicroBlink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 184958E320AD8F4800F27C8D /* MicroBlink.bundle */; }; - 184958E620AD8F4800F27C8D /* MicroBlink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 184958E420AD8F4800F27C8D /* MicroBlink.framework */; }; - 184958E720AD8F5600F27C8D /* MicroBlink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 184958E420AD8F4800F27C8D /* MicroBlink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; A207A4A320A485DF002AEDB0 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A4A220A485DF002AEDB0 /* AppDelegate.swift */; }; A207A4A520A485DF002AEDB0 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A4A420A485DF002AEDB0 /* ViewController.swift */; }; A207A4A820A485DF002AEDB0 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A207A4A620A485DF002AEDB0 /* Main.storyboard */; }; @@ -24,6 +21,9 @@ A207A4C220A4863E002AEDB0 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A207A4C120A4863E002AEDB0 /* libz.tbd */; }; A207A4CF20A49237002AEDB0 /* MBCameraViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A4CE20A49237002AEDB0 /* MBCameraViewController.swift */; }; B403EE8120F4D2B700EE5235 /* license.txt in Resources */ = {isa = PBXBuildFile; fileRef = B403EE8020F4D2B700EE5235 /* license.txt */; }; + B4CCA04522AE4DFB00C76715 /* Microblink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B4CCA04322AE4DFB00C76715 /* Microblink.bundle */; }; + B4CCA04622AE4E0000C76715 /* Microblink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA04222AE4DFB00C76715 /* Microblink.framework */; }; + B4CCA04722AE4E0000C76715 /* Microblink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA04222AE4DFB00C76715 /* Microblink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -33,7 +33,7 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - 184958E720AD8F5600F27C8D /* MicroBlink.framework in Embed Frameworks */, + B4CCA04722AE4E0000C76715 /* Microblink.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -41,8 +41,6 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 184958E320AD8F4800F27C8D /* MicroBlink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = MicroBlink.bundle; path = ../../MicroBlink.bundle; sourceTree = ""; }; - 184958E420AD8F4800F27C8D /* MicroBlink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MicroBlink.framework; path = ../../MicroBlink.framework; sourceTree = ""; }; A207A49F20A485DF002AEDB0 /* DirectAPI-sample-Swift.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "DirectAPI-sample-Swift.app"; sourceTree = BUILT_PRODUCTS_DIR; }; A207A4A220A485DF002AEDB0 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; A207A4A420A485DF002AEDB0 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; @@ -59,6 +57,8 @@ A207A4C120A4863E002AEDB0 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; A207A4CE20A49237002AEDB0 /* MBCameraViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MBCameraViewController.swift; sourceTree = ""; }; B403EE8020F4D2B700EE5235 /* license.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = license.txt; sourceTree = ""; }; + B4CCA04222AE4DFB00C76715 /* Microblink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Microblink.framework; path = ../../Microblink.framework; sourceTree = ""; }; + B4CCA04322AE4DFB00C76715 /* Microblink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Microblink.bundle; path = ../../Microblink.bundle; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -66,9 +66,9 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 184958E620AD8F4800F27C8D /* MicroBlink.framework in Frameworks */, A207A4BC20A4861D002AEDB0 /* CoreMedia.framework in Frameworks */, A207A4BA20A48616002AEDB0 /* AudioToolbox.framework in Frameworks */, + B4CCA04622AE4E0000C76715 /* Microblink.framework in Frameworks */, A207A4B820A4860F002AEDB0 /* AVFoundation.framework in Frameworks */, A207A4B620A4860A002AEDB0 /* Accelerate.framework in Frameworks */, A207A4C220A4863E002AEDB0 /* libz.tbd in Frameworks */, @@ -115,8 +115,8 @@ A207A4B420A4860A002AEDB0 /* Frameworks */ = { isa = PBXGroup; children = ( - 184958E320AD8F4800F27C8D /* MicroBlink.bundle */, - 184958E420AD8F4800F27C8D /* MicroBlink.framework */, + B4CCA04322AE4DFB00C76715 /* Microblink.bundle */, + B4CCA04222AE4DFB00C76715 /* Microblink.framework */, A207A4BB20A4861C002AEDB0 /* CoreMedia.framework */, A207A4B920A48616002AEDB0 /* AudioToolbox.framework */, A207A4B720A4860F002AEDB0 /* AVFoundation.framework */, @@ -169,6 +169,7 @@ TargetAttributes = { A207A49E20A485DF002AEDB0 = { CreatedOnToolsVersion = 9.3; + LastSwiftMigration = 1020; }; }; }; @@ -195,10 +196,10 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 184958E520AD8F4800F27C8D /* MicroBlink.bundle in Resources */, B403EE8120F4D2B700EE5235 /* license.txt in Resources */, A207A4AD20A485E0002AEDB0 /* LaunchScreen.storyboard in Resources */, A207A4AA20A485E0002AEDB0 /* Assets.xcassets in Resources */, + B4CCA04522AE4DFB00C76715 /* Microblink.bundle in Resources */, A207A4A820A485DF002AEDB0 /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -366,7 +367,7 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; @@ -385,7 +386,7 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Release; diff --git a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/AppDelegate.swift b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/AppDelegate.swift index 5fefeef..9659370 100644 --- a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/AppDelegate.swift +++ b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/AppDelegate.swift @@ -15,7 +15,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. // Valid until: 2019-07-10 diff --git a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/License/license.txt b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/License/license.txt index 4c74652..69fb25a 100644 Binary files a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/License/license.txt and b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/License/license.txt differ diff --git a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/MBCameraViewController.swift b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/MBCameraViewController.swift index 6dcda21..8e2adc4 100644 --- a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/MBCameraViewController.swift +++ b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/MBCameraViewController.swift @@ -56,10 +56,10 @@ class MBCameraViewController: UIViewController, AVCaptureAudioDataOutputSampleBu } func addNotificationObserver() { - NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.appplicationWillResignActive(_:)), name: .UIApplicationWillResignActive, object: nil) - NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.appplicationWillEnterForeground(_:)), name: .UIApplicationWillEnterForeground, object: nil) - NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.applicationDidEnterBackgroundNotification(_:)), name: .UIApplicationDidEnterBackground, object: nil) - NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.applicationWillTerminateNotification(_:)), name: .UIApplicationWillTerminate, object: nil) + NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.appplicationWillResignActive(_:)), name: UIApplication.willResignActiveNotification, object: nil) + NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.appplicationWillEnterForeground(_:)), name: UIApplication.willEnterForegroundNotification, object: nil) + NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.applicationDidEnterBackgroundNotification(_:)), name: UIApplication.didEnterBackgroundNotification, object: nil) + NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.applicationWillTerminateNotification(_:)), name: UIApplication.willTerminateNotification, object: nil) NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.captureSessionDidStartRunning(_:)), name: .AVCaptureSessionDidStartRunning, object: nil) NotificationCenter.default.addObserver(self, selector :#selector(MBCameraViewController.captureSessionDidStopRunning(_:)), name: .AVCaptureSessionDidStopRunning, object: nil) NotificationCenter.default.addObserver(self, selector: #selector(MBCameraViewController.captureSessionRuntimeErrorNotification(_:)), name: .AVCaptureSessionRuntimeError, object: nil) @@ -188,7 +188,7 @@ class MBCameraViewController: UIViewController, AVCaptureAudioDataOutputSampleBu DispatchQueue.main.async(execute: {() -> Void in let title = "PDF417" // Save the string representation of the code - let message = self.pdf417Recognizer?.result.stringData() + let message = self.pdf417Recognizer?.result.stringData let alertController = UIAlertController(title: title, message: message, preferredStyle: .alert) let okAction = UIAlertAction(title: "OK", style: .default, handler: {(_ action: UIAlertAction) -> Void in self.dismiss(animated: true) {() -> Void in } diff --git a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/ViewController.swift b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/ViewController.swift index 04068d3..24a5004 100644 --- a/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/ViewController.swift +++ b/Samples/DirectAPI-sample-Swift/DirectAPI-sample-Swift/ViewController.swift @@ -42,16 +42,17 @@ class ViewController: UIViewController, UIImagePickerControllerDelegate, UINavig } - func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) { - let mediaType = info[UIImagePickerControllerMediaType] as? String - // Handle a still image capture - if CFStringCompare(mediaType as CFString?, kUTTypeImage, CFStringCompareFlags(rawValue: 0)) == .compareEqualTo { - let originalImage = info[UIImagePickerControllerOriginalImage] as? UIImage + func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) { + let mediaType = info[UIImagePickerController.InfoKey.mediaType] as? String + + if CFStringCompare(mediaType as CFString?, kUTTypeImage, CFStringCompareFlags(rawValue: 9)) == .compareEqualTo { + let originalImage = info[UIImagePickerController.InfoKey.originalImage] as? UIImage processImageRunner(originalImage) } - picker.dismiss(animated: true) {() -> Void in } + + picker.dismiss(animated: true, completion: nil) } - + func setupRecognizerRunner() { var recognizers = [MBRecognizer]() pdf417Recognizer = MBPdf417Recognizer() @@ -78,7 +79,7 @@ class ViewController: UIViewController, UIImagePickerControllerDelegate, UINavig DispatchQueue.main.async(execute: {() -> Void in let title = "PDF417" // Save the string representation of the code - let message = self.pdf417Recognizer?.result.stringData() + let message = self.pdf417Recognizer?.result.stringData let alertController = UIAlertController(title: title, message: message, preferredStyle: .alert) let okAction = UIAlertAction(title: "OK", style: .default, handler: {(_ action: UIAlertAction) -> Void in self.dismiss(animated: true) {() -> Void in } @@ -88,4 +89,3 @@ class ViewController: UIViewController, UIImagePickerControllerDelegate, UINavig }) } } - diff --git a/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift.xcodeproj/project.pbxproj b/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift.xcodeproj/project.pbxproj index dac73ad..707b5e0 100644 --- a/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift.xcodeproj/project.pbxproj +++ b/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift.xcodeproj/project.pbxproj @@ -7,9 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - 184958D820AD8E4700F27C8D /* MicroBlink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 184958D620AD8E4600F27C8D /* MicroBlink.bundle */; }; - 184958D920AD8E4700F27C8D /* MicroBlink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 184958D720AD8E4700F27C8D /* MicroBlink.framework */; }; - 184958E920AD90B900F27C8D /* MicroBlink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 184958D720AD8E4700F27C8D /* MicroBlink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; A207A42F20A44199002AEDB0 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A42E20A44199002AEDB0 /* AppDelegate.swift */; }; A207A43120A44199002AEDB0 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A43020A44199002AEDB0 /* ViewController.swift */; }; A207A43420A44199002AEDB0 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A207A43220A44199002AEDB0 /* Main.storyboard */; }; @@ -25,6 +22,9 @@ A207A45020A44211002AEDB0 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A207A44F20A44211002AEDB0 /* libz.tbd */; }; A207A45B20A4467B002AEDB0 /* MBGenericPreset.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A45A20A4467B002AEDB0 /* MBGenericPreset.swift */; }; B403EE8420F4D38400EE5235 /* license.txt in Resources */ = {isa = PBXBuildFile; fileRef = B403EE8320F4D38400EE5235 /* license.txt */; }; + B4CCA04A22AE4EA700C76715 /* Microblink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B4CCA04822AE4EA700C76715 /* Microblink.bundle */; }; + B4CCA04C22AE4EAD00C76715 /* Microblink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA04922AE4EA700C76715 /* Microblink.framework */; }; + B4CCA04D22AE4EAD00C76715 /* Microblink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA04922AE4EA700C76715 /* Microblink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -34,7 +34,7 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - 184958E920AD90B900F27C8D /* MicroBlink.framework in Embed Frameworks */, + B4CCA04D22AE4EAD00C76715 /* Microblink.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -42,8 +42,6 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 184958D620AD8E4600F27C8D /* MicroBlink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = MicroBlink.bundle; path = ../../MicroBlink.bundle; sourceTree = ""; }; - 184958D720AD8E4700F27C8D /* MicroBlink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MicroBlink.framework; path = ../../MicroBlink.framework; sourceTree = ""; }; A207A42B20A44199002AEDB0 /* FieldByField-sample-Swift.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "FieldByField-sample-Swift.app"; sourceTree = BUILT_PRODUCTS_DIR; }; A207A42E20A44199002AEDB0 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; A207A43020A44199002AEDB0 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; @@ -61,6 +59,8 @@ A207A44F20A44211002AEDB0 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; A207A45A20A4467B002AEDB0 /* MBGenericPreset.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MBGenericPreset.swift; sourceTree = ""; }; B403EE8320F4D38400EE5235 /* license.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = license.txt; sourceTree = ""; }; + B4CCA04822AE4EA700C76715 /* Microblink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Microblink.bundle; path = ../../Microblink.bundle; sourceTree = ""; }; + B4CCA04922AE4EA700C76715 /* Microblink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Microblink.framework; path = ../../Microblink.framework; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -71,7 +71,7 @@ A207A45020A44211002AEDB0 /* libz.tbd in Frameworks */, A207A44E20A44207002AEDB0 /* libc++.tbd in Frameworks */, A207A44C20A441F9002AEDB0 /* libiconv.tbd in Frameworks */, - 184958D920AD8E4700F27C8D /* MicroBlink.framework in Frameworks */, + B4CCA04C22AE4EAD00C76715 /* Microblink.framework in Frameworks */, A207A44A20A441E5002AEDB0 /* MobileCoreServices.framework in Frameworks */, A207A44820A441D7002AEDB0 /* CoreMedia.framework in Frameworks */, A207A44620A441D1002AEDB0 /* AudioToolbox.framework in Frameworks */, @@ -118,8 +118,8 @@ A207A44020A441BE002AEDB0 /* Frameworks */ = { isa = PBXGroup; children = ( - 184958D620AD8E4600F27C8D /* MicroBlink.bundle */, - 184958D720AD8E4700F27C8D /* MicroBlink.framework */, + B4CCA04822AE4EA700C76715 /* Microblink.bundle */, + B4CCA04922AE4EA700C76715 /* Microblink.framework */, A207A44920A441E5002AEDB0 /* MobileCoreServices.framework */, A207A44720A441D7002AEDB0 /* CoreMedia.framework */, A207A44520A441D1002AEDB0 /* AudioToolbox.framework */, @@ -173,6 +173,7 @@ TargetAttributes = { A207A42A20A44199002AEDB0 = { CreatedOnToolsVersion = 9.3; + LastSwiftMigration = 1020; }; }; }; @@ -199,10 +200,10 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 184958D820AD8E4700F27C8D /* MicroBlink.bundle in Resources */, A207A43920A4419A002AEDB0 /* LaunchScreen.storyboard in Resources */, A207A43620A4419A002AEDB0 /* Assets.xcassets in Resources */, A207A43420A44199002AEDB0 /* Main.storyboard in Resources */, + B4CCA04A22AE4EA700C76715 /* Microblink.bundle in Resources */, B403EE8420F4D38400EE5235 /* license.txt in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -370,7 +371,7 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; @@ -389,7 +390,7 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Release; diff --git a/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/AppDelegate.swift b/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/AppDelegate.swift index 33a0647..68fc8fc 100644 --- a/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/AppDelegate.swift +++ b/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/AppDelegate.swift @@ -15,7 +15,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. // Valid until: 2019-07-10 diff --git a/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/License/license.txt b/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/License/license.txt index 4c74652..69fb25a 100644 Binary files a/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/License/license.txt and b/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/License/license.txt differ diff --git a/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/ViewController.swift b/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/ViewController.swift index 38a21c8..7b71085 100644 --- a/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/ViewController.swift +++ b/Samples/FieldByField-sample-Swift/FieldByField-sample-Swift/ViewController.swift @@ -55,7 +55,7 @@ extension ViewController : MBFieldByFieldOverlayViewControllerDelegate { description += "\(key): \(value)\n" } - let alert = UIAlertController(title: "Field by field Result", message: "\(description)", preferredStyle: UIAlertControllerStyle.alert) + let alert = UIAlertController(title: "Field by field Result", message: "\(description)", preferredStyle: UIAlertController.Style.alert) alert.addAction(UIAlertAction(title: "OK", style: .default, handler: { action in self.dismiss(animated: true, completion: nil) })) diff --git a/Samples/Templating-sample-swift/Templating-sample-swift.xcodeproj/project.pbxproj b/Samples/Templating-sample-swift/Templating-sample-swift.xcodeproj/project.pbxproj index 45a7b26..0abb234 100644 --- a/Samples/Templating-sample-swift/Templating-sample-swift.xcodeproj/project.pbxproj +++ b/Samples/Templating-sample-swift/Templating-sample-swift.xcodeproj/project.pbxproj @@ -7,9 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - 184958F120AD917500F27C8D /* MicroBlink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 184958EF20AD917500F27C8D /* MicroBlink.bundle */; }; - 184958F220AD917500F27C8D /* MicroBlink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 184958F020AD917500F27C8D /* MicroBlink.framework */; }; - 184958F320AD917800F27C8D /* MicroBlink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 184958F020AD917500F27C8D /* MicroBlink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; A207A46920A45C7A002AEDB0 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A46820A45C7A002AEDB0 /* AppDelegate.swift */; }; A207A46B20A45C7A002AEDB0 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A46A20A45C7A002AEDB0 /* ViewController.swift */; }; A207A46E20A45C7A002AEDB0 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A207A46C20A45C7A002AEDB0 /* Main.storyboard */; }; @@ -25,6 +22,9 @@ A207A49320A45E16002AEDB0 /* MBCroatianIDTemplateUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A49220A45E16002AEDB0 /* MBCroatianIDTemplateUtils.swift */; }; A207A49520A47A67002AEDB0 /* MBCroatianIDFrontTemplateRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A207A49420A47A67002AEDB0 /* MBCroatianIDFrontTemplateRecognizer.swift */; }; B403EE8A20F4D4EC00EE5235 /* license.txt in Resources */ = {isa = PBXBuildFile; fileRef = B403EE8920F4D4EC00EE5235 /* license.txt */; }; + B4CCA05722AE4F5800C76715 /* Microblink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B4CCA05522AE4F5800C76715 /* Microblink.bundle */; }; + B4CCA05822AE4F5D00C76715 /* Microblink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA05422AE4F5800C76715 /* Microblink.framework */; }; + B4CCA05922AE4F5D00C76715 /* Microblink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA05422AE4F5800C76715 /* Microblink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -34,7 +34,7 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - 184958F320AD917800F27C8D /* MicroBlink.framework in Embed Frameworks */, + B4CCA05922AE4F5D00C76715 /* Microblink.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -42,8 +42,6 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 184958EF20AD917500F27C8D /* MicroBlink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = MicroBlink.bundle; path = ../../MicroBlink.bundle; sourceTree = ""; }; - 184958F020AD917500F27C8D /* MicroBlink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MicroBlink.framework; path = ../../MicroBlink.framework; sourceTree = ""; }; A207A46520A45C7A002AEDB0 /* Templating-sample-swift.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Templating-sample-swift.app"; sourceTree = BUILT_PRODUCTS_DIR; }; A207A46820A45C7A002AEDB0 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; A207A46A20A45C7A002AEDB0 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; @@ -61,6 +59,8 @@ A207A49220A45E16002AEDB0 /* MBCroatianIDTemplateUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MBCroatianIDTemplateUtils.swift; sourceTree = ""; }; A207A49420A47A67002AEDB0 /* MBCroatianIDFrontTemplateRecognizer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MBCroatianIDFrontTemplateRecognizer.swift; sourceTree = ""; }; B403EE8920F4D4EC00EE5235 /* license.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = license.txt; sourceTree = ""; }; + B4CCA05422AE4F5800C76715 /* Microblink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Microblink.framework; path = ../../Microblink.framework; sourceTree = ""; }; + B4CCA05522AE4F5800C76715 /* Microblink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Microblink.bundle; path = ../../Microblink.bundle; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -70,12 +70,12 @@ files = ( A207A48820A45D32002AEDB0 /* libz.tbd in Frameworks */, A207A48620A45D2C002AEDB0 /* libiconv.tbd in Frameworks */, - 184958F220AD917500F27C8D /* MicroBlink.framework in Frameworks */, A207A48420A45D26002AEDB0 /* libc++.tbd in Frameworks */, A207A48220A45D1D002AEDB0 /* AudioToolbox.framework in Frameworks */, A207A48020A45D17002AEDB0 /* Accelerate.framework in Frameworks */, A207A47E20A45D0B002AEDB0 /* CoreMedia.framework in Frameworks */, A207A47C20A45D06002AEDB0 /* AVFoundation.framework in Frameworks */, + B4CCA05822AE4F5D00C76715 /* Microblink.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -121,8 +121,8 @@ A207A48720A45D32002AEDB0 /* libz.tbd */, A207A48520A45D2C002AEDB0 /* libiconv.tbd */, A207A48320A45D26002AEDB0 /* libc++.tbd */, - 184958EF20AD917500F27C8D /* MicroBlink.bundle */, - 184958F020AD917500F27C8D /* MicroBlink.framework */, + B4CCA05522AE4F5800C76715 /* Microblink.bundle */, + B4CCA05422AE4F5800C76715 /* Microblink.framework */, A207A48120A45D1D002AEDB0 /* AudioToolbox.framework */, A207A47F20A45D17002AEDB0 /* Accelerate.framework */, A207A47D20A45D0B002AEDB0 /* CoreMedia.framework */, @@ -172,6 +172,7 @@ TargetAttributes = { A207A46420A45C7A002AEDB0 = { CreatedOnToolsVersion = 9.3; + LastSwiftMigration = 1020; }; }; }; @@ -198,10 +199,10 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 184958F120AD917500F27C8D /* MicroBlink.bundle in Resources */, B403EE8A20F4D4EC00EE5235 /* license.txt in Resources */, A207A47320A45C7C002AEDB0 /* LaunchScreen.storyboard in Resources */, A207A47020A45C7C002AEDB0 /* Assets.xcassets in Resources */, + B4CCA05722AE4F5800C76715 /* Microblink.bundle in Resources */, A207A46E20A45C7A002AEDB0 /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -371,7 +372,7 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; @@ -391,7 +392,7 @@ ); PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Release; diff --git a/Samples/Templating-sample-swift/Templating-sample-swift/AppDelegate.swift b/Samples/Templating-sample-swift/Templating-sample-swift/AppDelegate.swift index 459ec08..00435c3 100644 --- a/Samples/Templating-sample-swift/Templating-sample-swift/AppDelegate.swift +++ b/Samples/Templating-sample-swift/Templating-sample-swift/AppDelegate.swift @@ -15,7 +15,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? - func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. // Valid until: 2019-07-10 diff --git a/Samples/Templating-sample-swift/Templating-sample-swift/License/license.txt b/Samples/Templating-sample-swift/Templating-sample-swift/License/license.txt index 4c74652..69fb25a 100644 Binary files a/Samples/Templating-sample-swift/Templating-sample-swift/License/license.txt and b/Samples/Templating-sample-swift/Templating-sample-swift/License/license.txt differ diff --git a/Samples/Templating-sample-swift/Templating-sample-swift/MBCroatianIDFrontTemplateRecognizer.swift b/Samples/Templating-sample-swift/Templating-sample-swift/MBCroatianIDFrontTemplateRecognizer.swift index 8cd3556..90b940f 100644 --- a/Samples/Templating-sample-swift/Templating-sample-swift/MBCroatianIDFrontTemplateRecognizer.swift +++ b/Samples/Templating-sample-swift/Templating-sample-swift/MBCroatianIDFrontTemplateRecognizer.swift @@ -132,7 +132,6 @@ class MBCroatianIDFrontTemplateRecognizer : NSObject { citizenshipParser?.endWithWhitespace = true citizenshipParser?.startWithWhitespace = true oldDocumentNumberParser = MBRegexParser(regex: "\\d{9}") - oldDocumentNumberParser?.ocrEngineOptions.minimalLineHeight = 35 neDocumentNumberParser = oldDocumentNumberParser?.copy() as? MBRegexParser dateOfBirthParser = MBDateParser() diff --git a/Samples/pdf417-sample-Swift/pdf417-sample-Swift.xcodeproj/project.pbxproj b/Samples/pdf417-sample-Swift/pdf417-sample-Swift.xcodeproj/project.pbxproj index f6670a2..79cede9 100755 --- a/Samples/pdf417-sample-Swift/pdf417-sample-Swift.xcodeproj/project.pbxproj +++ b/Samples/pdf417-sample-Swift/pdf417-sample-Swift.xcodeproj/project.pbxproj @@ -7,9 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - 184958EC20AD90F000F27C8D /* MicroBlink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 184958EA20AD90F000F27C8D /* MicroBlink.bundle */; }; - 184958ED20AD90F000F27C8D /* MicroBlink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 184958EB20AD90F000F27C8D /* MicroBlink.framework */; }; - 184958EE20AD912100F27C8D /* MicroBlink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 184958EB20AD90F000F27C8D /* MicroBlink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 3139C81B1C22B2AC005AC32C /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3139C81A1C22B2AC005AC32C /* AppDelegate.swift */; }; 3139C81D1C22B2AC005AC32C /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3139C81C1C22B2AC005AC32C /* ViewController.swift */; }; 3139C8201C22B2AC005AC32C /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3139C81E1C22B2AC005AC32C /* Main.storyboard */; }; @@ -24,6 +21,9 @@ A288D47B2073B5F20042A45F /* CustomOverlay.swift in Sources */ = {isa = PBXBuildFile; fileRef = A288D47A2073B5F20042A45F /* CustomOverlay.swift */; }; A2FE137F1F75106F00C6F1EA /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A2FE137E1F75106F00C6F1EA /* libz.tbd */; }; B403EE8720F4D48200EE5235 /* license.txt in Resources */ = {isa = PBXBuildFile; fileRef = B403EE8620F4D48200EE5235 /* license.txt */; }; + B4CCA05022AE4EEA00C76715 /* Microblink.bundle in Resources */ = {isa = PBXBuildFile; fileRef = B4CCA04E22AE4EEA00C76715 /* Microblink.bundle */; }; + B4CCA05222AE4EEE00C76715 /* Microblink.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA04F22AE4EEA00C76715 /* Microblink.framework */; }; + B4CCA05322AE4EEE00C76715 /* Microblink.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = B4CCA04F22AE4EEA00C76715 /* Microblink.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -33,7 +33,7 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - 184958EE20AD912100F27C8D /* MicroBlink.framework in Embed Frameworks */, + B4CCA05322AE4EEE00C76715 /* Microblink.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -41,8 +41,6 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 184958EA20AD90F000F27C8D /* MicroBlink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = MicroBlink.bundle; path = ../../MicroBlink.bundle; sourceTree = ""; }; - 184958EB20AD90F000F27C8D /* MicroBlink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MicroBlink.framework; path = ../../MicroBlink.framework; sourceTree = ""; }; 3139C8171C22B2AC005AC32C /* pdf417-sample-Swift.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "pdf417-sample-Swift.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 3139C81A1C22B2AC005AC32C /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 3139C81C1C22B2AC005AC32C /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; @@ -59,6 +57,8 @@ A288D47A2073B5F20042A45F /* CustomOverlay.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomOverlay.swift; sourceTree = ""; }; A2FE137E1F75106F00C6F1EA /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; B403EE8620F4D48200EE5235 /* license.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = license.txt; sourceTree = ""; }; + B4CCA04E22AE4EEA00C76715 /* Microblink.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Microblink.bundle; path = ../../Microblink.bundle; sourceTree = ""; }; + B4CCA04F22AE4EEA00C76715 /* Microblink.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Microblink.framework; path = ../../Microblink.framework; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -68,7 +68,7 @@ files = ( A2FE137F1F75106F00C6F1EA /* libz.tbd in Frameworks */, 3139C8381C22B33E005AC32C /* libiconv.tbd in Frameworks */, - 184958ED20AD90F000F27C8D /* MicroBlink.framework in Frameworks */, + B4CCA05222AE4EEE00C76715 /* Microblink.framework in Frameworks */, 3139C8361C22B338005AC32C /* libc++.tbd in Frameworks */, 3139C8341C22B333005AC32C /* AudioToolbox.framework in Frameworks */, 3139C8321C22B324005AC32C /* CoreMedia.framework in Frameworks */, @@ -118,8 +118,8 @@ A2FE137E1F75106F00C6F1EA /* libz.tbd */, 3139C8371C22B33E005AC32C /* libiconv.tbd */, 3139C8351C22B338005AC32C /* libc++.tbd */, - 184958EA20AD90F000F27C8D /* MicroBlink.bundle */, - 184958EB20AD90F000F27C8D /* MicroBlink.framework */, + B4CCA04E22AE4EEA00C76715 /* Microblink.bundle */, + B4CCA04F22AE4EEA00C76715 /* Microblink.framework */, 3139C8331C22B333005AC32C /* AudioToolbox.framework */, 3139C8311C22B324005AC32C /* CoreMedia.framework */, 3139C82F1C22B31D005AC32C /* AVFoundation.framework */, @@ -171,7 +171,7 @@ 3139C8161C22B2AC005AC32C = { CreatedOnToolsVersion = 7.2; DevelopmentTeam = CQTJWP89J7; - LastSwiftMigration = 0900; + LastSwiftMigration = 1020; }; }; }; @@ -180,6 +180,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -198,10 +199,10 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 184958EC20AD90F000F27C8D /* MicroBlink.bundle in Resources */, 3139C8251C22B2AC005AC32C /* LaunchScreen.storyboard in Resources */, B403EE8720F4D48200EE5235 /* license.txt in Resources */, 3139C8221C22B2AC005AC32C /* Assets.xcassets in Resources */, + B4CCA05022AE4EEA00C76715 /* Microblink.bundle in Resources */, 3139C8201C22B2AC005AC32C /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -374,8 +375,7 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_SWIFT3_OBJC_INFERENCE = Default; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; }; name = Debug; }; @@ -390,8 +390,7 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.microblink.blinkinput.sample; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_SWIFT3_OBJC_INFERENCE = Default; - SWIFT_VERSION = 4.0; + SWIFT_VERSION = 5.0; }; name = Release; }; diff --git a/Samples/pdf417-sample-Swift/pdf417-sample-Swift/CustomOverlay.swift b/Samples/pdf417-sample-Swift/pdf417-sample-Swift/CustomOverlay.swift index c748ec7..86ffe74 100644 --- a/Samples/pdf417-sample-Swift/pdf417-sample-Swift/CustomOverlay.swift +++ b/Samples/pdf417-sample-Swift/pdf417-sample-Swift/CustomOverlay.swift @@ -35,19 +35,19 @@ class CustomOverlay: MBCustomOverlayViewController, MBScanningRecognizerRunnerVi if recognizer is MBBarcodeRecognizer { let barcodeRecognizer = recognizer as? MBBarcodeRecognizer title = "QR Code" - message = (barcodeRecognizer?.result.stringData())! + message = (barcodeRecognizer?.result.stringData)! } else if recognizer is MBPdf417Recognizer { let pdf417Recognizer = recognizer as? MBPdf417Recognizer title = "PDF417" - message = (pdf417Recognizer?.result.stringData())! + message = (pdf417Recognizer?.result.stringData)! } } } - let alertController: UIAlertController = UIAlertController.init(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert) + let alertController: UIAlertController = UIAlertController.init(title: title, message: message, preferredStyle: UIAlertController.Style.alert) - let okAction: UIAlertAction = UIAlertAction.init(title: "OK", style: UIAlertActionStyle.default, + let okAction: UIAlertAction = UIAlertAction.init(title: "OK", style: UIAlertAction.Style.default, handler: { (action) -> Void in self.dismiss(animated: true, completion: nil) }) diff --git a/Samples/pdf417-sample-Swift/pdf417-sample-Swift/License/license.txt b/Samples/pdf417-sample-Swift/pdf417-sample-Swift/License/license.txt index 4c74652..69fb25a 100644 Binary files a/Samples/pdf417-sample-Swift/pdf417-sample-Swift/License/license.txt and b/Samples/pdf417-sample-Swift/pdf417-sample-Swift/License/license.txt differ diff --git a/Samples/pdf417-sample-Swift/pdf417-sample-Swift/ViewController.swift b/Samples/pdf417-sample-Swift/pdf417-sample-Swift/ViewController.swift index 1e19cf6..ffe884e 100644 --- a/Samples/pdf417-sample-Swift/pdf417-sample-Swift/ViewController.swift +++ b/Samples/pdf417-sample-Swift/pdf417-sample-Swift/ViewController.swift @@ -25,7 +25,7 @@ class ViewController: UIViewController { /** Create barcode recognizer */ self.barcodeRecognizer = MBBarcodeRecognizer() - self.barcodeRecognizer?.scanQR = true + self.barcodeRecognizer?.scanQrCode = true self.pdf417Recognizer = MBPdf417Recognizer() @@ -49,7 +49,7 @@ class ViewController: UIViewController { /** Create barcode recognizer */ self.barcodeRecognizer = MBBarcodeRecognizer() - self.barcodeRecognizer?.scanQR = true + self.barcodeRecognizer?.scanQrCode = true self.pdf417Recognizer = MBPdf417Recognizer() @@ -84,22 +84,22 @@ extension ViewController: MBBarcodeOverlayViewControllerDelegate { title = "QR Code" // Save the string representation of the code - message = self.barcodeRecognizer!.result.stringData() + message = self.barcodeRecognizer!.result.stringData! } else if (self.pdf417Recognizer!.result.resultState == MBRecognizerResultState.valid) { title = "PDF417" // Save the string representation of the code - message = self.pdf417Recognizer!.result.stringData() + message = self.pdf417Recognizer!.result.stringData! } /** Needs to be called on main thread beacuse everything prior is on background thread */ DispatchQueue.main.async { // present the alert view with scanned results - let alertController: UIAlertController = UIAlertController.init(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert) + let alertController: UIAlertController = UIAlertController.init(title: title, message: message, preferredStyle: UIAlertController.Style.alert) - let okAction: UIAlertAction = UIAlertAction.init(title: "OK", style: UIAlertActionStyle.default, + let okAction: UIAlertAction = UIAlertAction.init(title: "OK", style: UIAlertAction.Style.default, handler: { (action) -> Void in self.dismiss(animated: true, completion: nil) }) diff --git a/Transition guide.md b/Transition guide.md index 621c0ce..313f103 100644 --- a/Transition guide.md +++ b/Transition guide.md @@ -1,3 +1,11 @@ +### Transition to 4.1.0 + +- renamed MicroBlink.framework to Microblink.framework + +- renamed MicroBlink.bundle to Microblink.bundle + +- `isScanningUnsupportedForCameraType:` is now class method of `MBMicroblinkSDK` + ### Transition to 2.3.0 - Since Microblink.framework is a dynamic framework, you also need to **add it to embedded binaries section in General settings of your target.** @@ -167,4 +175,4 @@ with - Main header of the framework was renamed to ``. Change all references to previous header with the new one. -- method `[PPCoordinator isPhotoPaySupported]` was renamed to `[PPCoordinator isScanningSupported]`. Change all occurances of the method name. \ No newline at end of file +- method `[PPCoordinator isPhotoPaySupported]` was renamed to `[PPCoordinator isScanningSupported]`. Change all occurances of the method name. diff --git a/buildCommit.txt b/buildCommit.txt index afb4b82..bc91f7e 100644 --- a/buildCommit.txt +++ b/buildCommit.txt @@ -1 +1 @@ -Built from core repository commit 956df4d6c30e0bf84362fbfb5f192c9cacaa4780 +Built from core repository commit 14e03599f8b9dc4cb5eb41c2485f1037c8f35480 diff --git a/docs/Classes.html b/docs/Classes.html index 02fa1a4..3c6e48b 100644 --- a/docs/Classes.html +++ b/docs/Classes.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -831,12 +840,12 @@

Declaration

Objective-C


-@interface MBBarcodeOverlayViewController : MBBaseOverlayViewController
+@interface MBBarcodeOverlayViewController : MBBaseOverlayViewController

Swift

-
class MBBarcodeOverlayViewController : MBBaseOverlayViewController
+
class MBBarcodeOverlayViewController : MBBaseOverlayViewController
@@ -1055,6 +1064,7 @@

Declaration

Common base class for default overlay view controllers

+ See more

Declaration

@@ -1946,13 +1956,12 @@

Declaration

Objective-C


-@interface MBDotsResultSubview
-    : MBSubview <MBPointDetectorSubview, MBOcrLayoutSubview>
+@interface MBDotsResultSubview : MBSubview <MBPointDetectorSubview>

Swift

-
class MBDotsResultSubview : MBSubview, MBPointDetectorSubview, MBOcrLayoutSubview
+
class MBDotsResultSubview : MBSubview, MBPointDetectorSubview
@@ -2269,6 +2278,45 @@

Declaration

+
+
    +
  • +
    + + + + MBGlareStatusSubview + +
    +
    +
    +
    +
    +
    +

    Overlay subview presenting the status of glare detection. +The subview is presented as translucent view with detection status label in the center of ID Card View Finder View

    + + See more +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    
    +@interface MBGlareStatusSubview : MBSubview
    + +
    +
    +

    Swift

    +
    class MBGlareStatusSubview : MBSubview
    + +
    +
    +
    +
    +
  • +
+
  • @@ -2595,11 +2643,10 @@

    Declaration

    /** Returns true if the help was already shown */ - (BOOL)isHelpShown; -/** - * This method check existance of the default resources bundle Microblink.bundle, - * and throws an exception if it's missing +/** + * Returns the default resources bundle. If it doesn't exist, it will be nil. */ -+ (NSBundle *)verifyAndGetDefaultResourcesBundle; ++ (NSBundle *)getDefaultResourcesBundle; @end @@ -4912,7 +4959,7 @@

    Declaration

diff --git a/docs/Classes/MBAmountParser.html b/docs/Classes/MBAmountParser.html index 622ff2d..1bdb735 100644 --- a/docs/Classes/MBAmountParser.html +++ b/docs/Classes/MBAmountParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -915,7 +924,7 @@

Declaration

diff --git a/docs/Classes/MBAmountParserResult.html b/docs/Classes/MBAmountParserResult.html index a7a3a0b..cce56c3 100644 --- a/docs/Classes/MBAmountParserResult.html +++ b/docs/Classes/MBAmountParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

Declaration

diff --git a/docs/Classes/MBBarcodeOverlaySettings.html b/docs/Classes/MBBarcodeOverlaySettings.html index 9b481f7..f1ac84c 100644 --- a/docs/Classes/MBBarcodeOverlaySettings.html +++ b/docs/Classes/MBBarcodeOverlaySettings.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -715,14 +724,16 @@

MBBarcodeOverlaySettings

-

Undocumented

+

If YES, viewfinder (4 corner markers) will move when payslip is detected

+ +

Default: YES

Declaration

Objective-C

-
@property (nonatomic, assign) BOOL displayBarcodeDots
+
@property (assign, readwrite, nonatomic) BOOL displayBarcodeDots;
@@ -747,14 +758,16 @@

Declaration

-

Undocumented

+

If YES; view finder will be displayed

+ +

Default: YES

Declaration

Objective-C

-
@property (nonatomic, assign) BOOL displayViewfinder
+
@property (assign, readwrite, nonatomic) BOOL displayViewfinder;
@@ -774,7 +787,7 @@

Declaration

diff --git a/docs/Classes/MBBarcodeOverlayViewController.html b/docs/Classes/MBBarcodeOverlayViewController.html index ba75cf8..d6d3106 100644 --- a/docs/Classes/MBBarcodeOverlayViewController.html +++ b/docs/Classes/MBBarcodeOverlayViewController.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -689,7 +698,7 @@

MBBarcodeOverlayViewController


-@interface MBBarcodeOverlayViewController : MBBaseOverlayViewController
+@interface MBBarcodeOverlayViewController : MBBaseOverlayViewController
@@ -784,10 +793,10 @@

Declaration

Objective-C

- (nonnull instancetype)
-    initWithSettings:(nonnull MBBarcodeOverlaySettings *)settings
-recognizerCollection:(nonnull MBRecognizerCollection *)recognizerCollection
-            delegate:
-                (nonnull id<MBBarcodeOverlayViewControllerDelegate>)delegate;
+ initWithSettings:(nonnull MBBarcodeOverlaySettings *)settings + recognizerCollection:(nonnull MBRecognizerCollection *)recognizerCollection + delegate:(nonnull id<MBBarcodeOverlayViewControllerDelegate>) + delegate;
@@ -837,7 +846,7 @@

Return Value

diff --git a/docs/Classes/MBBarcodeRecognizer.html b/docs/Classes/MBBarcodeRecognizer.html index 6c7ee50..d718abc 100644 --- a/docs/Classes/MBBarcodeRecognizer.html +++ b/docs/Classes/MBBarcodeRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -771,9 +780,9 @@

Declaration

  • - - - scanAztec + + + scanAztecCode
    @@ -790,12 +799,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanAztec;
    +
    @property (assign, readwrite, nonatomic) BOOL scanAztecCode;

    Swift

    -
    var scanAztec: Bool { get set }
    +
    var scanAztecCode: Bool { get set }
    @@ -907,9 +916,9 @@

    Declaration

  • - - - scanEAN13 + + + scanEan13
    @@ -926,12 +935,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanEAN13;
    +
    @property (assign, readwrite, nonatomic) BOOL scanEan13;

    Swift

    -
    var scanEAN13: Bool { get set }
    +
    var scanEan13: Bool { get set }
    @@ -941,9 +950,9 @@

    Declaration

  • - - - scanEAN8 + + + scanEan8
    @@ -960,12 +969,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanEAN8;
    +
    @property (assign, readwrite, nonatomic) BOOL scanEan8;

    Swift

    -
    var scanEAN8: Bool { get set }
    +
    var scanEan8: Bool { get set }
    @@ -975,9 +984,9 @@

    Declaration

  • - - - scanITF + + + scanItf
    @@ -994,12 +1003,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanITF;
    +
    @property (assign, readwrite, nonatomic) BOOL scanItf;

    Swift

    -
    var scanITF: Bool { get set }
    +
    var scanItf: Bool { get set }
    @@ -1009,9 +1018,9 @@

    Declaration

  • - - - scanQR + + + scanQrCode
    @@ -1028,12 +1037,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanQR;
    +
    @property (assign, readwrite, nonatomic) BOOL scanQrCode;

    Swift

    -
    var scanQR: Bool { get set }
    +
    var scanQrCode: Bool { get set }
    @@ -1043,9 +1052,9 @@

    Declaration

  • - - - scanUPCA + + + scanUpca
    @@ -1062,12 +1071,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanUPCA;
    +
    @property (assign, readwrite, nonatomic) BOOL scanUpca;

    Swift

    -
    var scanUPCA: Bool { get set }
    +
    var scanUpca: Bool { get set }
    @@ -1077,9 +1086,9 @@

    Declaration

  • - - - scanUPCE + + + scanUpce
    @@ -1096,12 +1105,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanUPCE;
    +
    @property (assign, readwrite, nonatomic) BOOL scanUpce;

    Swift

    -
    var scanUPCE: Bool { get set }
    +
    var scanUpce: Bool { get set }
    @@ -1145,9 +1154,9 @@

    Declaration

  • @@ -1157,19 +1166,19 @@

    Declaration

    Set this to YES to allow slower, but better image processing.

    -

    Defailt: YES

    +

    Default: YES

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL useSlowerThoroughScan;
    +
    @property (assign, readwrite, nonatomic) BOOL slowerThoroughScan;

    Swift

    -
    var useSlowerThoroughScan: Bool { get set }
    +
    var slowerThoroughScan: Bool { get set }
    @@ -1196,6 +1205,10 @@

    Declaration

    NOTE: This setting is applied only for Code39 and Code128 barcode scanning.

    +
      +
    • Default: YES
    • +
    +

    Declaration

    @@ -1227,7 +1240,9 @@

    Declaration

    Enable reading code39 barcode contents as extended data. For more information about code39 -extended data (a.k.a. full ASCII mode), see https://en.wikipedia.org/wiki/Code_39#Full_ASCII_Code_39

    + extended data (a.k.a. full ASCII mode), see https://en.wikipedia.org/wiki/Code_39#Full_ASCII_Code_39

    + +

    Default: NO

    @@ -1323,9 +1338,9 @@

    Declaration

  • @@ -1344,12 +1359,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL allowNullQuietZone;
    +
    @property (assign, readwrite, nonatomic) BOOL nullQuietZoneAllowed;

    Swift

    -
    var allowNullQuietZone: Bool { get set }
    +
    var nullQuietZoneAllowed: Bool { get set }
    @@ -1364,7 +1379,7 @@

    Declaration

  • diff --git a/docs/Classes/MBBarcodeRecognizerResult.html b/docs/Classes/MBBarcodeRecognizerResult.html index b576172..29987c9 100644 --- a/docs/Classes/MBBarcodeRecognizerResult.html +++ b/docs/Classes/MBBarcodeRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -733,9 +742,9 @@

    Declaration

  • - - - -data + + + rawData
    @@ -750,12 +759,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (NSData *_Nullable)data;
    +
    @property (readonly, strong, nonatomic, nullable) NSData *rawData;

    Swift

    -
    func data() -> Data?
    +
    var rawData: Data? { get }
    @@ -765,9 +774,9 @@

    Declaration

  • - - - -stringData + + + stringData
    @@ -782,12 +791,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (nonnull NSString *)stringData;
    +
    @property (readonly, strong, nonatomic, nullable) NSString *stringData;

    Swift

    -
    func stringData() -> String
    +
    var stringData: String? { get }
    @@ -797,9 +806,9 @@

    Declaration

  • - - - -isUncertain + + + uncertain
    @@ -815,12 +824,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (BOOL)isUncertain;
    +
    @property (readonly, assign, nonatomic) BOOL uncertain;

    Swift

    -
    func isUncertain() -> Bool
    +
    var uncertain: Bool { get }
    @@ -926,7 +935,7 @@

    Return Value

    diff --git a/docs/Classes/MBBaseOcrEngineOptions.html b/docs/Classes/MBBaseOcrEngineOptions.html index c4fee63..05c0aa6 100644 --- a/docs/Classes/MBBaseOcrEngineOptions.html +++ b/docs/Classes/MBBaseOcrEngineOptions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -703,78 +712,6 @@

    MBBaseOcrEngineOptions

    diff --git a/docs/Classes/MBBlinkInputRecognizerResult.html b/docs/Classes/MBBlinkInputRecognizerResult.html index 9491d0f..e60afde 100644 --- a/docs/Classes/MBBlinkInputRecognizerResult.html +++ b/docs/Classes/MBBlinkInputRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -737,7 +746,7 @@

    Declaration

    diff --git a/docs/Classes/MBCameraSettings.html b/docs/Classes/MBCameraSettings.html index 395a93b..6d655ca 100644 --- a/docs/Classes/MBCameraSettings.html +++ b/docs/Classes/MBCameraSettings.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -724,12 +733,12 @@

    MBCameraSettings

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) PPCameraPreset cameraPreset;
    +
    @property (assign, readwrite, nonatomic) MBCameraPreset cameraPreset;

    Swift

    -
    var cameraPreset: PPCameraPreset { get set }
    +
    var cameraPreset: MBCameraPreset { get set }
    @@ -751,19 +760,19 @@

    Declaration

    Camera type. You can choose between front and back facing.

    -

    Default: PPCameraTypeBack

    +

    Default: MBCameraTypeBack

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) PPCameraType cameraType;
    +
    @property (assign, readwrite, nonatomic) MBCameraType cameraType;

    Swift

    -
    var cameraType: PPCameraType { get set }
    +
    var cameraType: MBCameraType { get set }
    @@ -833,12 +842,12 @@

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic)
    -    PPCameraAutofocusRestriction cameraAutofocusRestriction;
    + MBCameraAutofocusRestriction cameraAutofocusRestriction;

    Swift

    -
    var cameraAutofocusRestriction: PPCameraAutofocusRestriction { get set }
    +
    var cameraAutofocusRestriction: MBCameraAutofocusRestriction { get set }
    @@ -1097,7 +1106,7 @@

    Return Value

    diff --git a/docs/Classes/MBCharWithVariants.html b/docs/Classes/MBCharWithVariants.html index 3c599af..df4a61b 100644 --- a/docs/Classes/MBCharWithVariants.html +++ b/docs/Classes/MBCharWithVariants.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -892,7 +901,7 @@

    Return Value

    diff --git a/docs/Classes/MBDPIBasedDewarpPolicy.html b/docs/Classes/MBDPIBasedDewarpPolicy.html index 778483f..c67a7c8 100644 --- a/docs/Classes/MBDPIBasedDewarpPolicy.html +++ b/docs/Classes/MBDPIBasedDewarpPolicy.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -831,7 +840,7 @@

    Declaration

    diff --git a/docs/Classes/MBDateParser.html b/docs/Classes/MBDateParser.html index 7eada0c..d0afa79 100644 --- a/docs/Classes/MBDateParser.html +++ b/docs/Classes/MBDateParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -844,7 +853,7 @@

    Declaration

    diff --git a/docs/Classes/MBDateParserResult.html b/docs/Classes/MBDateParserResult.html index b200849..c427da7 100644 --- a/docs/Classes/MBDateParserResult.html +++ b/docs/Classes/MBDateParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBDateResult.html b/docs/Classes/MBDateResult.html index 15f0305..e7908d4 100644 --- a/docs/Classes/MBDateResult.html +++ b/docs/Classes/MBDateResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -878,12 +887,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (readonly, nonatomic, nonnull) NSDate *date;
    +
    @property (readonly, nonatomic, nullable) NSDate *date;

    Swift

    -
    var date: Date { get }
    +
    var date: Date? { get }
    @@ -1084,7 +1093,7 @@

    Return Value

    diff --git a/docs/Classes/MBDeepOcrEngineOptions.html b/docs/Classes/MBDeepOcrEngineOptions.html index fa93964..346f63d 100644 --- a/docs/Classes/MBDeepOcrEngineOptions.html +++ b/docs/Classes/MBDeepOcrEngineOptions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -849,7 +858,7 @@

    Declaration

    diff --git a/docs/Classes/MBDetectorRecognizer.html b/docs/Classes/MBDetectorRecognizer.html index 232210c..87b0f89 100644 --- a/docs/Classes/MBDetectorRecognizer.html +++ b/docs/Classes/MBDetectorRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -873,7 +882,7 @@

    Declaration

    diff --git a/docs/Classes/MBDetectorRecognizerResult.html b/docs/Classes/MBDetectorRecognizerResult.html index a4d2cb5..5c993f5 100644 --- a/docs/Classes/MBDetectorRecognizerResult.html +++ b/docs/Classes/MBDetectorRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -737,7 +746,7 @@

    Declaration

    diff --git a/docs/Classes/MBDetectorResult.html b/docs/Classes/MBDetectorResult.html index ea81e13..7745d74 100644 --- a/docs/Classes/MBDetectorResult.html +++ b/docs/Classes/MBDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -774,7 +783,7 @@

    Declaration

    diff --git a/docs/Classes/MBDewarpPolicy.html b/docs/Classes/MBDewarpPolicy.html index 3977a11..ed43f42 100644 --- a/docs/Classes/MBDewarpPolicy.html +++ b/docs/Classes/MBDewarpPolicy.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/Classes/MBDisplayableDetection.html b/docs/Classes/MBDisplayableDetection.html index 9e7c2a8..d145a4b 100644 --- a/docs/Classes/MBDisplayableDetection.html +++ b/docs/Classes/MBDisplayableDetection.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/Classes/MBDisplayableObject.html b/docs/Classes/MBDisplayableObject.html index affdb58..6d6129b 100644 --- a/docs/Classes/MBDisplayableObject.html +++ b/docs/Classes/MBDisplayableObject.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -743,7 +752,7 @@

    Declaration

    diff --git a/docs/Classes/MBDisplayablePointsDetection.html b/docs/Classes/MBDisplayablePointsDetection.html index 1ed88e1..a616db5 100644 --- a/docs/Classes/MBDisplayablePointsDetection.html +++ b/docs/Classes/MBDisplayablePointsDetection.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/Classes/MBDisplayableQuadDetection.html b/docs/Classes/MBDisplayableQuadDetection.html index 96b8c0f..0793401 100644 --- a/docs/Classes/MBDisplayableQuadDetection.html +++ b/docs/Classes/MBDisplayableQuadDetection.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -744,7 +753,7 @@

    Declaration

    diff --git a/docs/Classes/MBDocumentDetector.html b/docs/Classes/MBDocumentDetector.html index 0b9a0f3..5cb1c5c 100644 --- a/docs/Classes/MBDocumentDetector.html +++ b/docs/Classes/MBDocumentDetector.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -891,7 +900,7 @@

    Declaration

    diff --git a/docs/Classes/MBDocumentDetectorResult.html b/docs/Classes/MBDocumentDetectorResult.html index eb5c263..5031e7c 100644 --- a/docs/Classes/MBDocumentDetectorResult.html +++ b/docs/Classes/MBDocumentDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBDocumentSpecification.html b/docs/Classes/MBDocumentSpecification.html index c69d7b1..cf9195e 100644 --- a/docs/Classes/MBDocumentSpecification.html +++ b/docs/Classes/MBDocumentSpecification.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1117,7 +1126,7 @@

    Declaration

    diff --git a/docs/Classes/MBEmailParser.html b/docs/Classes/MBEmailParser.html index 406b715..de59843 100644 --- a/docs/Classes/MBEmailParser.html +++ b/docs/Classes/MBEmailParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/Classes/MBEmailParserResult.html b/docs/Classes/MBEmailParserResult.html index 1ea0333..09c358b 100644 --- a/docs/Classes/MBEmailParserResult.html +++ b/docs/Classes/MBEmailParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBFixedDewarpPolicy.html b/docs/Classes/MBFixedDewarpPolicy.html index 3f4dc69..ddcc3b4 100644 --- a/docs/Classes/MBFixedDewarpPolicy.html +++ b/docs/Classes/MBFixedDewarpPolicy.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -829,7 +838,7 @@

    Declaration

    diff --git a/docs/Classes/MBFrameGrabberRecognizer.html b/docs/Classes/MBFrameGrabberRecognizer.html index 7f94554..082915a 100644 --- a/docs/Classes/MBFrameGrabberRecognizer.html +++ b/docs/Classes/MBFrameGrabberRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/Classes/MBIbanParser.html b/docs/Classes/MBIbanParser.html index 7f8e06e..2897c6d 100644 --- a/docs/Classes/MBIbanParser.html +++ b/docs/Classes/MBIbanParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -844,7 +853,7 @@

    Declaration

    diff --git a/docs/Classes/MBIbanParserResult.html b/docs/Classes/MBIbanParserResult.html index ea2b95c..6ed8246 100644 --- a/docs/Classes/MBIbanParserResult.html +++ b/docs/Classes/MBIbanParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBImage.html b/docs/Classes/MBImage.html index b3e4e71..3225501 100644 --- a/docs/Classes/MBImage.html +++ b/docs/Classes/MBImage.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -983,7 +992,7 @@

    Declaration

    -

    Creates PPImage around CVImageBufferRef.

    +

    Creates MBImage around CVImageBufferRef.

    @@ -1003,6 +1012,38 @@

    Declaration

    +
  • + +
    +
    +
    +
    +
    +

    Creates MBImage around CVPixelBufferRef.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (nonnull instancetype)imageWithCvPixelBuffer:(nonnull CVPixelBufferRef)buffer;
    + +
    +
    +

    Swift

    +
    convenience init(cvPixelBuffer buffer: CVPixelBuffer)
    + +
    +
    +
    +
    +
  • @@ -1011,7 +1052,7 @@

    Declaration

    diff --git a/docs/Classes/MBImageReturnProcessor.html b/docs/Classes/MBImageReturnProcessor.html index a312686..f9fae85 100644 --- a/docs/Classes/MBImageReturnProcessor.html +++ b/docs/Classes/MBImageReturnProcessor.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -810,7 +819,7 @@

    Declaration

    diff --git a/docs/Classes/MBImageReturnProcessorResult.html b/docs/Classes/MBImageReturnProcessorResult.html index 1b3e36d..c042d38 100644 --- a/docs/Classes/MBImageReturnProcessorResult.html +++ b/docs/Classes/MBImageReturnProcessorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -802,7 +811,7 @@

    Declaration

    diff --git a/docs/Classes/MBLicensePlatesParser.html b/docs/Classes/MBLicensePlatesParser.html index 6832c58..8b0308e 100644 --- a/docs/Classes/MBLicensePlatesParser.html +++ b/docs/Classes/MBLicensePlatesParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -775,7 +784,7 @@

    Declaration

    diff --git a/docs/Classes/MBLicensePlatesParserResult.html b/docs/Classes/MBLicensePlatesParserResult.html index 4e6e281..9a3fd9f 100644 --- a/docs/Classes/MBLicensePlatesParserResult.html +++ b/docs/Classes/MBLicensePlatesParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBMicroblinkSDK.html b/docs/Classes/MBMicroblinkSDK.html index 7f33d9d..06540e1 100644 --- a/docs/Classes/MBMicroblinkSDK.html +++ b/docs/Classes/MBMicroblinkSDK.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -786,7 +795,7 @@

    Declaration

    is equal to Microblink.bundle located in Main app bundle.

    i.e, this is by default initialized to: - [NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:@MicroBlink ofType:@bundle];

    + [NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:@Microblink ofType:@bundle];

    @@ -1273,6 +1282,76 @@

    Return Value

    +
  • + +
    +
    +
    +
    +
    +

    This method returns true when scanning is unsupported on a specific device. + Error object contains description of the reason for that.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (BOOL)isScanningUnsupportedForCameraType:(MBCameraType)type
    +                                     error:(NSError *_Nullable *_Nullable)error;
    + +
    +
    +

    Swift

    +
    class func isScanningUnsupported(for type: MBCameraType, error: NSErrorPointer) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + type + + +
    +

    The camera type you want to check for.

    +
    +
    + + error + + +
    +

    If scanning is not supported, when method this method returns, this parameter contains an NSError object that describes the +problem. If you are not interested in possible errors, pass in NULL.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if scanning is not supported, NO otherwise.

    +
    +
    +
    +
  • @@ -1281,7 +1360,7 @@

    Return Value

    diff --git a/docs/Classes/MBMrtdDetector.html b/docs/Classes/MBMrtdDetector.html index e7788ca..54a10b5 100644 --- a/docs/Classes/MBMrtdDetector.html +++ b/docs/Classes/MBMrtdDetector.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -901,7 +910,7 @@

    Parameters

    diff --git a/docs/Classes/MBMrtdDetectorResult.html b/docs/Classes/MBMrtdDetectorResult.html index 54b6ad3..17cabdf 100644 --- a/docs/Classes/MBMrtdDetectorResult.html +++ b/docs/Classes/MBMrtdDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -801,7 +810,7 @@

    Declaration

    diff --git a/docs/Classes/MBMrtdSpecification.html b/docs/Classes/MBMrtdSpecification.html index 57f509f..f01ffbb 100644 --- a/docs/Classes/MBMrtdSpecification.html +++ b/docs/Classes/MBMrtdSpecification.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -793,7 +802,7 @@

    Return Value

    diff --git a/docs/Classes/MBNoUpScalingDewarpPolicy.html b/docs/Classes/MBNoUpScalingDewarpPolicy.html index 5e8dbe0..77c1a09 100644 --- a/docs/Classes/MBNoUpScalingDewarpPolicy.html +++ b/docs/Classes/MBNoUpScalingDewarpPolicy.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -834,7 +843,7 @@

    Declaration

    diff --git a/docs/Classes/MBOcrBlock.html b/docs/Classes/MBOcrBlock.html index 8d9f8d4..3bf3193 100644 --- a/docs/Classes/MBOcrBlock.html +++ b/docs/Classes/MBOcrBlock.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -911,7 +920,7 @@

    Return Value

    diff --git a/docs/Classes/MBOcrChar.html b/docs/Classes/MBOcrChar.html index 56cfd12..b701c70 100644 --- a/docs/Classes/MBOcrChar.html +++ b/docs/Classes/MBOcrChar.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1010,7 +1019,7 @@

    Return Value

    diff --git a/docs/Classes/MBOcrCharKey.html b/docs/Classes/MBOcrCharKey.html index 530449c..bb521ba 100644 --- a/docs/Classes/MBOcrCharKey.html +++ b/docs/Classes/MBOcrCharKey.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -912,7 +921,7 @@

    Return Value

    diff --git a/docs/Classes/MBOcrEngineOptions.html b/docs/Classes/MBOcrEngineOptions.html index b0dcc60..10e457d 100644 --- a/docs/Classes/MBOcrEngineOptions.html +++ b/docs/Classes/MBOcrEngineOptions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,6 +778,78 @@

    Declaration

    +
  • +
    + + + + minimalLineHeight + +
    +
    +
    +
    +
    +
    +

    Minimal height of the line of text given in pixels. All chars smaller than this value will be ignored.

    + +

    Setting the minimal line height can reduce the noise in OCR results.

    + +

    Default: 10

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (assign, readwrite, nonatomic) NSUInteger minimalLineHeight;
    + +
    +
    +

    Swift

    +
    var minimalLineHeight: UInt { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + maximalLineHeight + +
    +
    +
    +
    +
    +
    +

    Maximal height of the line of text given in pixels.

    + +

    Setting the maximal line height can reduce the noise in OCR results.

    + +

    Default: 200

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (assign, readwrite, nonatomic) NSUInteger maximalLineHeight;
    + +
    +
    +

    Swift

    +
    var maximalLineHeight: UInt { get set }
    + +
    +
    +
    +
    +
  • @@ -849,7 +930,7 @@

    Declaration

    diff --git a/docs/Classes/MBOcrLayout.html b/docs/Classes/MBOcrLayout.html index b123630..b881004 100644 --- a/docs/Classes/MBOcrLayout.html +++ b/docs/Classes/MBOcrLayout.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1116,7 +1125,7 @@

    Return Value

    diff --git a/docs/Classes/MBOcrLine.html b/docs/Classes/MBOcrLine.html index 9abfe71..43ab39a 100644 --- a/docs/Classes/MBOcrLine.html +++ b/docs/Classes/MBOcrLine.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -912,7 +921,7 @@

    Return Value

    diff --git a/docs/Classes/MBOverlayViewController.html b/docs/Classes/MBOverlayViewController.html index f671750..068ce06 100644 --- a/docs/Classes/MBOverlayViewController.html +++ b/docs/Classes/MBOverlayViewController.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -831,7 +840,7 @@

    Declaration

    diff --git a/docs/Classes/MBParserGroupProcessor.html b/docs/Classes/MBParserGroupProcessor.html index 610279d..fcd5fe2 100644 --- a/docs/Classes/MBParserGroupProcessor.html +++ b/docs/Classes/MBParserGroupProcessor.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -869,7 +878,7 @@

    Declaration

    diff --git a/docs/Classes/MBParserGroupProcessorResult.html b/docs/Classes/MBParserGroupProcessorResult.html index 7764d75..b07d14a 100644 --- a/docs/Classes/MBParserGroupProcessorResult.html +++ b/docs/Classes/MBParserGroupProcessorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBParserResult.html b/docs/Classes/MBParserResult.html index 4ba23ce..f1039bb 100644 --- a/docs/Classes/MBParserResult.html +++ b/docs/Classes/MBParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBPdf417Recognizer.html b/docs/Classes/MBPdf417Recognizer.html index 93ad5a0..a00ce7b 100644 --- a/docs/Classes/MBPdf417Recognizer.html +++ b/docs/Classes/MBPdf417Recognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -807,9 +816,9 @@

    Declaration

  • @@ -828,12 +837,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL allowNullQuietZone;
    +
    @property (assign, readwrite, nonatomic) BOOL nullQuietZoneAllowed;

    Swift

    -
    var allowNullQuietZone: Bool { get set }
    +
    var nullQuietZoneAllowed: Bool { get set }
    @@ -885,7 +894,7 @@

    Declaration

    diff --git a/docs/Classes/MBPdf417RecognizerResult.html b/docs/Classes/MBPdf417RecognizerResult.html index 5dbcc11..537ddce 100644 --- a/docs/Classes/MBPdf417RecognizerResult.html +++ b/docs/Classes/MBPdf417RecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -732,9 +741,9 @@

    Declaration

  • - - - -data + + + rawData
    @@ -749,12 +758,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (NSData *_Nullable)data;
    +
    @property (readonly, strong, nonatomic, nullable) NSData *rawData;

    Swift

    -
    func data() -> Data?
    +
    var rawData: Data? { get }
    @@ -764,9 +773,9 @@

    Declaration

  • - - - -stringData + + + stringData
    @@ -781,12 +790,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (nonnull NSString *)stringData;
    +
    @property (readonly, strong, nonatomic, nullable) NSString *stringData;

    Swift

    -
    func stringData() -> String
    +
    var stringData: String? { get }
    @@ -796,9 +805,9 @@

    Declaration

  • - - - -isUncertain + + + uncertain
    @@ -814,12 +823,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (BOOL)isUncertain;
    +
    @property (readonly, assign, nonatomic) BOOL uncertain;

    Swift

    -
    func isUncertain() -> Bool
    +
    var uncertain: Bool { get }
    @@ -870,7 +879,7 @@

    Return Value

    diff --git a/docs/Classes/MBPosition.html b/docs/Classes/MBPosition.html index 9cb8f0f..0004b56 100644 --- a/docs/Classes/MBPosition.html +++ b/docs/Classes/MBPosition.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1124,7 +1133,7 @@

    Return Value

    diff --git a/docs/Classes/MBProcessorGroup.html b/docs/Classes/MBProcessorGroup.html index 71c99fb..e9e4b55 100644 --- a/docs/Classes/MBProcessorGroup.html +++ b/docs/Classes/MBProcessorGroup.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -750,10 +759,10 @@

    Declaration

    Objective-C

    - (nonnull instancetype)
    -initWithProcessingLocation:(CGRect)processingLocation
    -              dewarpPolicy:(nonnull MBDewarpPolicy *)dewarpPolicy
    -             andProcessors:
    -                 (nonnull NSArray<__kindof MBProcessor *> *)processors;
    + initWithProcessingLocation:(CGRect)processingLocation + dewarpPolicy:(nonnull MBDewarpPolicy *)dewarpPolicy + andProcessors: + (nonnull NSArray<__kindof MBProcessor *> *)processors;
    @@ -849,7 +858,7 @@

    Declaration

    diff --git a/docs/Classes/MBProcessorResult.html b/docs/Classes/MBProcessorResult.html index 2a45939..db458b7 100644 --- a/docs/Classes/MBProcessorResult.html +++ b/docs/Classes/MBProcessorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBQuadDetector.html b/docs/Classes/MBQuadDetector.html index ead144a..c3dc169 100644 --- a/docs/Classes/MBQuadDetector.html +++ b/docs/Classes/MBQuadDetector.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBQuadDetectorResult.html b/docs/Classes/MBQuadDetectorResult.html index 90cf6e3..318b3fa 100644 --- a/docs/Classes/MBQuadDetectorResult.html +++ b/docs/Classes/MBQuadDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBQuadWithSizeDetector.html b/docs/Classes/MBQuadWithSizeDetector.html index e8536b4..ebd9e64 100644 --- a/docs/Classes/MBQuadWithSizeDetector.html +++ b/docs/Classes/MBQuadWithSizeDetector.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -771,7 +780,7 @@

    Declaration

    diff --git a/docs/Classes/MBQuadWithSizeDetectorResult.html b/docs/Classes/MBQuadWithSizeDetectorResult.html index 3c6f419..c23b2bb 100644 --- a/docs/Classes/MBQuadWithSizeDetectorResult.html +++ b/docs/Classes/MBQuadWithSizeDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -770,7 +779,7 @@

    Declaration

    diff --git a/docs/Classes/MBQuadrangle.html b/docs/Classes/MBQuadrangle.html index 44cfd74..968dd66 100644 --- a/docs/Classes/MBQuadrangle.html +++ b/docs/Classes/MBQuadrangle.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1043,7 +1052,7 @@

    Return Value

    diff --git a/docs/Classes/MBRawParser.html b/docs/Classes/MBRawParser.html index 2445792..2d1bbcf 100644 --- a/docs/Classes/MBRawParser.html +++ b/docs/Classes/MBRawParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -820,7 +829,9 @@

    Declaration

    Sets the OCR engine options used in Regex OCR parser. -Returns the OCR engine options used in Regex OCR parser.

    + Returns the OCR engine options used in Regex OCR parser.

    + +

    Default: default instance of MBOcrEngineOptions

    @@ -848,7 +859,7 @@

    Declaration

    diff --git a/docs/Classes/MBRawParserResult.html b/docs/Classes/MBRawParserResult.html index 4980420..4a927a0 100644 --- a/docs/Classes/MBRawParserResult.html +++ b/docs/Classes/MBRawParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBRecognizer.html b/docs/Classes/MBRecognizer.html index 0ae518d..cec6d72 100644 --- a/docs/Classes/MBRecognizer.html +++ b/docs/Classes/MBRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -702,42 +711,6 @@

    MBRecognizer

    diff --git a/docs/Classes/MBRecognizerRunner.html b/docs/Classes/MBRecognizerRunner.html index 25c6e52..8d16bae 100644 --- a/docs/Classes/MBRecognizerRunner.html +++ b/docs/Classes/MBRecognizerRunner.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -799,6 +808,38 @@

    Declaration

    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, weak, nullable) id<MBStringProcessingRecognizerRunnerDelegate> stringProcessingRecognizerRunnerDelegate
    + +
    +
    +

    Swift

    +
    weak var stringProcessingRecognizerRunnerDelegate: MBStringProcessingRecognizerRunnerDelegate? { get set }
    + +
    +
    +
    +
    +
  • @@ -1004,7 +1045,7 @@

    Declaration

    Processes a MBImage object synchronously using current settings. Since this method is synchronous, calling it from a main thread will switch the call to alternate thread internally and output a warning.

    -

    Results are passed a delegate object given upon a creation of PPCoordinator.

    +

    Results are passed a delegate object given upon a creation of MBCoordinator.

    @@ -1042,6 +1083,60 @@

    Parameters

  • +
  • +
    + + + + -processString: + +
    +
    +
    +
    +
    +
    +

    Processes a NSString object synchronously using current settings. + Since this method is synchronous, calling it from a main thread will switch the call to alternate thread internally and output a warning.

    + +

    Results are passed a delegate object given upon a creation of MBCoordinator.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)processString:(nonnull NSString *)string;
    + +
    +
    +

    Swift

    +
    func processString(_ string: String)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + string + + +
    +

    string for processing

    +
    +
    +
    +
    +
    +
  • @@ -1086,7 +1181,7 @@

    Declaration

    diff --git a/docs/Classes/MBRecognizerRunnerMetadataDelegates.html b/docs/Classes/MBRecognizerRunnerMetadataDelegates.html index e610024..fcab010 100644 --- a/docs/Classes/MBRecognizerRunnerMetadataDelegates.html +++ b/docs/Classes/MBRecognizerRunnerMetadataDelegates.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -838,7 +847,7 @@

    Declaration

    diff --git a/docs/Classes/MBRegexParser.html b/docs/Classes/MBRegexParser.html index 1ba78a2..d3ecf22 100644 --- a/docs/Classes/MBRegexParser.html +++ b/docs/Classes/MBRegexParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -975,7 +984,9 @@

    Declaration

    Sets the OCR engine options used in Regex OCR parser. -Returns the OCR engine options used in Regex OCR parser.

    + Returns the OCR engine options used in Regex OCR parser.

    + +

    Default: default instance of MBOcrEngineOptions

    @@ -1003,7 +1014,7 @@

    Declaration

    diff --git a/docs/Classes/MBRegexParserResult.html b/docs/Classes/MBRegexParserResult.html index e3828a5..647d627 100644 --- a/docs/Classes/MBRegexParserResult.html +++ b/docs/Classes/MBRegexParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBSimNumberRecognizer.html b/docs/Classes/MBSimNumberRecognizer.html index e9cc695..cf3f029 100644 --- a/docs/Classes/MBSimNumberRecognizer.html +++ b/docs/Classes/MBSimNumberRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -775,7 +784,7 @@

    Declaration

    diff --git a/docs/Classes/MBSimNumberRecognizerResult.html b/docs/Classes/MBSimNumberRecognizerResult.html index fae8223..9e3957e 100644 --- a/docs/Classes/MBSimNumberRecognizerResult.html +++ b/docs/Classes/MBSimNumberRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBSuccessFrameGrabberRecognizer.html b/docs/Classes/MBSuccessFrameGrabberRecognizer.html index 0957568..8a8d76b 100644 --- a/docs/Classes/MBSuccessFrameGrabberRecognizer.html +++ b/docs/Classes/MBSuccessFrameGrabberRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -794,6 +803,38 @@

    Declaration

    +
  • +
    + + + + slaveRecognizer + +
    +
    +
    +
    +
    +
    +

    Slave recognizer that is wrapped with SuccessFrameGrabber

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, strong, nonatomic) MBRecognizer *_Nonnull slaveRecognizer;
    + +
    +
    +

    Swift

    +
    var slaveRecognizer: MBRecognizer { get }
    + +
    +
    +
    +
    +
  • @@ -802,7 +843,7 @@

    Declaration

    diff --git a/docs/Classes/MBSuccessFrameGrabberRecognizerResult.html b/docs/Classes/MBSuccessFrameGrabberRecognizerResult.html index afa0ec4..4de0feb 100644 --- a/docs/Classes/MBSuccessFrameGrabberRecognizerResult.html +++ b/docs/Classes/MBSuccessFrameGrabberRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -770,7 +779,7 @@

    Declaration

    diff --git a/docs/Classes/MBTemplatingClass.html b/docs/Classes/MBTemplatingClass.html index 5f8bcc2..f19bc72 100644 --- a/docs/Classes/MBTemplatingClass.html +++ b/docs/Classes/MBTemplatingClass.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -974,7 +983,7 @@

    Parameters

    diff --git a/docs/Classes/MBTemplatingRecognizer.html b/docs/Classes/MBTemplatingRecognizer.html index add222d..25645db 100644 --- a/docs/Classes/MBTemplatingRecognizer.html +++ b/docs/Classes/MBTemplatingRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/Classes/MBTemplatingRecognizerResult.html b/docs/Classes/MBTemplatingRecognizerResult.html index 5a1d6a3..41cdd82 100644 --- a/docs/Classes/MBTemplatingRecognizerResult.html +++ b/docs/Classes/MBTemplatingRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -771,7 +780,7 @@

    Declaration

    diff --git a/docs/Classes/MBTopUpParser.html b/docs/Classes/MBTopUpParser.html index e0700e0..01d04f5 100644 --- a/docs/Classes/MBTopUpParser.html +++ b/docs/Classes/MBTopUpParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -933,7 +942,7 @@

    Declaration

    diff --git a/docs/Classes/MBTopUpParserResult.html b/docs/Classes/MBTopUpParserResult.html index cac411d..09cf889 100644 --- a/docs/Classes/MBTopUpParserResult.html +++ b/docs/Classes/MBTopUpParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Classes/MBViewControllerFactory.html b/docs/Classes/MBViewControllerFactory.html index 519999a..8cf9238 100644 --- a/docs/Classes/MBViewControllerFactory.html +++ b/docs/Classes/MBViewControllerFactory.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -735,8 +744,8 @@

    Declaration

    Objective-C

    + (nonnull UIViewController<MBRecognizerRunnerViewController> *)
    -recognizerRunnerViewControllerWithOverlayViewController:
    -    (nonnull MBOverlayViewController *)overlayViewController;
    + recognizerRunnerViewControllerWithOverlayViewController: + (nonnull MBOverlayViewController *)overlayViewController;
    @@ -779,7 +788,7 @@

    Return Value

    diff --git a/docs/Classes/MBVinParser.html b/docs/Classes/MBVinParser.html index ce64354..f50c339 100644 --- a/docs/Classes/MBVinParser.html +++ b/docs/Classes/MBVinParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -774,7 +783,7 @@

    Declaration

    diff --git a/docs/Classes/MBVinParserResult.html b/docs/Classes/MBVinParserResult.html index 7aca418..dea6758 100644 --- a/docs/Classes/MBVinParserResult.html +++ b/docs/Classes/MBVinParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Constants.html b/docs/Constants.html index 8dbd3d4..a421dff 100644 --- a/docs/Constants.html +++ b/docs/Constants.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -927,7 +936,7 @@

    Declaration

    diff --git a/docs/Enums.html b/docs/Enums.html index 6b46980..735104e 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -730,9 +739,9 @@

    Declaration

  • @@ -742,18 +751,18 @@

    Declaration

    Camera resolution preset

    - See more + See more

    Declaration

    Objective-C

    -
    enum PPCameraPreset {}
    +
    enum MBCameraPreset {}

    Swift

    -
    enum PPCameraPreset : UInt
    +
    enum MBCameraPreset : UInt
    @@ -763,9 +772,9 @@

    Declaration

  • @@ -775,18 +784,18 @@

    Declaration

    Camera type

    - See more + See more

    Declaration

    Objective-C

    -
    enum PPCameraType {}
    +
    enum MBCameraType {}

    Swift

    -
    enum PPCameraType : UInt
    +
    enum MBCameraType : UInt
    @@ -796,9 +805,9 @@

    Declaration

  • @@ -808,18 +817,18 @@

    Declaration

    Camera autofocus restricion mode

    - See more + See more

    Declaration

    Objective-C

    -
    enum PPCameraAutofocusRestriction {}
    +
    enum MBCameraAutofocusRestriction {}

    Swift

    -
    enum PPCameraAutofocusRestriction : UInt
    +
    enum MBCameraAutofocusRestriction : UInt
    @@ -919,7 +928,7 @@

    Declaration

    -

    Status of the object detection in MicroBlink SDK

    +

    Status of the object detection in Microblink SDK

    See more
    @@ -1410,7 +1419,7 @@

    Declaration

    diff --git a/docs/Enums/MBBarcodeType.html b/docs/Enums/MBBarcodeType.html index 471b659..29956b9 100644 --- a/docs/Enums/MBBarcodeType.html +++ b/docs/Enums/MBBarcodeType.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1033,7 +1042,7 @@

    Declaration

    diff --git a/docs/Enums/MBDateFormat.html b/docs/Enums/MBDateFormat.html index 9c8fcb1..80840c3 100644 --- a/docs/Enums/MBDateFormat.html +++ b/docs/Enums/MBDateFormat.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1095,7 +1104,7 @@

    Declaration

    diff --git a/docs/Enums/MBDeepOcrModel.html b/docs/Enums/MBDeepOcrModel.html index b3f1383..199cbb4 100644 --- a/docs/Enums/MBDeepOcrModel.html +++ b/docs/Enums/MBDeepOcrModel.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -741,7 +750,7 @@

    Declaration

    diff --git a/docs/Enums/MBDetectionCode.html b/docs/Enums/MBDetectionCode.html index 4669cd5..aef34e8 100644 --- a/docs/Enums/MBDetectionCode.html +++ b/docs/Enums/MBDetectionCode.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/Enums/MBDetectionStatus.html b/docs/Enums/MBDetectionStatus.html index 2ccd58d..ff79943 100644 --- a/docs/Enums/MBDetectionStatus.html +++ b/docs/Enums/MBDetectionStatus.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -692,7 +701,7 @@

    MBDetectionStatus

    -

    Status of the object detection in MicroBlink SDK

    +

    Status of the object detection in Microblink SDK

    @@ -979,7 +988,7 @@

    Declaration

    diff --git a/docs/Enums/MBDocumentSpecificationPreset.html b/docs/Enums/MBDocumentSpecificationPreset.html index 25dbf18..6706e63 100644 --- a/docs/Enums/MBDocumentSpecificationPreset.html +++ b/docs/Enums/MBDocumentSpecificationPreset.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -933,7 +942,7 @@

    Declaration

    diff --git a/docs/Enums/MBFrameQualityEstimationMode.html b/docs/Enums/MBFrameQualityEstimationMode.html index 2d00adb..87fb959 100644 --- a/docs/Enums/MBFrameQualityEstimationMode.html +++ b/docs/Enums/MBFrameQualityEstimationMode.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/Enums/MBMrtdSpecificationPreset.html b/docs/Enums/MBMrtdSpecificationPreset.html index da24456..c698792 100644 --- a/docs/Enums/MBMrtdSpecificationPreset.html +++ b/docs/Enums/MBMrtdSpecificationPreset.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/Enums/MBOcrFont.html b/docs/Enums/MBOcrFont.html index 64a5049..4456bf0 100644 --- a/docs/Enums/MBOcrFont.html +++ b/docs/Enums/MBOcrFont.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -2990,7 +2999,7 @@

    Declaration

    diff --git a/docs/Enums/MBParserResultState.html b/docs/Enums/MBParserResultState.html index db14ff5..ca289a4 100644 --- a/docs/Enums/MBParserResultState.html +++ b/docs/Enums/MBParserResultState.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/Enums/MBProcessingOrientation.html b/docs/Enums/MBProcessingOrientation.html index 640aedd..ca0839c 100644 --- a/docs/Enums/MBProcessingOrientation.html +++ b/docs/Enums/MBProcessingOrientation.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/Enums/MBProcessorResultState.html b/docs/Enums/MBProcessorResultState.html index 8eb2ee5..ea5727b 100644 --- a/docs/Enums/MBProcessorResultState.html +++ b/docs/Enums/MBProcessorResultState.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/Enums/MBRecognitionMode.html b/docs/Enums/MBRecognitionMode.html index 4240add..89fcbc7 100644 --- a/docs/Enums/MBRecognitionMode.html +++ b/docs/Enums/MBRecognitionMode.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/Enums/MBRecognizerResultState.html b/docs/Enums/MBRecognizerResultState.html index d37ce49..8f4758f 100644 --- a/docs/Enums/MBRecognizerResultState.html +++ b/docs/Enums/MBRecognizerResultState.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/Enums/MBScanningMode.html b/docs/Enums/MBScanningMode.html index 9255d39..b9d9f9c 100644 --- a/docs/Enums/MBScanningMode.html +++ b/docs/Enums/MBScanningMode.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/Enums/MBTopUpPreset.html b/docs/Enums/MBTopUpPreset.html index 9c49d2d..d2ada30 100644 --- a/docs/Enums/MBTopUpPreset.html +++ b/docs/Enums/MBTopUpPreset.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/Enums/PPCameraAutofocusRestriction.html b/docs/Enums/PPCameraAutofocusRestriction.html deleted file mode 100644 index 5adfbbb..0000000 --- a/docs/Enums/PPCameraAutofocusRestriction.html +++ /dev/null @@ -1,813 +0,0 @@ - - - - PPCameraAutofocusRestriction Enumeration Reference - - - - - - - - - - - - - - - - -
    -

    - - PPBlinkOCR Docs - - (78% documented) -

    - -

    -

    - -
    -

    - -

    - - - View on GitHub - -

    - -
    - - - -
    - -
    - -
    -
    -

    PPCameraAutofocusRestriction

    -
    -
    -
    enum PPCameraAutofocusRestriction {}
    - -
    -
    -

    Camera autofocus restricion mode

    - -
    -
    - -
    -
    -
    -
      -
    • - -
      -
      -
      -
      -
      -

      Default. Indicates that the autofocus system should not restrict the focus range.

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraAutofocusRestrictionNone
      - -
      -
      -

      Swift

      -
      case none = 0
      - -
      -
      -
      -
      -
    • -
    • - -
      -
      -
      -
      -
      -

      Indicates that the autofocus system should restrict the focus range for subject matter that is near to the camera.

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraAutofocusRestrictionNear
      - -
      -
      -

      Swift

      -
      case near = 1
      - -
      -
      -
      -
      -
    • -
    • - -
      -
      -
      -
      -
      -

      Indicates that the autofocus system should restrict the focus range for subject matter that is far from the camera.

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraAutofocusRestrictionFar
      - -
      -
      -

      Swift

      -
      case far = 2
      - -
      -
      -
      -
      -
    • -
    -
    -
    -
    - -
    -
    - - - - diff --git a/docs/Enums/PPCameraPreset.html b/docs/Enums/PPCameraPreset.html deleted file mode 100644 index a563d8d..0000000 --- a/docs/Enums/PPCameraPreset.html +++ /dev/null @@ -1,877 +0,0 @@ - - - - PPCameraPreset Enumeration Reference - - - - - - - - - - - - - - - - -
    -

    - - PPBlinkOCR Docs - - (78% documented) -

    - -

    -

    - -
    -

    - -

    - - - View on GitHub - -

    - -
    - - - -
    - -
    - -
    -
    -

    PPCameraPreset

    -
    -
    -
    enum PPCameraPreset {}
    - -
    -
    -

    Camera resolution preset

    - -
    -
    - -
    -
    -
    -
      -
    • -
      - - - - PPCameraPreset480p - -
      -
      -
      -
      -
      -
      -

      480p video will always be used

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPreset480p
      - -
      -
      -

      Swift

      -
      case preset480p = 0
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraPreset720p - -
      -
      -
      -
      -
      -
      -

      720p video will always be used

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPreset720p
      - -
      -
      -

      Swift

      -
      case preset720p = 1
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraPresetOptimal - -
      -
      -
      -
      -
      -
      -

      The library will calculate optimal resolution based on the use case and device used

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPresetOptimal
      - -
      -
      -

      Swift

      -
      case presetOptimal = 2
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraPresetMax - -
      -
      -
      -
      -
      -
      -

      Device’s maximal video resolution will be used.

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPresetMax
      - -
      -
      -

      Swift

      -
      case presetMax = 3
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraPresetPhoto - -
      -
      -
      -
      -
      -
      -

      Device’s photo preview resolution will be used

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPresetPhoto
      - -
      -
      -

      Swift

      -
      case presetPhoto = 4
      - -
      -
      -
      -
      -
    • -
    -
    -
    -
    - -
    -
    - - - - diff --git a/docs/Enums/PPCameraType.html b/docs/Enums/PPCameraType.html deleted file mode 100644 index 38ff79b..0000000 --- a/docs/Enums/PPCameraType.html +++ /dev/null @@ -1,781 +0,0 @@ - - - - PPCameraType Enumeration Reference - - - - - - - - - - - - - - - - -
    -

    - - PPBlinkOCR Docs - - (78% documented) -

    - -

    -

    - -
    -

    - -

    - - - View on GitHub - -

    - -
    - - - -
    - -
    - -
    -
    -

    PPCameraType

    -
    -
    -
    enum PPCameraType {}
    - -
    -
    -

    Camera type

    - -
    -
    - -
    -
    -
    -
      -
    • -
      - - - - PPCameraTypeBack - -
      -
      -
      -
      -
      -
      -

      Back facing camera

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraTypeBack
      - -
      -
      -

      Swift

      -
      case back = 0
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraTypeFront - -
      -
      -
      -
      -
      -
      -

      Front facing camera

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraTypeFront
      - -
      -
      -

      Swift

      -
      case front = 1
      - -
      -
      -
      -
      -
    • -
    -
    -
    -
    - -
    -
    - - - - diff --git a/docs/Enums/PPDocumentType.html b/docs/Enums/PPDocumentType.html index 5f0572f..1dc0b89 100644 --- a/docs/Enums/PPDocumentType.html +++ b/docs/Enums/PPDocumentType.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/Functions.html b/docs/Functions.html index 60288dd..c0eca46 100644 --- a/docs/Functions.html +++ b/docs/Functions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1755,7 +1764,7 @@

    Declaration

    diff --git a/docs/Protocols.html b/docs/Protocols.html index 18032a6..890bbc9 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1564,6 +1573,52 @@

    Declaration

    +
    +
      +
    • + +
      +
      +
      +
      +
      +

      Undocumented

      + + See more +
      +
      +

      Declaration

      +
      +

      Objective-C

      +
      @protocol MBStringProcessingRecognizerRunnerDelegate <NSObject>
      +@required
      +
      +/**
      + * Called when MBRecognizerRunner finishes processing given string.
      + * NOTE: This method is called on background processing thread. Make sure that you dispatch all your UI API calls to main thread.
      + */
      +- (void)recognizerRunner:(nonnull MBRecognizerRunner *)recognizerRunner didFinishProcessingString:(nonnull NSString *)string;
      +
      +@end
      + +
      +
      +

      Swift

      +
      protocol MBStringProcessingRecognizerRunnerDelegate
      + +
      +
      +
      +
      +
    • +
    +
    • @@ -1648,7 +1703,7 @@

      Declaration

    diff --git a/docs/Protocols/MBBarcodeOverlayViewControllerDelegate.html b/docs/Protocols/MBBarcodeOverlayViewControllerDelegate.html index 11bfc30..94032d4 100644 --- a/docs/Protocols/MBBarcodeOverlayViewControllerDelegate.html +++ b/docs/Protocols/MBBarcodeOverlayViewControllerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -735,9 +744,10 @@

    Declaration

    Objective-C

    - (void)
    -barcodeOverlayViewControllerDidFinishScanning:
    -    (nonnull MBBarcodeOverlayViewController *)barcodeOverlayViewController
    -                                        state:(MBRecognizerResultState)state;
    + barcodeOverlayViewControllerDidFinishScanning: + (nonnull MBBarcodeOverlayViewController *)barcodeOverlayViewController + state: + (MBRecognizerResultState)state;
    @@ -840,7 +850,7 @@

    Parameters

    diff --git a/docs/Protocols/MBDebugRecognizerRunnerDelegate.html b/docs/Protocols/MBDebugRecognizerRunnerDelegate.html index ad98b65..b77bd66 100644 --- a/docs/Protocols/MBDebugRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBDebugRecognizerRunnerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -777,7 +786,7 @@

    Declaration

    diff --git a/docs/Protocols/MBDetectionRecognizerRunnerDelegate.html b/docs/Protocols/MBDetectionRecognizerRunnerDelegate.html index 79cb43b..cbedab8 100644 --- a/docs/Protocols/MBDetectionRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBDetectionRecognizerRunnerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -907,7 +916,7 @@

    Parameters

    diff --git a/docs/Protocols/MBFrameGrabberRecognizerDelegate.html b/docs/Protocols/MBFrameGrabberRecognizerDelegate.html index a7602eb..0f2cf62 100644 --- a/docs/Protocols/MBFrameGrabberRecognizerDelegate.html +++ b/docs/Protocols/MBFrameGrabberRecognizerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -810,7 +819,7 @@

    Parameters

    diff --git a/docs/Protocols/MBNativeResult.html b/docs/Protocols/MBNativeResult.html index 399aafa..a4dec7d 100644 --- a/docs/Protocols/MBNativeResult.html +++ b/docs/Protocols/MBNativeResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -789,7 +798,7 @@

    Declaration

    diff --git a/docs/Protocols/MBOcrRecognizerRunnerDelegate.html b/docs/Protocols/MBOcrRecognizerRunnerDelegate.html index c0fb5cb..d8b3f64 100644 --- a/docs/Protocols/MBOcrRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBOcrRecognizerRunnerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -744,7 +753,7 @@

    Declaration

    diff --git a/docs/Protocols/MBOverlayContainerViewController.html b/docs/Protocols/MBOverlayContainerViewController.html index 23d1363..059c6e7 100644 --- a/docs/Protocols/MBOverlayContainerViewController.html +++ b/docs/Protocols/MBOverlayContainerViewController.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -946,7 +955,7 @@

    Declaration

    diff --git a/docs/Protocols/MBRecognizerRunnerViewController.html b/docs/Protocols/MBRecognizerRunnerViewController.html index 1b6e19b..494563e 100644 --- a/docs/Protocols/MBRecognizerRunnerViewController.html +++ b/docs/Protocols/MBRecognizerRunnerViewController.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1128,6 +1137,44 @@

    Declaration

    +
  • +
    + + + + -captureHighResImage: + +
    +
    +
    +
    +
    +
    +

    Method with block for getting high resoultion images

    +
    +

    Warning

    + this is returned from background thread + +
    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)captureHighResImage:
    +    (nonnull MBCaptureHighResImage)highResoulutionImageCaptured;
    + +
    +
    +

    Swift

    +
    func captureHighResImage(_ highResoulutionImageCaptured: @escaping MBCaptureHighResImage)
    + +
    +
    +
    +
    +
  • @@ -1136,7 +1183,7 @@

    Declaration

    diff --git a/docs/Protocols/MBRecognizerRunnerViewControllerDelegate.html b/docs/Protocols/MBRecognizerRunnerViewControllerDelegate.html index 733790b..5203cce 100644 --- a/docs/Protocols/MBRecognizerRunnerViewControllerDelegate.html +++ b/docs/Protocols/MBRecognizerRunnerViewControllerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1055,7 +1064,7 @@

    Parameters

    diff --git a/docs/Protocols/MBScanningRecognizerRunnerDelegate.html b/docs/Protocols/MBScanningRecognizerRunnerDelegate.html index 300fb00..bddc9f7 100644 --- a/docs/Protocols/MBScanningRecognizerRunnerDelegate.html +++ b/docs/Protocols/MBScanningRecognizerRunnerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -787,7 +796,7 @@

    Parameters

    diff --git a/docs/Protocols/MBTemplatingClassifier.html b/docs/Protocols/MBTemplatingClassifier.html index 611fe9e..711ac67 100644 --- a/docs/Protocols/MBTemplatingClassifier.html +++ b/docs/Protocols/MBTemplatingClassifier.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -745,7 +754,7 @@

    Declaration

    diff --git a/docs/Structs.html b/docs/Structs.html index 57e0c34..e8b0796 100644 --- a/docs/Structs.html +++ b/docs/Structs.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/Structs/_MBRange.html b/docs/Structs/_MBRange.html index 754bdbf..ddd899f 100644 --- a/docs/Structs/_MBRange.html +++ b/docs/Structs/_MBRange.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -773,7 +782,7 @@

    Declaration

    diff --git a/docs/Structs/_MBScale.html b/docs/Structs/_MBScale.html index 26505fa..892b9ec 100644 --- a/docs/Structs/_MBScale.html +++ b/docs/Structs/_MBScale.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -773,7 +782,7 @@

    Declaration

    diff --git a/docs/Type Definitions.html b/docs/Type Definitions.html index 13338b4..648f568 100644 --- a/docs/Type Definitions.html +++ b/docs/Type Definitions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -924,13 +933,49 @@

    Declaration

    +
    +
      +
    • +
      + + + + MBCaptureHighResImage + +
      +
      +
      +
      +
      +
      +

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

      + +
      +
      +

      Declaration

      +
      +

      Objective-C

      +
      typedef void (^MBCaptureHighResImage)(MBImage *_Nullable)
      + +
      +
      +

      Swift

      +
      typealias MBCaptureHighResImage = (MBImage?) -> Void
      + +
      +
      +
      +
      +
    • +
    +
    diff --git a/docs/Type Definitions/CGLine.html b/docs/Type Definitions/CGLine.html index ac8dace..95b3245 100644 --- a/docs/Type Definitions/CGLine.html +++ b/docs/Type Definitions/CGLine.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -748,7 +757,7 @@

    Declaration

    diff --git a/docs/Type Definitions/CGLine/.html b/docs/Type Definitions/CGLine/.html index 2ba74a7..08e0477 100644 --- a/docs/Type Definitions/CGLine/.html +++ b/docs/Type Definitions/CGLine/.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -776,7 +785,7 @@

    Declaration

    diff --git a/docs/Type Definitions/MBRange.html b/docs/Type Definitions/MBRange.html index b94bd39..195a4fa 100644 --- a/docs/Type Definitions/MBRange.html +++ b/docs/Type Definitions/MBRange.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/Type Definitions/MBRange/_MBRange.html b/docs/Type Definitions/MBRange/_MBRange.html index 1e6074f..3d3c867 100644 --- a/docs/Type Definitions/MBRange/_MBRange.html +++ b/docs/Type Definitions/MBRange/_MBRange.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -773,7 +782,7 @@

    Declaration

    diff --git a/docs/Type Definitions/MBScale.html b/docs/Type Definitions/MBScale.html index 219210a..0203aff 100644 --- a/docs/Type Definitions/MBScale.html +++ b/docs/Type Definitions/MBScale.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/Type Definitions/MBScale/_MBScale.html b/docs/Type Definitions/MBScale/_MBScale.html index 1de778f..2717fbf 100644 --- a/docs/Type Definitions/MBScale/_MBScale.html +++ b/docs/Type Definitions/MBScale/_MBScale.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -773,7 +782,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes.html index 02fa1a4..3c6e48b 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -831,12 +840,12 @@

    Declaration

    Objective-C

    
    -@interface MBBarcodeOverlayViewController : MBBaseOverlayViewController
    +@interface MBBarcodeOverlayViewController : MBBaseOverlayViewController

    Swift

    -
    class MBBarcodeOverlayViewController : MBBaseOverlayViewController
    +
    class MBBarcodeOverlayViewController : MBBaseOverlayViewController
    @@ -1055,6 +1064,7 @@

    Declaration

    Common base class for default overlay view controllers

    + See more

    Declaration

    @@ -1946,13 +1956,12 @@

    Declaration

    Objective-C

    
    -@interface MBDotsResultSubview
    -    : MBSubview <MBPointDetectorSubview, MBOcrLayoutSubview>
    +@interface MBDotsResultSubview : MBSubview <MBPointDetectorSubview>

    Swift

    -
    class MBDotsResultSubview : MBSubview, MBPointDetectorSubview, MBOcrLayoutSubview
    +
    class MBDotsResultSubview : MBSubview, MBPointDetectorSubview
    @@ -2269,6 +2278,45 @@

    Declaration

    +
    +
      +
    • +
      + + + + MBGlareStatusSubview + +
      +
      +
      +
      +
      +
      +

      Overlay subview presenting the status of glare detection. +The subview is presented as translucent view with detection status label in the center of ID Card View Finder View

      + + See more +
      +
      +

      Declaration

      +
      +

      Objective-C

      +
      
      +@interface MBGlareStatusSubview : MBSubview
      + +
      +
      +

      Swift

      +
      class MBGlareStatusSubview : MBSubview
      + +
      +
      +
      +
      +
    • +
    +
    • @@ -2595,11 +2643,10 @@

      Declaration

      /** Returns true if the help was already shown */ - (BOOL)isHelpShown; -/** - * This method check existance of the default resources bundle Microblink.bundle, - * and throws an exception if it's missing +/** + * Returns the default resources bundle. If it doesn't exist, it will be nil. */ -+ (NSBundle *)verifyAndGetDefaultResourcesBundle; ++ (NSBundle *)getDefaultResourcesBundle; @end @@ -4912,7 +4959,7 @@

      Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBAmountParser.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBAmountParser.html index 622ff2d..1bdb735 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBAmountParser.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBAmountParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -915,7 +924,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBAmountParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBAmountParserResult.html index a7a3a0b..cce56c3 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBAmountParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBAmountParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeOverlaySettings.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeOverlaySettings.html index 9b481f7..f1ac84c 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeOverlaySettings.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeOverlaySettings.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -715,14 +724,16 @@

    MBBarcodeOverlaySettings

    -

    Undocumented

    +

    If YES, viewfinder (4 corner markers) will move when payslip is detected

    + +

    Default: YES

    Declaration

    Objective-C

    -
    @property (nonatomic, assign) BOOL displayBarcodeDots
    +
    @property (assign, readwrite, nonatomic) BOOL displayBarcodeDots;
    @@ -747,14 +758,16 @@

    Declaration

    -

    Undocumented

    +

    If YES; view finder will be displayed

    + +

    Default: YES

    Declaration

    Objective-C

    -
    @property (nonatomic, assign) BOOL displayViewfinder
    +
    @property (assign, readwrite, nonatomic) BOOL displayViewfinder;
    @@ -774,7 +787,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeOverlayViewController.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeOverlayViewController.html index ba75cf8..d6d3106 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeOverlayViewController.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeOverlayViewController.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -689,7 +698,7 @@

    MBBarcodeOverlayViewController

    
    -@interface MBBarcodeOverlayViewController : MBBaseOverlayViewController
    +@interface MBBarcodeOverlayViewController : MBBaseOverlayViewController
    @@ -784,10 +793,10 @@

    Declaration

    Objective-C

    - (nonnull instancetype)
    -    initWithSettings:(nonnull MBBarcodeOverlaySettings *)settings
    -recognizerCollection:(nonnull MBRecognizerCollection *)recognizerCollection
    -            delegate:
    -                (nonnull id<MBBarcodeOverlayViewControllerDelegate>)delegate;
    + initWithSettings:(nonnull MBBarcodeOverlaySettings *)settings + recognizerCollection:(nonnull MBRecognizerCollection *)recognizerCollection + delegate:(nonnull id<MBBarcodeOverlayViewControllerDelegate>) + delegate;
    @@ -837,7 +846,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeRecognizer.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeRecognizer.html index 6c7ee50..d718abc 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeRecognizer.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -771,9 +780,9 @@

    Declaration

  • - - - scanAztec + + + scanAztecCode
    @@ -790,12 +799,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanAztec;
    +
    @property (assign, readwrite, nonatomic) BOOL scanAztecCode;

    Swift

    -
    var scanAztec: Bool { get set }
    +
    var scanAztecCode: Bool { get set }
    @@ -907,9 +916,9 @@

    Declaration

  • - - - scanEAN13 + + + scanEan13
    @@ -926,12 +935,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanEAN13;
    +
    @property (assign, readwrite, nonatomic) BOOL scanEan13;

    Swift

    -
    var scanEAN13: Bool { get set }
    +
    var scanEan13: Bool { get set }
    @@ -941,9 +950,9 @@

    Declaration

  • - - - scanEAN8 + + + scanEan8
    @@ -960,12 +969,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanEAN8;
    +
    @property (assign, readwrite, nonatomic) BOOL scanEan8;

    Swift

    -
    var scanEAN8: Bool { get set }
    +
    var scanEan8: Bool { get set }
    @@ -975,9 +984,9 @@

    Declaration

  • - - - scanITF + + + scanItf
    @@ -994,12 +1003,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanITF;
    +
    @property (assign, readwrite, nonatomic) BOOL scanItf;

    Swift

    -
    var scanITF: Bool { get set }
    +
    var scanItf: Bool { get set }
    @@ -1009,9 +1018,9 @@

    Declaration

  • - - - scanQR + + + scanQrCode
    @@ -1028,12 +1037,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanQR;
    +
    @property (assign, readwrite, nonatomic) BOOL scanQrCode;

    Swift

    -
    var scanQR: Bool { get set }
    +
    var scanQrCode: Bool { get set }
    @@ -1043,9 +1052,9 @@

    Declaration

  • - - - scanUPCA + + + scanUpca
    @@ -1062,12 +1071,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanUPCA;
    +
    @property (assign, readwrite, nonatomic) BOOL scanUpca;

    Swift

    -
    var scanUPCA: Bool { get set }
    +
    var scanUpca: Bool { get set }
    @@ -1077,9 +1086,9 @@

    Declaration

  • - - - scanUPCE + + + scanUpce
    @@ -1096,12 +1105,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL scanUPCE;
    +
    @property (assign, readwrite, nonatomic) BOOL scanUpce;

    Swift

    -
    var scanUPCE: Bool { get set }
    +
    var scanUpce: Bool { get set }
    @@ -1145,9 +1154,9 @@

    Declaration

  • @@ -1157,19 +1166,19 @@

    Declaration

    Set this to YES to allow slower, but better image processing.

    -

    Defailt: YES

    +

    Default: YES

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL useSlowerThoroughScan;
    +
    @property (assign, readwrite, nonatomic) BOOL slowerThoroughScan;

    Swift

    -
    var useSlowerThoroughScan: Bool { get set }
    +
    var slowerThoroughScan: Bool { get set }
    @@ -1196,6 +1205,10 @@

    Declaration

    NOTE: This setting is applied only for Code39 and Code128 barcode scanning.

    +
      +
    • Default: YES
    • +
    +

    Declaration

    @@ -1227,7 +1240,9 @@

    Declaration

    Enable reading code39 barcode contents as extended data. For more information about code39 -extended data (a.k.a. full ASCII mode), see https://en.wikipedia.org/wiki/Code_39#Full_ASCII_Code_39

    + extended data (a.k.a. full ASCII mode), see https://en.wikipedia.org/wiki/Code_39#Full_ASCII_Code_39

    + +

    Default: NO

    @@ -1323,9 +1338,9 @@

    Declaration

  • @@ -1344,12 +1359,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL allowNullQuietZone;
    +
    @property (assign, readwrite, nonatomic) BOOL nullQuietZoneAllowed;

    Swift

    -
    var allowNullQuietZone: Bool { get set }
    +
    var nullQuietZoneAllowed: Bool { get set }
    @@ -1364,7 +1379,7 @@

    Declaration

  • diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeRecognizerResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeRecognizerResult.html index b576172..29987c9 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeRecognizerResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBarcodeRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -733,9 +742,9 @@

    Declaration

  • - - - -data + + + rawData
    @@ -750,12 +759,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (NSData *_Nullable)data;
    +
    @property (readonly, strong, nonatomic, nullable) NSData *rawData;

    Swift

    -
    func data() -> Data?
    +
    var rawData: Data? { get }
    @@ -765,9 +774,9 @@

    Declaration

  • - - - -stringData + + + stringData
    @@ -782,12 +791,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (nonnull NSString *)stringData;
    +
    @property (readonly, strong, nonatomic, nullable) NSString *stringData;

    Swift

    -
    func stringData() -> String
    +
    var stringData: String? { get }
    @@ -797,9 +806,9 @@

    Declaration

  • - - - -isUncertain + + + uncertain
    @@ -815,12 +824,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (BOOL)isUncertain;
    +
    @property (readonly, assign, nonatomic) BOOL uncertain;

    Swift

    -
    func isUncertain() -> Bool
    +
    var uncertain: Bool { get }
    @@ -926,7 +935,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBaseOcrEngineOptions.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBaseOcrEngineOptions.html index c4fee63..05c0aa6 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBaseOcrEngineOptions.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBaseOcrEngineOptions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -703,78 +712,6 @@

    MBBaseOcrEngineOptions

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBlinkInputRecognizerResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBlinkInputRecognizerResult.html index 9491d0f..e60afde 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBlinkInputRecognizerResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBBlinkInputRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -737,7 +746,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBCameraSettings.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBCameraSettings.html index 395a93b..6d655ca 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBCameraSettings.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBCameraSettings.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -724,12 +733,12 @@

    MBCameraSettings

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) PPCameraPreset cameraPreset;
    +
    @property (assign, readwrite, nonatomic) MBCameraPreset cameraPreset;

    Swift

    -
    var cameraPreset: PPCameraPreset { get set }
    +
    var cameraPreset: MBCameraPreset { get set }
    @@ -751,19 +760,19 @@

    Declaration

    Camera type. You can choose between front and back facing.

    -

    Default: PPCameraTypeBack

    +

    Default: MBCameraTypeBack

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) PPCameraType cameraType;
    +
    @property (assign, readwrite, nonatomic) MBCameraType cameraType;

    Swift

    -
    var cameraType: PPCameraType { get set }
    +
    var cameraType: MBCameraType { get set }
    @@ -833,12 +842,12 @@

    Declaration

    Objective-C

    @property (assign, readwrite, nonatomic)
    -    PPCameraAutofocusRestriction cameraAutofocusRestriction;
    + MBCameraAutofocusRestriction cameraAutofocusRestriction;

    Swift

    -
    var cameraAutofocusRestriction: PPCameraAutofocusRestriction { get set }
    +
    var cameraAutofocusRestriction: MBCameraAutofocusRestriction { get set }
    @@ -1097,7 +1106,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBCharWithVariants.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBCharWithVariants.html index 3c599af..df4a61b 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBCharWithVariants.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBCharWithVariants.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -892,7 +901,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDPIBasedDewarpPolicy.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDPIBasedDewarpPolicy.html index 778483f..c67a7c8 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDPIBasedDewarpPolicy.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDPIBasedDewarpPolicy.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -831,7 +840,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateParser.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateParser.html index 7eada0c..d0afa79 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateParser.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -844,7 +853,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateParserResult.html index b200849..c427da7 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateResult.html index 15f0305..e7908d4 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDateResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -878,12 +887,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (readonly, nonatomic, nonnull) NSDate *date;
    +
    @property (readonly, nonatomic, nullable) NSDate *date;

    Swift

    -
    var date: Date { get }
    +
    var date: Date? { get }
    @@ -1084,7 +1093,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDeepOcrEngineOptions.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDeepOcrEngineOptions.html index fa93964..346f63d 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDeepOcrEngineOptions.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDeepOcrEngineOptions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -849,7 +858,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorRecognizer.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorRecognizer.html index 232210c..87b0f89 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorRecognizer.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -873,7 +882,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorRecognizerResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorRecognizerResult.html index a4d2cb5..5c993f5 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorRecognizerResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -737,7 +746,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorResult.html index ea81e13..7745d74 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -774,7 +783,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDewarpPolicy.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDewarpPolicy.html index 3977a11..ed43f42 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDewarpPolicy.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDewarpPolicy.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableDetection.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableDetection.html index 9e7c2a8..d145a4b 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableDetection.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableDetection.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableObject.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableObject.html index affdb58..6d6129b 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableObject.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableObject.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -743,7 +752,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayablePointsDetection.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayablePointsDetection.html index 1ed88e1..a616db5 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayablePointsDetection.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayablePointsDetection.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableQuadDetection.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableQuadDetection.html index 96b8c0f..0793401 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableQuadDetection.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDisplayableQuadDetection.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -744,7 +753,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentDetector.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentDetector.html index 0b9a0f3..5cb1c5c 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentDetector.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentDetector.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -891,7 +900,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentDetectorResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentDetectorResult.html index eb5c263..5031e7c 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentDetectorResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentSpecification.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentSpecification.html index c69d7b1..cf9195e 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentSpecification.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBDocumentSpecification.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1117,7 +1126,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBEmailParser.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBEmailParser.html index 406b715..de59843 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBEmailParser.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBEmailParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBEmailParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBEmailParserResult.html index 1ea0333..09c358b 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBEmailParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBEmailParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBFixedDewarpPolicy.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBFixedDewarpPolicy.html index 3f4dc69..ddcc3b4 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBFixedDewarpPolicy.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBFixedDewarpPolicy.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -829,7 +838,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBFrameGrabberRecognizer.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBFrameGrabberRecognizer.html index 7f94554..082915a 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBFrameGrabberRecognizer.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBFrameGrabberRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBIbanParser.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBIbanParser.html index 7f8e06e..2897c6d 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBIbanParser.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBIbanParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -844,7 +853,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBIbanParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBIbanParserResult.html index ea2b95c..6ed8246 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBIbanParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBIbanParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImage.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImage.html index b3e4e71..3225501 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImage.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImage.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -983,7 +992,7 @@

    Declaration

    -

    Creates PPImage around CVImageBufferRef.

    +

    Creates MBImage around CVImageBufferRef.

    @@ -1003,6 +1012,38 @@

    Declaration

    +
  • + +
    +
    +
    +
    +
    +

    Creates MBImage around CVPixelBufferRef.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (nonnull instancetype)imageWithCvPixelBuffer:(nonnull CVPixelBufferRef)buffer;
    + +
    +
    +

    Swift

    +
    convenience init(cvPixelBuffer buffer: CVPixelBuffer)
    + +
    +
    +
    +
    +
  • @@ -1011,7 +1052,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessor.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessor.html index a312686..f9fae85 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessor.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessor.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -810,7 +819,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessorResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessorResult.html index 1b3e36d..c042d38 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessorResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBImageReturnProcessorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -802,7 +811,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBLicensePlatesParser.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBLicensePlatesParser.html index 6832c58..8b0308e 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBLicensePlatesParser.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBLicensePlatesParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -775,7 +784,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBLicensePlatesParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBLicensePlatesParserResult.html index 4e6e281..9a3fd9f 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBLicensePlatesParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBLicensePlatesParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMicroblinkSDK.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMicroblinkSDK.html index 7f33d9d..06540e1 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMicroblinkSDK.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMicroblinkSDK.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -786,7 +795,7 @@

    Declaration

    is equal to Microblink.bundle located in Main app bundle.

    i.e, this is by default initialized to: - [NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:@MicroBlink ofType:@bundle];

    + [NSBundle bundleWithPath:[[NSBundle mainBundle] pathForResource:@Microblink ofType:@bundle];

    @@ -1273,6 +1282,76 @@

    Return Value

    +
  • + +
    +
    +
    +
    +
    +

    This method returns true when scanning is unsupported on a specific device. + Error object contains description of the reason for that.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    + (BOOL)isScanningUnsupportedForCameraType:(MBCameraType)type
    +                                     error:(NSError *_Nullable *_Nullable)error;
    + +
    +
    +

    Swift

    +
    class func isScanningUnsupported(for type: MBCameraType, error: NSErrorPointer) -> Bool
    + +
    +
    +
    +

    Parameters

    + + + + + + + + + + + +
    + + type + + +
    +

    The camera type you want to check for.

    +
    +
    + + error + + +
    +

    If scanning is not supported, when method this method returns, this parameter contains an NSError object that describes the +problem. If you are not interested in possible errors, pass in NULL.

    +
    +
    +
    +
    +

    Return Value

    +

    YES if scanning is not supported, NO otherwise.

    +
    +
    +
    +
  • @@ -1281,7 +1360,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdDetector.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdDetector.html index e7788ca..54a10b5 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdDetector.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdDetector.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -901,7 +910,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdDetectorResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdDetectorResult.html index 54b6ad3..17cabdf 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdDetectorResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -801,7 +810,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdSpecification.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdSpecification.html index 57f509f..f01ffbb 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdSpecification.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBMrtdSpecification.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -793,7 +802,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBNoUpScalingDewarpPolicy.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBNoUpScalingDewarpPolicy.html index 5e8dbe0..77c1a09 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBNoUpScalingDewarpPolicy.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBNoUpScalingDewarpPolicy.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -834,7 +843,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrBlock.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrBlock.html index 8d9f8d4..3bf3193 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrBlock.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrBlock.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -911,7 +920,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrChar.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrChar.html index 56cfd12..b701c70 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrChar.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrChar.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1010,7 +1019,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrCharKey.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrCharKey.html index 530449c..bb521ba 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrCharKey.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrCharKey.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -912,7 +921,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrEngineOptions.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrEngineOptions.html index b0dcc60..10e457d 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrEngineOptions.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrEngineOptions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,6 +778,78 @@

    Declaration

    +
  • +
    + + + + minimalLineHeight + +
    +
    +
    +
    +
    +
    +

    Minimal height of the line of text given in pixels. All chars smaller than this value will be ignored.

    + +

    Setting the minimal line height can reduce the noise in OCR results.

    + +

    Default: 10

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (assign, readwrite, nonatomic) NSUInteger minimalLineHeight;
    + +
    +
    +

    Swift

    +
    var minimalLineHeight: UInt { get set }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + maximalLineHeight + +
    +
    +
    +
    +
    +
    +

    Maximal height of the line of text given in pixels.

    + +

    Setting the maximal line height can reduce the noise in OCR results.

    + +

    Default: 200

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (assign, readwrite, nonatomic) NSUInteger maximalLineHeight;
    + +
    +
    +

    Swift

    +
    var maximalLineHeight: UInt { get set }
    + +
    +
    +
    +
    +
  • @@ -849,7 +930,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrLayout.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrLayout.html index b123630..b881004 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrLayout.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrLayout.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1116,7 +1125,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrLine.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrLine.html index 9abfe71..43ab39a 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrLine.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOcrLine.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -912,7 +921,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOverlayViewController.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOverlayViewController.html index f671750..068ce06 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOverlayViewController.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBOverlayViewController.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -831,7 +840,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessor.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessor.html index 610279d..fcd5fe2 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessor.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessor.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -869,7 +878,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessorResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessorResult.html index 7764d75..b07d14a 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessorResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserGroupProcessorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserResult.html index 4ba23ce..f1039bb 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPdf417Recognizer.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPdf417Recognizer.html index 93ad5a0..a00ce7b 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPdf417Recognizer.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPdf417Recognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -807,9 +816,9 @@

    Declaration

  • @@ -828,12 +837,12 @@

    Declaration

    Declaration

    Objective-C

    -
    @property (assign, readwrite, nonatomic) BOOL allowNullQuietZone;
    +
    @property (assign, readwrite, nonatomic) BOOL nullQuietZoneAllowed;

    Swift

    -
    var allowNullQuietZone: Bool { get set }
    +
    var nullQuietZoneAllowed: Bool { get set }
    @@ -885,7 +894,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPdf417RecognizerResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPdf417RecognizerResult.html index 5dbcc11..537ddce 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPdf417RecognizerResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPdf417RecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -732,9 +741,9 @@

    Declaration

  • - - - -data + + + rawData
    @@ -749,12 +758,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (NSData *_Nullable)data;
    +
    @property (readonly, strong, nonatomic, nullable) NSData *rawData;

    Swift

    -
    func data() -> Data?
    +
    var rawData: Data? { get }
    @@ -764,9 +773,9 @@

    Declaration

  • - - - -stringData + + + stringData
    @@ -781,12 +790,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (nonnull NSString *)stringData;
    +
    @property (readonly, strong, nonatomic, nullable) NSString *stringData;

    Swift

    -
    func stringData() -> String
    +
    var stringData: String? { get }
    @@ -796,9 +805,9 @@

    Declaration

  • - - - -isUncertain + + + uncertain
    @@ -814,12 +823,12 @@

    Declaration

    Declaration

    Objective-C

    -
    - (BOOL)isUncertain;
    +
    @property (readonly, assign, nonatomic) BOOL uncertain;

    Swift

    -
    func isUncertain() -> Bool
    +
    var uncertain: Bool { get }
    @@ -870,7 +879,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPosition.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPosition.html index 9cb8f0f..0004b56 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPosition.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBPosition.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1124,7 +1133,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBProcessorGroup.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBProcessorGroup.html index 71c99fb..e9e4b55 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBProcessorGroup.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBProcessorGroup.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -750,10 +759,10 @@

    Declaration

    Objective-C

    - (nonnull instancetype)
    -initWithProcessingLocation:(CGRect)processingLocation
    -              dewarpPolicy:(nonnull MBDewarpPolicy *)dewarpPolicy
    -             andProcessors:
    -                 (nonnull NSArray<__kindof MBProcessor *> *)processors;
    + initWithProcessingLocation:(CGRect)processingLocation + dewarpPolicy:(nonnull MBDewarpPolicy *)dewarpPolicy + andProcessors: + (nonnull NSArray<__kindof MBProcessor *> *)processors;
    @@ -849,7 +858,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBProcessorResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBProcessorResult.html index 2a45939..db458b7 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBProcessorResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBProcessorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadDetector.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadDetector.html index ead144a..c3dc169 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadDetector.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadDetector.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadDetectorResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadDetectorResult.html index 90cf6e3..318b3fa 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadDetectorResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadWithSizeDetector.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadWithSizeDetector.html index e8536b4..ebd9e64 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadWithSizeDetector.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadWithSizeDetector.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -771,7 +780,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadWithSizeDetectorResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadWithSizeDetectorResult.html index 3c6f419..c23b2bb 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadWithSizeDetectorResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadWithSizeDetectorResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -770,7 +779,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadrangle.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadrangle.html index 44cfd74..968dd66 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadrangle.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBQuadrangle.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1043,7 +1052,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRawParser.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRawParser.html index 2445792..2d1bbcf 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRawParser.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRawParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -820,7 +829,9 @@

    Declaration

    Sets the OCR engine options used in Regex OCR parser. -Returns the OCR engine options used in Regex OCR parser.

    + Returns the OCR engine options used in Regex OCR parser.

    + +

    Default: default instance of MBOcrEngineOptions

    @@ -848,7 +859,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRawParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRawParserResult.html index 4980420..4a927a0 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRawParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRawParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizer.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizer.html index 0ae518d..cec6d72 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizer.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -702,42 +711,6 @@

    MBRecognizer

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizerRunner.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizerRunner.html index 25c6e52..8d16bae 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizerRunner.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizerRunner.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -799,6 +808,38 @@

    Declaration

    +
  • + +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (nonatomic, weak, nullable) id<MBStringProcessingRecognizerRunnerDelegate> stringProcessingRecognizerRunnerDelegate
    + +
    +
    +

    Swift

    +
    weak var stringProcessingRecognizerRunnerDelegate: MBStringProcessingRecognizerRunnerDelegate? { get set }
    + +
    +
    +
    +
    +
  • @@ -1004,7 +1045,7 @@

    Declaration

    Processes a MBImage object synchronously using current settings. Since this method is synchronous, calling it from a main thread will switch the call to alternate thread internally and output a warning.

    -

    Results are passed a delegate object given upon a creation of PPCoordinator.

    +

    Results are passed a delegate object given upon a creation of MBCoordinator.

    @@ -1042,6 +1083,60 @@

    Parameters

  • +
  • +
    + + + + -processString: + +
    +
    +
    +
    +
    +
    +

    Processes a NSString object synchronously using current settings. + Since this method is synchronous, calling it from a main thread will switch the call to alternate thread internally and output a warning.

    + +

    Results are passed a delegate object given upon a creation of MBCoordinator.

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)processString:(nonnull NSString *)string;
    + +
    +
    +

    Swift

    +
    func processString(_ string: String)
    + +
    +
    +
    +

    Parameters

    + + + + + + + +
    + + string + + +
    +

    string for processing

    +
    +
    +
    +
    +
    +
  • @@ -1086,7 +1181,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerMetadataDelegates.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerMetadataDelegates.html index e610024..fcab010 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerMetadataDelegates.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRecognizerRunnerMetadataDelegates.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -838,7 +847,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRegexParser.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRegexParser.html index 1ba78a2..d3ecf22 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRegexParser.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRegexParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -975,7 +984,9 @@

    Declaration

    Sets the OCR engine options used in Regex OCR parser. -Returns the OCR engine options used in Regex OCR parser.

    + Returns the OCR engine options used in Regex OCR parser.

    + +

    Default: default instance of MBOcrEngineOptions

    @@ -1003,7 +1014,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRegexParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRegexParserResult.html index e3828a5..647d627 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRegexParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBRegexParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSimNumberRecognizer.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSimNumberRecognizer.html index e9cc695..cf3f029 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSimNumberRecognizer.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSimNumberRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -775,7 +784,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSimNumberRecognizerResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSimNumberRecognizerResult.html index fae8223..9e3957e 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSimNumberRecognizerResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSimNumberRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizer.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizer.html index 0957568..8a8d76b 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizer.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -794,6 +803,38 @@

    Declaration

    +
  • +
    + + + + slaveRecognizer + +
    +
    +
    +
    +
    +
    +

    Slave recognizer that is wrapped with SuccessFrameGrabber

    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    @property (readonly, strong, nonatomic) MBRecognizer *_Nonnull slaveRecognizer;
    + +
    +
    +

    Swift

    +
    var slaveRecognizer: MBRecognizer { get }
    + +
    +
    +
    +
    +
  • @@ -802,7 +843,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizerResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizerResult.html index afa0ec4..4de0feb 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizerResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBSuccessFrameGrabberRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -770,7 +779,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingClass.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingClass.html index 5f8bcc2..f19bc72 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingClass.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingClass.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -974,7 +983,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizer.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizer.html index add222d..25645db 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizer.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizer.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizerResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizerResult.html index 5a1d6a3..41cdd82 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizerResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTemplatingRecognizerResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -771,7 +780,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTopUpParser.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTopUpParser.html index e0700e0..01d04f5 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTopUpParser.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTopUpParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -933,7 +942,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTopUpParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTopUpParserResult.html index cac411d..09cf889 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTopUpParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBTopUpParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBViewControllerFactory.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBViewControllerFactory.html index 519999a..8cf9238 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBViewControllerFactory.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBViewControllerFactory.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -735,8 +744,8 @@

    Declaration

    Objective-C

    + (nonnull UIViewController<MBRecognizerRunnerViewController> *)
    -recognizerRunnerViewControllerWithOverlayViewController:
    -    (nonnull MBOverlayViewController *)overlayViewController;
    + recognizerRunnerViewControllerWithOverlayViewController: + (nonnull MBOverlayViewController *)overlayViewController;
    @@ -779,7 +788,7 @@

    Return Value

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBVinParser.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBVinParser.html index ce64354..f50c339 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBVinParser.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBVinParser.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -774,7 +783,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBVinParserResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBVinParserResult.html index 7aca418..dea6758 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBVinParserResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Classes/MBVinParserResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Constants.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Constants.html index 8dbd3d4..a421dff 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Constants.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Constants.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -927,7 +936,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums.html index 6b46980..735104e 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -730,9 +739,9 @@

    Declaration

  • @@ -742,18 +751,18 @@

    Declaration

    Camera resolution preset

    - See more + See more

    Declaration

    Objective-C

    -
    enum PPCameraPreset {}
    +
    enum MBCameraPreset {}

    Swift

    -
    enum PPCameraPreset : UInt
    +
    enum MBCameraPreset : UInt
    @@ -763,9 +772,9 @@

    Declaration

  • @@ -775,18 +784,18 @@

    Declaration

    Camera type

    - See more + See more

    Declaration

    Objective-C

    -
    enum PPCameraType {}
    +
    enum MBCameraType {}

    Swift

    -
    enum PPCameraType : UInt
    +
    enum MBCameraType : UInt
    @@ -796,9 +805,9 @@

    Declaration

  • @@ -808,18 +817,18 @@

    Declaration

    Camera autofocus restricion mode

    - See more + See more

    Declaration

    Objective-C

    -
    enum PPCameraAutofocusRestriction {}
    +
    enum MBCameraAutofocusRestriction {}

    Swift

    -
    enum PPCameraAutofocusRestriction : UInt
    +
    enum MBCameraAutofocusRestriction : UInt
    @@ -919,7 +928,7 @@

    Declaration

    -

    Status of the object detection in MicroBlink SDK

    +

    Status of the object detection in Microblink SDK

    See more
    @@ -1410,7 +1419,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBBarcodeType.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBBarcodeType.html index 471b659..29956b9 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBBarcodeType.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBBarcodeType.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings
  • + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1033,7 +1042,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDateFormat.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDateFormat.html index 9c8fcb1..80840c3 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDateFormat.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDateFormat.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1095,7 +1104,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDeepOcrModel.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDeepOcrModel.html index b3f1383..199cbb4 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDeepOcrModel.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDeepOcrModel.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -741,7 +750,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDetectionCode.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDetectionCode.html index 4669cd5..aef34e8 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDetectionCode.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDetectionCode.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDetectionStatus.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDetectionStatus.html index 2ccd58d..ff79943 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDetectionStatus.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDetectionStatus.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -692,7 +701,7 @@

    MBDetectionStatus

    -

    Status of the object detection in MicroBlink SDK

    +

    Status of the object detection in Microblink SDK

    @@ -979,7 +988,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDocumentSpecificationPreset.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDocumentSpecificationPreset.html index 25dbf18..6706e63 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDocumentSpecificationPreset.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBDocumentSpecificationPreset.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -933,7 +942,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBFrameQualityEstimationMode.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBFrameQualityEstimationMode.html index 2d00adb..87fb959 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBFrameQualityEstimationMode.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBFrameQualityEstimationMode.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBMrtdSpecificationPreset.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBMrtdSpecificationPreset.html index da24456..c698792 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBMrtdSpecificationPreset.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBMrtdSpecificationPreset.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBOcrFont.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBOcrFont.html index 64a5049..4456bf0 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBOcrFont.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBOcrFont.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -2990,7 +2999,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBParserResultState.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBParserResultState.html index db14ff5..ca289a4 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBParserResultState.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBParserResultState.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBProcessingOrientation.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBProcessingOrientation.html index 640aedd..ca0839c 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBProcessingOrientation.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBProcessingOrientation.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBProcessorResultState.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBProcessorResultState.html index 8eb2ee5..ea5727b 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBProcessorResultState.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBProcessorResultState.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBRecognitionMode.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBRecognitionMode.html index 4240add..89fcbc7 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBRecognitionMode.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBRecognitionMode.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBRecognizerResultState.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBRecognizerResultState.html index d37ce49..8f4758f 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBRecognizerResultState.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBRecognizerResultState.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBScanningMode.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBScanningMode.html index 9255d39..b9d9f9c 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBScanningMode.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBScanningMode.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -805,7 +814,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBTopUpPreset.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBTopUpPreset.html index 9c49d2d..d2ada30 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBTopUpPreset.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/MBTopUpPreset.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPCameraAutofocusRestriction.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPCameraAutofocusRestriction.html deleted file mode 100644 index 5adfbbb..0000000 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPCameraAutofocusRestriction.html +++ /dev/null @@ -1,813 +0,0 @@ - - - - PPCameraAutofocusRestriction Enumeration Reference - - - - - - - - - - - - - - - - -
    -

    - - PPBlinkOCR Docs - - (78% documented) -

    - -

    -

    - -
    -

    - -

    - - - View on GitHub - -

    - -
    - - - -
    - -
    - -
    -
    -

    PPCameraAutofocusRestriction

    -
    -
    -
    enum PPCameraAutofocusRestriction {}
    - -
    -
    -

    Camera autofocus restricion mode

    - -
    -
    - -
    -
    -
    -
      -
    • - -
      -
      -
      -
      -
      -

      Default. Indicates that the autofocus system should not restrict the focus range.

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraAutofocusRestrictionNone
      - -
      -
      -

      Swift

      -
      case none = 0
      - -
      -
      -
      -
      -
    • -
    • - -
      -
      -
      -
      -
      -

      Indicates that the autofocus system should restrict the focus range for subject matter that is near to the camera.

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraAutofocusRestrictionNear
      - -
      -
      -

      Swift

      -
      case near = 1
      - -
      -
      -
      -
      -
    • -
    • - -
      -
      -
      -
      -
      -

      Indicates that the autofocus system should restrict the focus range for subject matter that is far from the camera.

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraAutofocusRestrictionFar
      - -
      -
      -

      Swift

      -
      case far = 2
      - -
      -
      -
      -
      -
    • -
    -
    -
    -
    - -
    -
    - - - - diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPCameraPreset.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPCameraPreset.html deleted file mode 100644 index a563d8d..0000000 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPCameraPreset.html +++ /dev/null @@ -1,877 +0,0 @@ - - - - PPCameraPreset Enumeration Reference - - - - - - - - - - - - - - - - -
    -

    - - PPBlinkOCR Docs - - (78% documented) -

    - -

    -

    - -
    -

    - -

    - - - View on GitHub - -

    - -
    - - - -
    - -
    - -
    -
    -

    PPCameraPreset

    -
    -
    -
    enum PPCameraPreset {}
    - -
    -
    -

    Camera resolution preset

    - -
    -
    - -
    -
    -
    -
      -
    • -
      - - - - PPCameraPreset480p - -
      -
      -
      -
      -
      -
      -

      480p video will always be used

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPreset480p
      - -
      -
      -

      Swift

      -
      case preset480p = 0
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraPreset720p - -
      -
      -
      -
      -
      -
      -

      720p video will always be used

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPreset720p
      - -
      -
      -

      Swift

      -
      case preset720p = 1
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraPresetOptimal - -
      -
      -
      -
      -
      -
      -

      The library will calculate optimal resolution based on the use case and device used

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPresetOptimal
      - -
      -
      -

      Swift

      -
      case presetOptimal = 2
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraPresetMax - -
      -
      -
      -
      -
      -
      -

      Device’s maximal video resolution will be used.

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPresetMax
      - -
      -
      -

      Swift

      -
      case presetMax = 3
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraPresetPhoto - -
      -
      -
      -
      -
      -
      -

      Device’s photo preview resolution will be used

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraPresetPhoto
      - -
      -
      -

      Swift

      -
      case presetPhoto = 4
      - -
      -
      -
      -
      -
    • -
    -
    -
    -
    - -
    -
    - - - - diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPCameraType.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPCameraType.html deleted file mode 100644 index 38ff79b..0000000 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPCameraType.html +++ /dev/null @@ -1,781 +0,0 @@ - - - - PPCameraType Enumeration Reference - - - - - - - - - - - - - - - - -
    -

    - - PPBlinkOCR Docs - - (78% documented) -

    - -

    -

    - -
    -

    - -

    - - - View on GitHub - -

    - -
    - - - -
    - -
    - -
    -
    -

    PPCameraType

    -
    -
    -
    enum PPCameraType {}
    - -
    -
    -

    Camera type

    - -
    -
    - -
    -
    -
    -
      -
    • -
      - - - - PPCameraTypeBack - -
      -
      -
      -
      -
      -
      -

      Back facing camera

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraTypeBack
      - -
      -
      -

      Swift

      -
      case back = 0
      - -
      -
      -
      -
      -
    • -
    • -
      - - - - PPCameraTypeFront - -
      -
      -
      -
      -
      -
      -

      Front facing camera

      - -
      -
      -

      Declaration

      -
      -

      Objective-C

      -
      PPCameraTypeFront
      - -
      -
      -

      Swift

      -
      case front = 1
      - -
      -
      -
      -
      -
    • -
    -
    -
    -
    - -
    -
    - - - - diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPDocumentType.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPDocumentType.html index 5f0572f..1dc0b89 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPDocumentType.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Enums/PPDocumentType.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -837,7 +846,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Functions.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Functions.html index 60288dd..c0eca46 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Functions.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Functions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1755,7 +1764,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols.html index 18032a6..890bbc9 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1564,6 +1573,52 @@

    Declaration

    +
    +
      +
    • + +
      +
      +
      +
      +
      +

      Undocumented

      + + See more +
      +
      +

      Declaration

      +
      +

      Objective-C

      +
      @protocol MBStringProcessingRecognizerRunnerDelegate <NSObject>
      +@required
      +
      +/**
      + * Called when MBRecognizerRunner finishes processing given string.
      + * NOTE: This method is called on background processing thread. Make sure that you dispatch all your UI API calls to main thread.
      + */
      +- (void)recognizerRunner:(nonnull MBRecognizerRunner *)recognizerRunner didFinishProcessingString:(nonnull NSString *)string;
      +
      +@end
      + +
      +
      +

      Swift

      +
      protocol MBStringProcessingRecognizerRunnerDelegate
      + +
      +
      +
      +
      +
    • +
    +
    • @@ -1648,7 +1703,7 @@

      Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBBarcodeOverlayViewControllerDelegate.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBBarcodeOverlayViewControllerDelegate.html index 11bfc30..94032d4 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBBarcodeOverlayViewControllerDelegate.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBBarcodeOverlayViewControllerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -735,9 +744,10 @@

    Declaration

    Objective-C

    - (void)
    -barcodeOverlayViewControllerDidFinishScanning:
    -    (nonnull MBBarcodeOverlayViewController *)barcodeOverlayViewController
    -                                        state:(MBRecognizerResultState)state;
    + barcodeOverlayViewControllerDidFinishScanning: + (nonnull MBBarcodeOverlayViewController *)barcodeOverlayViewController + state: + (MBRecognizerResultState)state;
    @@ -840,7 +850,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerDelegate.html index ad98b65..b77bd66 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBDebugRecognizerRunnerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -777,7 +786,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerDelegate.html index 79cb43b..cbedab8 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBDetectionRecognizerRunnerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -907,7 +916,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBFrameGrabberRecognizerDelegate.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBFrameGrabberRecognizerDelegate.html index a7602eb..0f2cf62 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBFrameGrabberRecognizerDelegate.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBFrameGrabberRecognizerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -810,7 +819,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBNativeResult.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBNativeResult.html index 399aafa..a4dec7d 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBNativeResult.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBNativeResult.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -789,7 +798,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerDelegate.html index c0fb5cb..d8b3f64 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBOcrRecognizerRunnerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -744,7 +753,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBOverlayContainerViewController.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBOverlayContainerViewController.html index 23d1363..059c6e7 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBOverlayContainerViewController.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBOverlayContainerViewController.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -946,7 +955,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewController.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewController.html index 1b6e19b..494563e 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewController.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewController.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1128,6 +1137,44 @@

    Declaration

    +
  • +
    + + + + -captureHighResImage: + +
    +
    +
    +
    +
    +
    +

    Method with block for getting high resoultion images

    +
    +

    Warning

    + this is returned from background thread + +
    + +
    +
    +

    Declaration

    +
    +

    Objective-C

    +
    - (void)captureHighResImage:
    +    (nonnull MBCaptureHighResImage)highResoulutionImageCaptured;
    + +
    +
    +

    Swift

    +
    func captureHighResImage(_ highResoulutionImageCaptured: @escaping MBCaptureHighResImage)
    + +
    +
    +
    +
    +
  • @@ -1136,7 +1183,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewControllerDelegate.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewControllerDelegate.html index 733790b..5203cce 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewControllerDelegate.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBRecognizerRunnerViewControllerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -1055,7 +1064,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerDelegate.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerDelegate.html index 300fb00..bddc9f7 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerDelegate.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBScanningRecognizerRunnerDelegate.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -787,7 +796,7 @@

    Parameters

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBTemplatingClassifier.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBTemplatingClassifier.html index 611fe9e..711ac67 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBTemplatingClassifier.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Protocols/MBTemplatingClassifier.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -745,7 +754,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs.html index 57e0c34..e8b0796 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -769,7 +778,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs/_MBRange.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs/_MBRange.html index 754bdbf..ddd899f 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs/_MBRange.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs/_MBRange.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -773,7 +782,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs/_MBScale.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs/_MBScale.html index 26505fa..892b9ec 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs/_MBScale.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Structs/_MBScale.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -773,7 +782,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions.html index 13338b4..648f568 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -924,13 +933,49 @@

    Declaration

    +
    +
      +
    • +
      + + + + MBCaptureHighResImage + +
      +
      +
      +
      +
      +
      +

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

      + +
      +
      +

      Declaration

      +
      +

      Objective-C

      +
      typedef void (^MBCaptureHighResImage)(MBImage *_Nullable)
      + +
      +
      +

      Swift

      +
      typealias MBCaptureHighResImage = (MBImage?) -> Void
      + +
      +
      +
      +
      +
    • +
    +
    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/CGLine.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/CGLine.html index ac8dace..95b3245 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/CGLine.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/CGLine.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -748,7 +757,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/CGLine/.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/CGLine/.html index 2ba74a7..08e0477 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/CGLine/.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/CGLine/.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -776,7 +785,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBRange.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBRange.html index b94bd39..195a4fa 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBRange.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBRange.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBRange/_MBRange.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBRange/_MBRange.html index 1e6074f..3d3c867 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBRange/_MBRange.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBRange/_MBRange.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -773,7 +782,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBScale.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBScale.html index 219210a..0203aff 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBScale.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBScale.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -742,7 +751,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBScale/_MBScale.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBScale/_MBScale.html index 1de778f..2717fbf 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBScale/_MBScale.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/Type Definitions/MBScale/_MBScale.html @@ -81,7 +81,7 @@ MBBaseOverlaySettings + @@ -408,6 +411,15 @@ + + + @@ -453,15 +465,6 @@ - - - @@ -536,6 +539,9 @@ + @@ -553,6 +559,9 @@ + @@ -773,7 +782,7 @@

    Declaration

    diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/index.html b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/index.html index 30c2f53..8839d08 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/index.html +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/index.html @@ -80,7 +80,7 @@ MBBaseOverlaySettings + @@ -407,6 +410,15 @@ + + + @@ -452,15 +464,6 @@ - - - @@ -535,6 +538,9 @@ + @@ -552,6 +558,9 @@ + @@ -713,86 +722,91 @@

    Table of contents

    @@ -801,7 +815,7 @@

    don’t have camera with autofocus.

    -

    Quick Start

    +

    Quick Start

    Getting started with BlinkInput SDK

    This Quick Start guide will get you up and performing OCR scanning as quickly as possible. All steps described in this guide are required for the integration.

    @@ -818,11 +832,17 @@

    Using CocoaPods

    git lfs install
  • Be sure to restart your console after installing Git LFS

  • +
  • Note: if you already did try adding SDK using cocoapods and it’s not working, first install the git-lfs and then clear you cocoapods cache. This should be sufficient to force cocoapods to clone BlinkInput SDK, if it still doesn’t work, try deinitializing your pods and installing them again.

  • Project dependencies to be managed by CocoaPods are specified in a file called Podfile. Create this file in the same directory as your Xcode project (.xcodeproj) file.

  • +
  • If you don’t have podfile initialized run the following in your project directory.

    +
    pod init
    +
  • Copy and paste the following lines into the TextEdit window:

  • platform :ios, '9.0'
    -pod 'PPBlinkOCR', '~> 4.0.0'
    +target 'Your-App-Name' do
    +    pod 'PPBlinkOCR', '~> 4.1.0'
    +end
     
      @@ -838,7 +858,7 @@

      Using CocoaPods

      Integration without CocoaPods

      -

      -Download latest release (Download .zip or .tar.gz file starting with BlinkID. DO NOT download Source Code as GitHub does not fully support Git LFS)

      +

      -Download latest release (Download .zip or .tar.gz file starting with BlinkID. DO NOT download Source Code as GitHub does not fully support Git LFS)

      OR

      @@ -852,22 +872,22 @@

      Integration without Cocoa
    • Be sure to restart your console after installing Git LFS

    • To clone, run the following shell command:

    -
    git clone git@github.com:blinkinput/blinkinput-ios.git
    +
    git clone git@github.com:BlinkInput/blinkinput-ios.git
     
      -
    • Copy MicroBlink.framework and MicroBlink.bundle to your project folder.

    • -
    • In your Xcode project, open the Project navigator. Drag the MicroBlink.framework and MicroBlink.bundle files to your project, ideally in the Frameworks group, together with other frameworks you’re using. When asked, choose Create groups, instead of the Create folder references option.

    • +
    • Copy Microblink.framework and Microblink.bundle to your project folder.

    • +
    • In your Xcode project, open the Project navigator. Drag the Microblink.framework and Microblink.bundle files to your project, ideally in the Frameworks group, together with other frameworks you’re using. When asked, choose Create groups, instead of the Create folder references option.

    -

    Adding MicroBlink.embeddedframework to your project

    +

    Adding Microblink.embedded framework to your project

    Since

    Since Microblink.framework is a dynamic framework, you also need to add it to embedded binaries section in General settings of your target.
    -

    Adding MicroBlink.framework to embedded binaries

    +

    Adding Microblink.framework to embedded binaries

    • Include the additional frameworks and libraries into your project in the Linked frameworks and libraries section of your target settings.

      @@ -898,8 +918,10 @@

      3. Initiating the sca

      To initiate the scanning process, first decide where in your app you want to add scanning functionality. Usually, users of the scanning library have a button which, when tapped, starts the scanning process. Initialization code is then placed in touch handler for that button. Here we’re listing the initialization code as it looks in a touch handler method.

      -

      Also, for initialization purposes, the ViewController which initiates the scan have private prperties for MBRawParser, MBParserGroupProcessor and MBBlinkInputRecognizer, so we know how to obtain result.

      -
      class ViewController: UIViewController, MBBarcodeOverlayViewControllerDelegate  {
      +

      Also, for initialization purposes, the ViewController which initiates the scan have private properties for MBRawParser, MBParserGroupProcessor and MBBlinkInputRecognizer, so we know how to obtain result.

      + +

      Swift

      +
      class ViewController: UIViewController, MBDocumentOverlayViewControllerDelegate  {
       
           var rawParser: MBRawParser?
           var parserGroupProcessor: MBParserGroupProcessor?
      @@ -911,26 +933,28 @@ 

      3. Initiating the sca @IBAction func didTapScan(_ sender: AnyObject) { - let settings = MBBarcodeOverlaySettings() + let settings = MBDocumentOverlaySettings() rawParser = MBRawParser() parserGroupProcessor = MBParserGroupProcessor(parsers: [rawParser!]) blinkInputRecognizer = MBBlinkInputRecognizer(processors: [parserGroupProcessor!]) let recognizerList = [self.blinkInputRecognizer!] - let recognizerCollection : MBRecognizerCollection = MBRecognizerCollection(recognizers: recognizerList) + let recognizerCollection = MBRecognizerCollection(recognizers: recognizerList) /** Create your overlay view controller */ - let barcodeOverlayViewController : MBBarcodeOverlayViewController = MBBarcodeOverlayViewController(settings: settings, recognizerCollection: recognizerCollection, delegate: self) + let documentOverlayViewController = MBDocumentOverlayViewController(settings: settings, recognizerCollection: recognizerCollection, delegate: self) /** Create recognizer view controller with wanted overlay view controller */ - let recognizerRunneViewController : UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: barcodeOverlayViewController) + let recognizerRunnerViewController: UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: documentOverlayViewController) /** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */ present(recognizerRunnerViewController!, animated: true, completion: nil) } }

      -
      @interface ViewController () <MBBarcodeOverlayViewControllerDelegate>
      +
      +

      Objective-C

      +
      @interface ViewController () <MBDocumentOverlayViewControllerDelegate>
       
       @property (nonatomic, strong) MBRawParser *rawParser;
       @property (nonatomic, strong) MBParserGroupProcessor *parserGroupProcessor;
      @@ -947,7 +971,7 @@ 

      3. Initiating the sca - (IBAction)didTapScan:(id)sender { - MBBarcodeOverlaySettings* settings = [[MBBarcodeOverlaySettings alloc] init]; + MBDocumentOverlaySettings* settings = [[MBDocumentOverlaySettings alloc] init]; self.rawParser = [[MBRawParser alloc] init]; self.parserGroupProcessor = [[MBParserGroupProcessor alloc] initWithParsers:@[self.rawParser]]; @@ -956,7 +980,7 @@

      3. Initiating the sca /** Create recognizer collection */ MBRecognizerCollection *recognizerCollection = [[MBRecognizerCollection alloc] initWithRecognizers:@[self.blinkInputRecognizer]]; - MBBarcodeOverlayViewController *overlayVC = [[MBBarcodeOverlayViewController alloc] initWithSettings:settings recognizerCollection:recognizerCollection delegate:self]; + MBDocumentOverlayViewController *overlayVC = [[MBDocumentOverlayViewController alloc] initWithSettings:settings recognizerCollection:recognizerCollection delegate:self]; UIViewController<MBRecognizerRunnerViewController>* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:overlayVC]; /** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */ @@ -966,17 +990,47 @@

      3. Initiating the sca @end

      -

      4. Registering for scanning events

      +

      4. License key

      + +

      A valid license key is required to initalize scanning. You can generate a free demo license key, after you register, at Microblink developer dashboard.

      + +

      You can include the license key in your app by passing a string or a file with license key. +Note that you need to set the license key before intializing scanning. Ideally in AppDelegate or viewDidLoad before initializing any recognizers.

      +

      License key as string

      -

      In the previous step, you instantiated MBBarcodeOverlayViewController object with a delegate object. This object gets notified on certain events in scanning lifecycle. In this example we set it to self. The protocol which the delegate has to implement is MBBarcodeOverlayViewControllerDelegate protocol. It is necessary to conform to that protocol. We will discuss more about protocols in Advanced integration section. You can use the following default implementation of the protocol to get you started.

      -
      func barcodeOverlayViewControllerDidFinishScanning(_ barcodeOverlayViewController: MBBarcodeOverlayViewController, state: MBRecognizerResultState) {
      +

      You can pass the license key as a string, the following way:

      + +

      Swift

      +
      MBMicroblinkSDK.sharedInstance().setLicenseKey("LICENSE-KEY")
      +
      + +

      Objective-C

      +
      [[MBMicroblinkSDK sharedInstance] setLicenseKey:@"LICENSE-KEY"];
      +
      +

      License key as file

      + +

      Or you can include the license key, with the code below. Please make sure that the file that contains the license key is included in your project and is copied during Copy Bundle Resources build phase.

      + +

      Swift

      +
      MBMicroblinkSDK.sharedInstance().setLicenseResource("license-key-file", withExtension: "txt", inSubdirectory: "directory-to-license-key", for: Bundle.main)
      +
      + +

      Objective-C

      +
      [[MBMicroblinkSDK sharedInstance] setLicenseResource:@"license-key-file" withExtension:@"txt" inSubdirectory:@"" forBundle:[NSBundle mainBundle]];
      +
      +

      5. Registering for scanning events

      + +

      In the previous step, you instantiated MBDocumentOverlayViewController object with a delegate object. This object gets notified on certain events in scanning lifecycle. In this example we set it to self. The protocol which the delegate has to implement is MBDocumentOverlayViewControllerDelegate protocol. It is necessary to conform to that protocol. We will discuss more about protocols in Advanced integration section. You can use the following default implementation of the protocol to get you started.

      + +

      Swift

      +
      func documentOverlayViewControllerDidFinishScanning(_ documentOverlayViewController: MBDocumentOverlayViewController, state: MBRecognizerResultState) {
       
           // this is done on background thread
           // check for valid state
      -    if state == MBRecognizerResultState.valid {
      +    if state == .valid {
       
               // first, pause scanning until we process all the results
      -        barcodeOverlayViewController.recognizerRunnerViewController?.pauseScanning()
      +        documentOverlayViewController.recognizerRunnerViewController?.pauseScanning()
       
               DispatchQueue.main.async(execute: {() -> Void in
                   // All UI interaction needs to be done on main thread
      @@ -984,18 +1038,20 @@ 

      4. Registering for sc } } -func barcodeOverlayViewControllerDidTapClose(_ barcodeOverlayViewController: MBBarcodeOverlayViewController) { +func documentOverlayViewControllerDidTapClose(_ documentOverlayViewController: MBDocumentOverlayViewController) { // Your action on cancel }

      -
      - (void)barcodeOverlayViewControllerDidFinishScanning:(MBBarcodeOverlayViewController *)barcodeOverlayViewController state:(MBRecognizerResultState)state {
      +
      +

      Objective-C

      +
      - (void)documentOverlayViewControllerDidFinishScanning:(MBDocumentOverlayViewController *)documentOverlayViewController state:(MBRecognizerResultState)state {
       
           // this is done on background thread
           // check for valid state
           if (state == MBRecognizerResultStateValid) {
       
               // first, pause scanning until we process all the results
      -        [barcodeOverlayViewController.recognizerRunnerViewController pauseScanning];
      +        [documentOverlayViewController.recognizerRunnerViewController pauseScanning];
       
               dispatch_async(dispatch_get_main_queue(), ^{
                   // All UI interaction needs to be done on main thread
      @@ -1003,30 +1059,26 @@ 

      4. Registering for sc } } -- (void)barcodeOverlayViewControllerDidTapClose:(MBBarcodeOverlayViewController *)barcodeOverlayViewController { +- (void)documentOverlayViewControllerDidTapClose:(MBDocumentOverlayViewController *)documentOverlayViewController { // Your action on cancel }

      -

      Advanced BlinkInput integration instructions

      +

      Advanced BlinkInput integration instructions

      This section covers more advanced details of BlinkInput integration.

        -
      1. First part will cover the possible customizations when using UI provided by the SDK.
      2. -
      3. Second part will describe how to embed MBRecognizerRunnerViewController's delegates into your UIViewController with the goal of creating a custom UI for scanning, while still using camera management capabilites of the SDK.
      4. -
      5. Third part will describe how to use the MBRecognizerRunner (Direct API) for recognition directly from UIImage without the need of camera or to recognize camera frames that are obtained by custom camera management.
      6. -
      7. Fourth part will describe recognizer concept and available recognizers.
      8. +
      9. First part will cover the possible customizations when using UI provided by the SDK.
      10. +
      11. Second part will describe how to embed MBRecognizerRunnerViewController's delegates into your UIViewController with the goal of creating a custom UI for scanning, while still using camera management capabilites of the SDK.
      12. +
      13. Third part will describe how to use the MBRecognizerRunner (Direct API) for recognition directly from UIImage without the need of camera or to recognize camera frames that are obtained by custom camera management.
      14. +
      15. Fourth part will describe recognizer concept and available recognizers.
      -

      UI customizations of built-in MBOverlayViewControllers and MBOverlaySubviews

      -

      Built-in overlay view controllers and overlay subviews

      +

      Built-in overlay view controllers and overlay subviews

      -

      Within BlinkInput SDK there are several built-in overlay view controllers and scanning subview overlays that you can use to perform scanning.

      -

      MBBarcodeOverlayViewController

      +

      Within BlinkInput SDK there are several built-in overlay view controllers and scanning subview overlays that you can use to perform scanning.

      +

      Using MBBarcodeOverlayViewController

      -

      MBBarcodeOverlayViewController is overlay view controller best suited for performing scanning of various barcodes. It has MBBarcodeOverlayViewControllerDelegate delegate which can be used out of the box to perform scanning using the default UI.

      -

      Using MBBarcodeOverlayViewController

      - -

      MBBarcodeOverlayViewController is built-in overlay view controller which is best suiteed to use while scanning various barcodes. As you have seen in Quick Start, MBBarcodeOverlayViewController has MBBarcodeOverlaySettings. Here is an example how to use and initialize MBBarcodeOverlayViewController:

      +

      MBBarcodeOverlayViewController is overlay view controller best suited for performing scanning of various barcodes. It has MBBarcodeOverlayViewControllerDelegate delegate which can be used out-of-the-box to perform scanning using the default UI. Here is an example how to use and initialize MBBarcodeOverlayViewController:

      Swift

      /** Create your overlay view controller */
      @@ -1048,7 +1100,31 @@ 

      Custom overlay view controller

      +

      Using MBFieldByFieldOverlayViewController

      + +

      MBFieldByFieldOverlayViewController is overlay view controller best suited for performing scanning of various payment slips and barcodes with field of view. It has MBFieldByFieldOverlayViewControllerDelegate delegate which can be used out-of-the-box to perform scanning using the default UI. Here is an example how to use and initialize MBFieldByFieldOverlayViewController:

      + +

      Swift

      +
      /** Create your overlay view controller */
      +let fieldByFieldOverlayViewController : MBFieldByFieldOverlayViewController = MBFieldByFieldOverlayViewController(settings: fieldByFieldOverlaySettings, recognizerCollection: recognizerCollection, delegate: self)
      +
      +/** Create recognizer view controller with wanted overlay view controller */
      +let recognizerRunneViewController : UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: fieldByFieldOverlayViewController)
      +
      +/** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */
      +self.present(recognizerRunneViewController, animated: true, completion: nil)
      +
      + +

      Objective-C

      +
      MBFieldByFieldOverlayViewController *overlayVC = [[MBFieldByFieldOverlayViewController alloc] initWithSettings:settings recognizerCollection: recognizerCollection delegate:self];
      +UIViewController<MBRecognizerRunnerViewController>* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:overlayVC];
      +
      +/** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */
      +[self presentViewController:recognizerRunnerViewController animated:YES completion:nil];
      +
      + +

      As you can see, when initializing MBFieldByFieldOverlayViewController, we are sending delegate property as self. To get results, we need to conform to MBFieldByFieldOverlayViewControllerDelegate protocol.

      +

      Custom overlay view controller

      Please check our pdf417-sample-Swift for custom implementation of overlay view controller.

      @@ -1064,12 +1140,12 @@

      a way to power on and off the light (i.e. torch) button

    -

    BlinkInput SDK always provides it’s own default implementation of the Overlay View Controller for every specific use. Your implementation should closely mimic the default implementation as it’s the result of thorough testing with end users. Also, it closely matches the underlying scanning technology.

    +

    BlinkID SDK always provides it’s own default implementation of the Overlay View Controller for every specific use. Your implementation should closely mimic the default implementation as it’s the result of thorough testing with end users. Also, it closely matches the underlying scanning technology.

    For example, the scanning technology usually gives results very fast after the user places the device’s camera in the expected way above the scanned object. This means a progress bar for the scan is not particularly useful to the user. The majority of time the user spends on positioning the device’s camera correctly. That’s just an example which demonstrates careful decision making behind default camera overlay view.

    1. Initialization

    -

    To use your custom overlay with MicroBlink’s camera view, you must first subclass MBCustomOverlayViewController and implement the overlay behaviour conforming wanted protocols.

    +

    To use your custom overlay with Microblink’s camera view, you must first subclass MBCustomOverlayViewController and implement the overlay behaviour conforming wanted protocols.

    2. Protocols

    There are five MBRecognizerRunnerViewController protocols and one overlay protocol MBOverlayViewControllerInterface.

    @@ -1091,23 +1167,39 @@

    2. Protocols

    3. Overlay subviews

    -

    Developer needs to know which subivew is needed for custom view controller. If you want to use built-in implementation we recommend to use MBModernViewfinderOverlaySubview. In can be initialized in viewDidLoad method:

    +

    The SDK contains various subviews you can use to notify users of the state of scanning. If you want to use built-in implementation we recommend to use MBModernViewfinderSubview. In can be initialized in viewDidLoad method:

    Swift

    -
    viewfinderSubview = MBModernViewfinderOverlaySubview()
    +
    viewfinderSubview = MBModernViewfinderSubview()
    +viewfinderSubview.frame = view.frame
     viewfinderSubview.moveable = true
     view.addSubview(viewfinderSubview)
     

    Objective-C

    -
    self.viewfinderSubview = [[MBModernViewfinderOverlaySubview alloc] init];
    +
    self.viewfinderSubview = [[MBModernViewfinderSubview alloc] init];
    +self.viewfinderSubview.frame = self.view.frame;
     self.viewfinderSubview.delegate = self.overlaySubviewsDelegate;
     self.viewfinderSubview.moveable = YES;
     [self.view addSubview:self.viewfinderSubview];
     
    + +

    To use this subview you’ll need to implement MBDetectionRecognizerRunnerViewControllerDelegate(http://blinkinput.github.io/blinkinput-ios/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html) then in the -recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad: notify subview of detection changes.

    + +

    Swift

    +
    func recognizerRunnerViewController(_ recognizerRunnerViewController: Any!, didFinishDetectionWithDisplayableQuad displayableQuad: MBDisplayableQuadDetection) {
    +    viewfinderSubview.detectionFinished(withDisplayableQuad: displayableQuad)
    +}
    +
    + +

    Objective-C

    +
    - (void)recognizerRunnerViewController: (nonnull UIViewController<MBRecognizerRunnerViewController> *) recognizerRunnerViewController didFinishDetectionWithDisplayableQuad: (nonnull MBDisplayableQuadDetection *)displayableQuad {
    +    [self.viewfinderSubview detectionFinishedWithDisplayableQuad:displayableQuad];
    +}
    +

    4. Initialization

    -

    In Quick Start guide it is shown how to use MBBarcodeOverlayViewController. You can now swap MBBarcodeOverlayViewController with CustomOverlayViewController

    +

    In Quick Start guide it is shown how to use a default overlay view controller. You can now swap default view controller with your implementation of CustomOverlayViewController

    Swift

    let recognizerRunnerViewController : UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: CustomOverlayViewController)
    @@ -1116,16 +1208,16 @@ 

    4. Initialization

    Objective-C

    UIViewController<MBRecognizerRunnerViewController>* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:CustomOverlayViewController];
     
    -

    Direct processing API

    +

    Direct processing API

    -

    This guide will in short present you how to process UIImage objects with PDF417.mobi SDK, without starting the camera video capture.

    +

    This guide will in short present you how to process UIImage objects with BlinkInput SDK, without starting the camera video capture.

    With this feature you can solve various use cases like: - recognizing text on images in Camera roll - taking full resolution photo and sending it to processing - scanning barcodes on images in e-mail etc.

    -

    DirectAPI-sample demo app here will present UIImagePickerController for taking full resolution photos, and then process it with MicroBlink SDK to get scanning results using Direct processing API.

    +

    DirectAPI-sample demo app here will present UIImagePickerController for taking full resolution photos, and then process it with Microblink SDK to get scanning results using Direct processing API.

    Direct processing API is handled with MBRecognizerRunner. That is a class that handles processing of images. It also has protocols as MBRecognizerRunnerViewController. Developer can choose which protocol to conform:

    @@ -1209,12 +1301,17 @@

    MBRecognizer and available recognizers

    -

    The MBRecognizer concept

    +

    Using Direct API for NSString recognition (parsing)

    -

    The MBRecognizer is the basic unit of processing within the SDK. Its main purpose is to process the image and extract meaningful information from it. As you will see later, the SDK has lots of different MBRecognizer objects that have various purposes.

    +

    Some recognizers support recognition from NSString. They can be used through Direct API to parse given NSString and return data just like when they are used on an input image. When recognition is performed on NSString, there is no need for the OCR. Input NSString is used in the same way as the OCR output is used when image is being recognized. +Recognition from String can be performed in the same way as recognition from image. +The only difference is that user should call - (void)processString:(NSString *)string; on MBRecognizerRunner.

    +

    MBRecognizer and available recognizers

    +

    The MBRecognizer concept

    + +

    The MBRecognizer is the basic unit of processing within the SDK. Its main purpose is to process the image and extract meaningful information from it. As you will see later, the SDK has lots of different MBRecognizer objects that have various purposes.

    Each MBRecognizer has a MBRecognizerResult object, which contains the data that was extracted from the image. The MBRecognizerResult object is a member of corresponding MBRecognizer object its lifetime is bound to the lifetime of its parent MBRecognizer object. If you need your MBRecognizerRecognizer object to outlive its parent MBRecognizer object, you must make a copy of it by calling its method copy.

    @@ -1223,7 +1320,7 @@

    MBRecognizerCollection concept

    +

    MBRecognizerCollection concept

    The MBRecognizerCollection is is wrapper around MBRecognizer objects that has array of MBRecognizer objects that can be used to give MBRecognizer objects to MBRecognizerRunner or MBRecognizerRunnerViewController for processing.

    @@ -1232,115 +1329,68 @@

    The MBRecognizerCollection manages a chain of MBRecognizer objects within the recognition process. When a new image arrives, it is processed by the first MBRecognizer in chain, then by the second and so on, iterating until a MBRecognizer object’s MBRecognizerResult changes its state to Valid or all of the MBRecognizer objects in chain were invoked (none getting a Valid result state).

    You cannot change the order of the MBRecognizer objects within the chain - no matter the order in which you give MBRecognizer objects to MBRecognizerCollection, they are internally ordered in a way that provides best possible performance and accuracy. Also, in order for SDK to be able to order MBRecognizer objects in recognition chain in a best way possible, it is not allowed to have multiple instances of MBRecognizer objects of the same type within the chain. Attempting to do so will crash your application.

    -

    List of available recognizers

    +

    List of available recognizers

    -

    This section will give a list of all MBRecognizer objects that are available within PDF417.mobi SDK, their purpose and recommendations how they should be used to get best performance and user experience.

    -

    Frame Grabber Recognizer

    +

    This section will give a list of all MBRecognizer objects that are available within BlinkInput SDK, their purpose and recommendations how they should be used to get best performance and user experience.

    +

    Frame Grabber Recognizer

    The MBFrameGrabberRecognizer is the simplest recognizer in SDK, as it does not perform any processing on the given image, instead it just returns that image back to its onFrameAvailable. Its result never changes state from empty.

    This recognizer is best for easy capturing of camera frames with MBRecognizerRunnerViewController. Note that MBImage sent to onFrameAvailable are temporary and their internal buffers all valid only until the onFrameAvailable method is executing - as soon as method ends, all internal buffers of MBImage object are disposed. If you need to store MBImage object for later use, you must create a copy of it by calling copy.

    -

    Success Frame Grabber Recognizer

    +

    Success Frame Grabber Recognizer

    The MBSuccessFrameGrabberRecognizer is a special MBecognizer that wraps some other MBRecognizer and impersonates it while processing the image. However, when the MBRecognizer being impersonated changes its MBRecognizerResult into Valid state, the MBSuccessFrameGrabberRecognizer captures the image and saves it into its own MBSuccessFrameGrabberRecognizerResult object.

    Since MBSuccessFrameGrabberRecognizer impersonates its slave MBRecognizer object, it is not possible to give both concrete MBRecognizer object and MBSuccessFrameGrabberRecognizer that wraps it to same MBRecognizerCollection - doing so will have the same result as if you have given two instances of same MBRecognizer type to the MBRecognizerCollection - it will crash your application.

    This recognizer is best for use cases when you need to capture the exact image that was being processed by some other MBRecognizer object at the time its MBRecognizerResult became Valid. When that happens, MBSuccessFrameGrabberRecognizer's MBSuccessFrameGrabberRecognizerResult will also become Valid and will contain described image.

    -

    PDF417 recognizer

    +

    PDF417 recognizer

    -

    The MBPdf417Recognizer is recognizer specialised for scanning PDF417 2D barcodes. This recognizer can recognize only PDF417 2D barcodes - for recognition of other barcodes, please refer to BarcodeRecognizer.

    +

    The MBPdf417Recognizer is recognizer specialised for scanning PDF417 2D barcodes. This recognizer can recognize only PDF417 2D barcodes - for recognition of other barcodes, please refer to BarcodeRecognizer.

    This recognizer can be used in any overlay view controller, but it works best with the MBBarcodeOverlayViewController, which has UI best suited for barcode scanning.

    -

    Barcode recognizer

    +

    Barcode recognizer

    -

    The MBBarcodeRecognizer is recognizer specialised for scanning various types of barcodes. This recognizer should be your first choice when scanning barcodes as it supports lots of barcode symbologies, including the PDF417 2D barcodes, thus making PDF417 recognizer possibly redundant, which was kept only for its simplicity.

    +

    The MBBarcodeRecognizer is recognizer specialised for scanning various types of barcodes. This recognizer should be your first choice when scanning barcodes as it supports lots of barcode symbologies, including the PDF417 2D barcodes, thus making PDF417 recognizer possibly redundant, which was kept only for its simplicity.

    You can enable multiple barcode symbologies within this recognizer, however keep in mind that enabling more barcode symbologies affect scanning performance - the more barcode symbologies are enabled, the slower the overall recognition performance. Also, keep in mind that some simple barcode symbologies that lack proper redundancy, such as Code 39, can be recognized within more complex barcodes, especially 2D barcodes, like PDF417.

    This recognizer can be used in any overlay view controller, but it works best with the MBBarcodeOverlayViewController, which has UI best suited for barcode scanning.

    -

    BlinkInput recognizer

    +

    BlinkInput recognizer

    The MBBlinkInputRecognizer is generic OCR recognizer used for scanning segments which enables specifying MBProcessors that will be used for scanning. Most commonly used MBProcessor within this recognizer is MBParserGroupProcessor) that activates all MBParsers in the group to extract data of interest from the OCR result.

    This recognizer can be used in any context. It is used internally in the implementation of the provided MBFieldByFieldOverlayViewController.

    -

    MBProcessors are explained in The Processor concept section and you can find more about MBParsers in The Parser concept section.

    -

    Detector recognizer

    - -

    The MBDetectorRecognizer is recognizer for scanning generic documents using custom MBDetector. You can find more about Detector in The Detector concept section. MBDetectorRecognizer can be used simply for document detection and obtaining its image. The more interesting use case is data extraction from the custom document type. MBDetectorRecognizer performs document detection and can be configured to extract fields of interest from the scanned document by using Templating API. You can find more about Templating API in this section.

    -

    Field by field scanning feature

    - -

    Field by field scanning feature is designed for scanning small text fields which are called scan elements. For each scan element, specific MBParser that will extract structured data of interest from the OCR result is defined. Focusing on the small text fields which are scanned one by one enables implementing support for the free-form documents because field detection is not required. The user is responsible for positioning the field of interest inside the scanning window and the scanning process guides him. When implementing support for the custom document, only fields of interest has to be defined.

    - -

    Field by field approaches are described in the following sections.

    -

    Field by field feature

    - -

    Field by field feature is designed for scanning small text fields in the predefined order by using MBFieldByFieldViewController.

    - -

    To start with Field by Field feature all you need to do is to initialize MBFieldByFieldOverlayViewController and conform to MBFieldByFieldOverlayViewControllerDelegate (this example follows our FieldByField-sample-Swift project):

    - -

    Swift

    -
        // Create MBFieldByFieldOverlaySettings
    -    let settings = MBFieldByFieldOverlaySettings(scanElements: MBGenericPreset.getPreset()!)
    -
    -    // Create field by field VC
    -    let fieldByFieldVC = MBFieldByFieldOverlayViewController(settings: settings, delegate: self)
    +

    MBProcessors are explained in The Processor concept section and you can find more about MBParsers in The Parser concept section.

    +

    Detector recognizer

    - // Create scanning VC - let recognizerRunnerViewController: (UIViewController & MBRecognizerRunnerViewController)? = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: fieldByFieldVC) +

    The MBDetectorRecognizer is recognizer for scanning generic documents using custom MBDetector. You can find more about Detector in The Detector concept section. MBDetectorRecognizer can be used simply for document detection and obtaining its image. The more interesting use case is data extraction from the custom document type. MBDetectorRecognizer performs document detection and can be configured to extract fields of interest from the scanned document by using Templating API. You can find more about Templating API in this section.

    +

    MBProcessor and MBParser

    - // Present VC - self.present(recognizerRunnerViewController!, animated: true, completion: nil) - - - func field(_ fieldByFieldOverlayViewController: MBFieldByFieldOverlayViewController, didFinishScanningWith scanElements: [MBScanElement]) { - // Whatever you want to do with results - } -
    - -

    Objective-C

    -
        // Create MBFieldByFieldOverlaySettings
    -    MBFieldByFieldOverlaySettings *settings = [[MBFieldByFieldOverlaySettings alloc] initWithScanElements: [MBGenericPreset getPreset] initWithSettings: settings, delegate: self];
    -
    -    // Create field by field VC
    -    MBFieldByFieldOverlayViewController *fieldByFieldOverlayViewController =  [[MBFieldByFieldOverlayViewController alloc] initWithSettings:settings delegate: self];
    -
    -    // Create scanning VC
    -    UIViewController<MBRecognizerRunnerViewController>* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:fieldByFieldOverlayViewController];
    -
    -    / Present VC
    -    [self presentViewController:recognizerRunnerViewController animated:YES completion:nil];
    -
    -    - (void)fieldByFieldOverlayViewController:(MBFieldByFieldOverlayViewController *)fieldByFieldOverlayViewController didFinishScanningWithElements:(NSArray<MBScanElement *> *)scanElements {
    -        // Whatever you want to do with results
    -    }
    -
    -

    MBProcessor and MBParser

    - -

    The MBProcessors and MBParsers are standard processing units within BlinkInput SDK used for data extraction from the input images. Unlike the MBRecognizer, MBProcessor and MBParser are not stand-alone processing units. MBProcessor is always used within MBRecognizer and MBParser is used within appropriate MBProcessor to extract data from the OCR result.

    -

    The MBProcessor concept

    +

    The MBProcessors and MBParsers are standard processing units within BlinkID SDK used for data extraction from the input images. Unlike the MBRecognizer, MBProcessor and MBParser are not stand-alone processing units. MBProcessor is always used within MBRecognizer and MBParser is used within appropriate MBProcessor to extract data from the OCR result.

    +

    The MBProcessor concept

    MBProcessor is a processing unit used within some Recognizer which supports processors. It process the input image prepared by the enclosing Recognizer in the way that is characteristic to the implementation of the concrete MBProcessor.

    -

    MBProcessor architecture is similar to MBRecognizer architecture described in The Recognizer concept section. Each instance also has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBProcessor object and it is updated while MBProcessor works. If you need your MBRecognizerResult object to outlive its parent MBProcessor object, you must make a copy of it by calling its method copy.

    +

    MBProcessor architecture is similar to MBRecognizer architecture described in The Recognizer concept section. Each instance also has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBProcessor object and it is updated while MBProcessor works. If you need your MBRecognizerResult object to outlive its parent MBProcessor object, you must make a copy of it by calling its method copy.

    It also has its internal state and while it is in the working state during recognition process, it is not allowed to tweak MBProcessor object’s properties.

    To support common use cases, there are several different MBProcessor implementations available. They are listed in the next section.

    -

    List of available processors

    +

    List of available processors

    -

    This section will give a list of MBProcessor types that are available within BlinkInput SDK and their purpose.

    -

    Image Return Processor

    +

    This section will give a list of MBProcessor types that are available within BlinkID SDK and their purpose.

    +

    Image Return Processor

    The MBImageReturnProcessor is used for obtaining input images. It simply saves the input image and makes it available after the scanning is done.

    -

    The appearance of the input image depends on the context in which MBImageReturnProcessor is used. For example, when it is used within MBBlinkInputRecognizer, simply the raw image of the scanning region is processed. When it is used within the Templating API, input image is dewarped (cropped and rotated).

    +

    The appearance of the input image depends on the context in which MBImageReturnProcessor is used. For example, when it is used within MBBlinkInputRecognizer, simply the raw image of the scanning region is processed. When it is used within the Templating API, input image is dewarped (cropped and rotated).

    The image is returned as the raw MBImage type. Also, processor can be configured to encode saved image to JPEG.

    -

    Parser Group Processor

    +

    Parser Group Processor

    -

    The MBParserGroupProcessor is the type of the processor that performs the OCR (Optical Character Recognition) on the input image and lets all the parsers within the group to extract data from the OCR result. The concept of MBParser is described in the next section.

    +

    The MBParserGroupProcessor is the type of the processor that performs the OCR (Optical Character Recognition) on the input image and lets all the parsers within the group to extract data from the OCR result. The concept of MBParser is described in the next section.

    Before performing the OCR, the best possible OCR engine options are calculated by combining engine options needed by each MBParser from the group. For example, if one parser expects and produces result from uppercase characters and other parser extracts data from digits, both uppercase characters and digits must be added to the list of allowed characters that can appear in the OCR result. This is a simplified explanation because OCR engine options contain many parameters which are combined by the MBParserGroupProcessor.

    @@ -1354,79 +1404,79 @@

    MBParserGroupProcessor is most commonly used MBProcessor. It is used whenever the OCR is needed. After the OCR is performed and all parsers are run, parsed results can be obtained through parser objects that are enclosed in the group. MBParserGroupProcessor instance also has associated inner MBParserGroupProcessorResult whose state is updated during processing and its property ocrLayout can be used to obtain the raw MBOcrLayout that was used for parsing data.

    -

    Take note that MBOcrLayout is available only if it is allowed by the BlinkInput SDK license key. MBOcrLayout structure contains information about all recognized characters and their positions on the image. To prevent someone to abuse that, obtaining of the MBOcrLayout structure is allowed only by the premium license keys.

    -

    The MBParser concept

    +

    Take note that MBOcrLayout is available only if it is allowed by the BlinkID SDK license key. MBOcrLayout structure contains information about all recognized characters and their positions on the image. To prevent someone to abuse that, obtaining of the MBOcrLayout structure is allowed only by the premium license keys.

    +

    The MBParser concept

    MBParser is a class of objects that are used to extract structured data from the raw OCR result. It must be used within MBParserGroupProcessor which is responsible for performing the OCR, so MBParser is not stand-alone processing unit.

    -

    Like MBRecognizer and all other processing units, each MBParser instance has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBParser object and it is updated while MBParser works. When parsing is done MBParserResult can be used for obtaining extracted data. If you need your MBParserResult object to outlive its parent MBParser object, you must make a copy of it by calling its method copy.

    +

    Like MBRecognizer and all other processing units, each MBParser instance has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBParser object and it is updated while MBParser works. When parsing is done MBParserResult can be used for obtaining extracted data. If you need your MBParserResult object to outlive its parent MBParser object, you must make a copy of it by calling its method copy.

    It also has its internal state and while it is in the working state during recognition process, it is not allowed to tweak MBParser object’s properties.

    There are a lot of different MBParsers for extracting most common fields which appear on various documents. Also, most of them can be adjusted for specific use cases. For all other custom data fields, there is RegexParser available which can be configured with the arbitrary regular expression.

    -

    List of available parsers

    -

    Amount Parser

    +

    List of available parsers

    +

    Amount Parser

    MBAmountParser is used for extracting amounts from the OCR result.

    -

    Date Parser

    +

    Date Parser

    MBDateParser is used for extracting dates in various formats from the OCR result.

    -

    Email Parser

    +

    Email Parser

    MBEmailParser is used for extracting e-mail addresses from the OCR result.

    -

    IBAN Parser

    +

    IBAN Parser

    MBIbanParser is used for extracting IBAN (International Bank Account Number) from the OCR result.

    -

    License Plates Parser

    +

    License Plates Parser

    MBLicensePlatesParser is used for extracting license plate content from the OCR result.

    -

    Raw Parser

    +

    Raw Parser

    MBRawParser is used for obtaining string version of raw OCR result, without performing any smart parsing operations.

    -

    Regex Parser

    +

    Regex Parser

    MBRegexParser is used for extracting OCR result content which is in accordance with the given regular expression. Regular expression parsing is not performed with java’s regex engine. Instead, it is performed with custom regular expression engine.

    -

    TopUp Parser

    +

    TopUp Parser

    MBTopUpParser is used for extracting TopUp (mobile phone coupon) codes from the OCR result. There exists TopUpPreset enum with presets for most common vendors. Method - (void)setTopUpPreset:(MBTopUpPreset)topUpPreset can be used to configure parser to only return codes with the appropriate format defined by the used preset.

    -

    VIN (Vehicle Identification Number) Parser

    +

    VIN (Vehicle Identification Number) Parser

    MBVinParser is used for extracting VIN (Vehicle Identification Number) from the OCR result.

    -

    Scanning generic documents with Templating API

    +

    Scanning generic documents with Templating API

    This section discusses the setting up of MBDetectorRecognizer for scanning templated documents. Please check Templating-sample sample app for source code examples.

    Templated document is any document which is defined by its template. Template contains the information about how the document should be detected, i.e. found on the camera scene and information about which part of the document contains which useful information.

    -

    Defining how document should be detected

    +

    Defining how document should be detected

    -

    Before performing OCR of the document, BlinkInput first needs to find its location on a camera scene. In order to perform detection, you need to define MBDetector.

    +

    Before performing OCR of the document, BlinkID first needs to find its location on a camera scene. In order to perform detection, you need to define MBDetector.

    You have to set concrete MBDetector when instantiating the MBDetectorRecognizer as a parameter to its constructor.

    -

    You can find out more information about detectors that can be used in section List of available detectors. The most commonly used detector is MBDocumentDetector.

    -

    Defining how fields of interest should be extracted

    +

    You can find out more information about detectors that can be used in section List of available detectors. The most commonly used detector is MBDocumentDetector.

    +

    Defining how fields of interest should be extracted

    MBDetector produces its result which contains document location. After the document has been detected, all further processing is done on the detected part of the input image.

    -

    There may be one or more variants of the same document type, for example for some document there may be old and new version and both of them must be supported. Because of that, for implementing support for each document, one or multiple templating classes are used. MBTemplatingClass is described in The Templating Class component section.

    +

    There may be one or more variants of the same document type, for example for some document there may be old and new version and both of them must be supported. Because of that, for implementing support for each document, one or multiple templating classes are used. MBTemplatingClass is described in The Templating Class component section.

    MBTemplatingClass holds all needed information and components for processing its class of documents. Templating classes are processed in chain, one by one. On first class for which the data is successfully extracted, the chain is terminated and recognition results are returned. For each input image processing is done in the following way:

      -
    1. Classification MBProcessorGroups are run on the defined locations to extract data. MBProcessorGroup is used to define the location of interest on the detected document and MBProcessors that will extract data from that location. You can find more about MBProcessorGroup in the next section.

    2. -
    3. MBTemplatingClassifier is run with the data extracted by the classification processor groups to decide whether the currently scanned document belongs to the current class or not. Its classify method simply returns YES/true or NO/false. If the classifier returns NO/false, recognition is moved to the next class in the chain, if it exists. You can find more about MBTemplatingClassifier in this section.

    4. +
    5. Classification MBProcessorGroups are run on the defined locations to extract data. MBProcessorGroup is used to define the location of interest on the detected document and MBProcessors that will extract data from that location. You can find more about MBProcessorGroup in the next section.

    6. +
    7. MBTemplatingClassifier is run with the data extracted by the classification processor groups to decide whether the currently scanned document belongs to the current class or not. Its classify method simply returns YES/true or NO/false. If the classifier returns NO/false, recognition is moved to the next class in the chain, if it exists. You can find more about MBTemplatingClassifier in this section.

    8. If the MBTemplatingClassifier has decided that currently scanned document belongs to the current class, non-classification MBProcessorGroups are run to extract other fields of interest.

    -

    The MBProcessorGroup component

    +

    The MBProcessorGroup component

    In templating API MBProcessorGroup is used to define the location of the field of interest on the detected document and how that location should be processed by setting following parameters in its constructor:

    1. Location coordinates relative to document detection which are passed as [Rectangle] object.

    2. -
    3. MBDewarpPolicy which determines the resulting image chunk for processing. You can find a description of each MBDewarpPolicy, its purpose and recommendations when it should be used to get the best results in List of available dewarp policies section.

    4. -
    5. Collection of processors that will be executed on the prepared chunk of the image for current document location. You can find more information about processors in The Processor concept section.

    6. +
    7. MBDewarpPolicy which determines the resulting image chunk for processing. You can find a description of each MBDewarpPolicy, its purpose and recommendations when it should be used to get the best results in List of available dewarp policies section.

    8. +
    9. Collection of processors that will be executed on the prepared chunk of the image for current document location. You can find more information about processors in The Processor concept section.

    -

    List of available dewarp policies

    +

    List of available dewarp policies

    Concrete MBDewarpPolicy defines how specific location of interest should be dewarped (cropped and rotated). It determines the height and width of the resulting dewarped image in pixels. Here is the list of available dewarp policies with linked doc for more information:

    @@ -1453,7 +1503,7 @@

    The MBTemplatingClass component

    +

    The MBTemplatingClass component

    MBTemplatingClass enables implementing support for a specific class of documents that should be scanned with templating API. Final implementation of the templating recognizer consists of one or more templating classes, one class for each version of the document.

    @@ -1466,22 +1516,22 @@

    The non-classification processor groups which are set by using the [- (void)setNonClassificationProcessorGroups:(nonnull NSArray<__kindof MBProcessorGroup *> *)processorGroups]method. MBProcessorGroups from this collection will be executed after classification if the classification has been positive.

    -

    A component which decides whether the scanned document belongs to the current class is MBTemplatingClass. It can be set by using the - (void)setTemplatingClassifier:(nullable id<MBTemplatingClassifier>)templatingClassifier method. If it is not set, non-classification processor groups will not be executed. Instructions for implementing the MBTemplatingClassifier are given in the next section.

    -

    Implementing the MBTemplatingClassifier

    +

    A component which decides whether the scanned document belongs to the current class is MBTemplatingClass. It can be set by using the - (void)setTemplatingClassifier:(nullable id<MBTemplatingClassifier>)templatingClassifier method. If it is not set, non-classification processor groups will not be executed. Instructions for implementing the MBTemplatingClassifier are given in the next section.

    +

    Implementing the MBTemplatingClassifier

    Each concrete templating classifier implements the MBTemplatingClassifier interface, which requires to implement its classify method that is invoked while evaluating associated MBTemplatingClass.

    -

    Classification decision should be made based on the processing result which is returned by one or more processing units contained in the collection of the classification processor groups. As described in The ProcessorGroup component section, each processor group contains one or more MBProcessors. There are different MBProcessors which may enclose smaller processing units, for example, MBParserGroupProcessor maintains the group of MBParsers. Result from each of the processing units in that hierarchy can be used for classification. In most cases MBParser result is used to determine whether some data in the expected format exists on the specified location.

    +

    Classification decision should be made based on the processing result which is returned by one or more processing units contained in the collection of the classification processor groups. As described in The ProcessorGroup component section, each processor group contains one or more MBProcessors. There are different MBProcessors which may enclose smaller processing units, for example, MBParserGroupProcessor maintains the group of MBParsers. Result from each of the processing units in that hierarchy can be used for classification. In most cases MBParser result is used to determine whether some data in the expected format exists on the specified location.

    To be able to retrieve results from the various processing units that are needed for classification, their instances must be available when classify method is called.

    Obtaining recognition results

    When recognition is done, results can be obtained through processing units instances, such as: MBProcessors, MBParsers, etc. which are used for configuring the MBTemplatingRecognizer and later for processing the input image.

    -

    The MBDetector concept

    +

    The MBDetector concept

    -

    MBDetector is a processing unit used within some MBRecognizer which supports detectors, such as MBDetectorRecognizer. Concrete MBDetector knows how to find the certain object on the input image. MBRecognizer can use it to perform object detection prior to performing further recognition of detected object’s contents.

    +

    MBDetector is a processing unit used within some MBRecognizer which supports detectors, such as MBDetectorRecognizer. Concrete MBDetector knows how to find the certain object on the input image. MBRecognizer can use it to perform object detection prior to performing further recognition of detected object’s contents.

    -

    MBDetector architecture is similar to MBRecognizer architecture described in The Recognizer concept section. Each instance also has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBDetector object and it is updated while MBDetector works. If you need your MBRecognizerResult object to outlive its parent MBDetector object, you must make a copy of it by calling its copy method.

    +

    MBDetector architecture is similar to MBRecognizer architecture described in The Recognizer concept section. Each instance also has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBDetector object and it is updated while MBDetector works. If you need your MBRecognizerResult object to outlive its parent MBDetector object, you must make a copy of it by calling its copy method.

    It also has its internal state and while it is in the working state during recognition process, it is not allowed to tweak MBDetector object’s properties.

    @@ -1494,8 +1544,8 @@

    List of available detectors

    -

    Document Detector

    +

    List of available detectors

    +

    Document Detector

    MBDocumentDetector is used to detect card documents, cheques, A4-sized documents, receipts and much more.

    @@ -1504,7 +1554,7 @@

    MBDocumentSpecificationPreset.

    For the list of all available configuration methods see MBDocumentDetector doc, and for available result content see MBDocumentDetectorResult doc.

    -

    MRTD Detector

    +

    MRTD Detector

    MBMrtdDetector is used to perform detection of Machine Readable Travel Documents (MRTD).

    @@ -1513,16 +1563,101 @@

    MBMrtdDetector doc, and for available result content see MBMrtdDetectorResult doc.

    -

    Troubleshooting

    -

    Integration problems

    +

    Creating customized build of BlinkID SDK

    + +

    If your final app size is too large, you can create a customised build of MicroBlink.framework and MicroBlink.bundle which will contain only features and resources that you really need.

    + +

    In order to create customised build of BlinkID SDK, you first need to download the static distribution of BlinkID SDK. A valid production licence key is required in order to gain access to the download link of BlinkID SDK static distribution. Once you have a valid production licence key, please contact our support team and ask them to provide you with the download link. After they give you access to the static distribution of BlinkID SDK, you will be able to download it from you account at MicroBlink Developer Dashboard.

    + +

    The static distribution of BlinkID SDK is a large zip file (several hundred megabytes) which contains static libraries of BlinkID SDK’s native code, all assets and resources and a script which will create the customised build for you.

    +

    Prerequisites for creating customised build

    + +

    In order to create customised build of BlinkInput SDK, you will need following tools:

    + +
      +
    • XCode and latest iOS SDK
    • +
    • CMake - you can install it from Homebrew with brew install cmake, or you can download it from official page + +
        +
      • please note that command-line version of CMake is required, so if you have downloaded CMake from official page, make sure you install command-line support as well
      • +
    • +
    +

    Steps for creating customised build

    + +
      +
    1. Obtain the static distribution of BlinkID SDK by contacting us
    2. +
    3. Download the zip from link that you will be provided
    4. +
    5. Unzip the file into an empty folder
    6. +
    7. Edit the file enabled-features.cmake + +
        +
      • you should enable only features that you need to use by setting appropriate variables to ON.
      • +
      • the list of all possible feature variables can be found in features.cmake + +
          +
        • for each feature_option command, first parameter defines the feature variable, and the second is the description of the feature, i.e. what it provides. Other parameters are information for script to work correctly.
        • +
      • +
      • you should not edit any file except enabled-features.cmake (except if instructed so by our support team) to ensure creation of customised build works well
      • +
    8. +
    9. Open terminal and navigate to folder with zip’s contents.
    10. +
    11. Execute command ./create-custom-build.sh and select whether you want static or dynamic frameowk. + +
        +
      • when asked, enter s to build static framework or d to build dynamic framework
      • +
    12. +
    13. After several minutes (depedending of CPU speed of your computer), customised build will appear in the Release folder. Use that bundle and framework in your app instead of default one.
    14. +
    +

    Warning:

    + +

    Attempt to use feature within your app which was not enabled in customised build will cause a linker error when linking against the customised framework.

    +

    Troubleshooting:

    +

    Getting unrecognized selector sent to instance when using customised static framework, while everything works OK with dynamic framework

    + +

    This happens when your app has not been linked with -ObjC flag against static framework. The problem is related to using Objective C categories within static library which are thrown away by linker. You can see more information in official Apple documentation.

    +

    App crashing when scanning starts with log message Failed to load resource XX. The program will now crash.

    + +

    This means that a required resource was not packaged into final app. This usually indicates a bug in our script that makes the customised build. Please contact us and send your version of enabled-features.cmake and crash log.

    +

    CMake error while running script.

    + +

    You probably have a typo in enabled-features.cmake. CMake is very sensitive language and will throw an non-understandable error if you have a typo or invoke any of its commands with wrong number of parameters.

    +

    Linker error while running the script.

    + +

    This sometimes happens when XCode’s link time optimizer runs out of memory. Usually running the script again solves the problem. Please reboot your Mac if this keeps happening.

    + + +

    FEATURE_MRTD marks the MRTD recognizer. However, MRTD recognizer can also be used in Templating API mode where non-MRZ data can be scanned. To perform OCR of non-MRZ data, a rather large OCR model must be used, which supports all fonts. If you only plan to scan MRZ part of the document, you can edit the features.cmake in following way:

    + +
      +
    • find the following line:
    • +
    +
    feature_resources( FEATURE_MRTD model_mrtd model_general_blink_ocr model_micr model_arabic )
    +
    + +
      +
    • keep only model_mrtd in the list, i.e. modify the line so that it will be like this:
    • +
    +
    feature_resources( FEATURE_MRTD model_mrtd )
    +
    + +

    This will keep only support for reading MRZ zone in OCR - you will not be able to scan non-MRZ data with such configuration using MRTD recognizer, however you will reduce the MicroBlink.bundle and then final app size by more than 4MB.

    +
    More information about OCR models in FEATURE_MRTD
    + +
      +
    • model_mrtd is OCR model for performing OCR of MRZ zone
    • +
    • model_arabic is OCR model for performing OCR of digits used in arabic languages - text scanning is not supported
    • +
    • model_micr is OCR model for performing OCR of Magnetic Ink Characters
    • +
    • model_general_blink_ocr is OCR model for performing general-purpose OCR. This model is usually required for performing OCR of non-MRZ text on documents.
    • +
    +

    Troubleshooting

    +

    Integration problems

    -

    In case of problems with integration of the SDK, first make sure that you have tried integrating it into XCode by following integration instructions.

    +

    In case of problems with integration of the SDK, first make sure that you have tried integrating it into XCode by following integration instructions.

    -

    If you have followed XCode integration instructions and are still having integration problems, please contact us at help.microblink.com.

    -

    SDK problems

    +

    If you have followed XCode integration instructions and are still having integration problems, please contact us at help.microblink.com.

    +

    SDK problems

    In case of problems with using the SDK, you should do as follows:

    -

    Licencing problems

    +

    Licencing problems

    If you are getting invalid licence key error or having other licence-related problems (e.g. some feature is not enabled that should be or there is a watermark on top of camera), first check the console. All licence-related problems are logged to error log so it is easy to determine what went wrong.

    @@ -1534,7 +1669,7 @@

    Licencing problems

  • 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

    +

    Other problems

    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:

    @@ -1548,23 +1683,23 @@

    Other problems

  • please stress out that you are reporting problem related to iOS version of PDF417.mobi SDK
  • -

    Frequently asked questions and known problems

    +

    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.

    -

    In demo everything worked, but after switching to production license I get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code as soon as I construct specific MBRecognizer object

    +

    In demo everything worked, but after switching to production license I get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code as soon as I construct specific MBRecognizer object

    Each license key contains information about which features are allowed to use and which are not. This NSError indicates that your production license does not allow using of specific MBRecognizer object. You should contact support to check if provided licence is OK and that it really contains all features that you have purchased.

    -

    I get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code with trial license key

    +

    I get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code with trial license key

    -

    Whenever you construct any MBRecognizer object or, a check whether license allows using that object will be performed. If license is not set prior constructing that object, you will get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code. We recommend setting license as early as possible in your app.

    -

    Undefined Symbols on Architecture armv7

    +

    Whenever you construct any MBRecognizer object or, a check whether license allows using that object will be performed. If license is not set prior constructing that object, you will get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code. We recommend setting license as early as possible in your app.

    +

    Undefined Symbols on Architecture armv7

    -

    Make sure you link your app with iconv and Accelerate frameworks as shown in Quick start. +

    Make sure you link your app with iconv and Accelerate frameworks as shown in Quick start. If you are using Cocoapods, please be sure that you’ve installed git-lfs prior to installing pods. If you are still getting this error, go to project folder and execute command git-lfs pull.

    -

    In my didFinish callback I have the result inside my MBRecognizer, but when scanning activity finishes, the result is gone

    +

    In my didFinish callback I have the result inside my MBRecognizer, but when scanning activity finishes, the result is gone

    -

    This usually happens when using MBRecognizerRunnerViewController and forgetting to pause the MBRecognizerRunnerViewController in your didFinish callback. Then, as soon as didFinish happens, the result is mutated or reset by additional processing that MBRecognizer performs in the time between end of your didFinish callback and actual finishing of the scanning activity. For more information about statefulness of the MBRecognizer objects, check this section.

    -

    Unsupported architectures when submitting app to App Store

    +

    This usually happens when using MBRecognizerRunnerViewController and forgetting to pause the MBRecognizerRunnerViewController in your didFinish callback. Then, as soon as didFinish happens, the result is mutated or reset by additional processing that MBRecognizer performs in the time between end of your didFinish callback and actual finishing of the scanning activity. For more information about statefulness of the MBRecognizer objects, check this section.

    +

    Unsupported architectures when submitting app to App Store

    Microblink.framework is a dynamic framework which contains slices for all architectures - device and simulator. If you intend to extract .ipa file for ad hoc distribution, you’ll need to preprocess the framework to remove simulator architectures.

    @@ -1602,7 +1737,7 @@

    Additional info

    -

    Complete API reference can be found here.

    +

    Complete API reference can be found here.

    For any other questions, feel free to contact us at help.microblink.com.

    @@ -1613,7 +1748,7 @@

    Addit diff --git a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/search.json b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/search.json index 085b1b9..56bc473 100644 --- a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/search.json +++ b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/Documents/search.json @@ -1 +1 @@ -{"Structs/_MBScale.html#/c:@S@_MBScale@FI@scale":{"name":"scale","abstract":"

    Undocumented

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

    Undocumented

    ","parent_name":"_MBScale"},"Structs/_MBRange.html#/c:@S@_MBRange@FI@start":{"name":"start","abstract":"

    Undocumented

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

    Undocumented

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

    Struct which defines a range on the image

    "},"Structs/_MBScale.html":{"name":"_MBScale","abstract":"

    Struct which defines a scale which detector searches on the image

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

    Method which creates a range structure

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

    Method which creates a scale structure

    "},"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

    "},"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/MBScale/_MBScale.html#/c:@S@_MBScale@FI@scale":{"name":"scale","abstract":"

    Undocumented

    ","parent_name":"_MBScale"},"Type Definitions/MBScale/_MBScale.html#/c:@S@_MBScale@FI@tolerance":{"name":"tolerance","abstract":"

    Undocumented

    ","parent_name":"_MBScale"},"Type Definitions/MBScale/_MBScale.html":{"name":"_MBScale","abstract":"

    Struct which defines a scale which detector searches on the image

    ","parent_name":"MBScale"},"Type Definitions/MBRange/_MBRange.html#/c:@S@_MBRange@FI@start":{"name":"start","abstract":"

    Undocumented

    ","parent_name":"_MBRange"},"Type Definitions/MBRange/_MBRange.html#/c:@S@_MBRange@FI@stop":{"name":"stop","abstract":"

    Undocumented

    ","parent_name":"_MBRange"},"Type Definitions/MBRange/_MBRange.html":{"name":"_MBRange","abstract":"

    Struct which defines a range on the image

    ","parent_name":"MBRange"},"Type Definitions.html#/c:MBDateParser.h@T@MBDateFormatArray":{"name":"MBDateFormatArray","abstract":"

    Undocumented

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

    Undocumented

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

    Undocumented

    "},"Type Definitions/MBScale.html":{"name":"MBScale","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

    "},"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/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/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/MBOcrLayoutSubview.html#/c:objc(pl)MBOcrLayoutSubview(im)ocrLayoutObtained:withIdentifier:":{"name":"-ocrLayoutObtained:withIdentifier:","abstract":"

    This method should be called when MBOcrLayout is obtained and needs to be drawn/redrawn.

    ","parent_name":"MBOcrLayoutSubview"},"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/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/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/MBFieldByFieldOverlayViewControllerDelegate.html#/c:objc(pl)MBFieldByFieldOverlayViewControllerDelegate(im)fieldByFieldOverlayViewControllerWillClose:":{"name":"-fieldByFieldOverlayViewControllerWillClose:","abstract":"

    Called when Overlay will close. This can happen if the user pressed close button

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

    Called when Scanning finishes and Overlay will dissapear.

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

    Called when user pressed the help button on the overlay.

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

    Outputs back each image processed by the SDK.

    ","parent_name":"MBFieldByFieldOverlayViewControllerDelegate"},"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/MBBarcodeOverlayViewControllerDelegate.html#/c:objc(pl)MBBarcodeOverlayViewControllerDelegate(im)barcodeOverlayViewControllerDidFinishScanning:state:":{"name":"-barcodeOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

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

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

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

    Protocol for obtaining scanning results

    "},"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/MBFieldByFieldOverlayViewControllerDelegate.html":{"name":"MBFieldByFieldOverlayViewControllerDelegate","abstract":"

    Protocol for observing important events with scanning

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Protocol for processing MBOcrLayout. Subviews implementing this protocol process and draw layout data on the screen (e.g. dots or OCR characters)

    "},"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/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/MBTopUpPreset.html#/c:@E@MBTopUpPreset@MBTopUp123":{"name":"MBTopUp123","abstract":"

    For top ups which begin with 123 prefix and USSD code length is 14

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

    For top ups which begin with 103 and USSD code length is 14

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

    For top ups which begin with 131 and USSD code length is 13

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

    For top ups with any prefix and USSD code length from interval {[13, 16]}

    ","parent_name":"MBTopUpPreset"},"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/MBParserResultState.html#/c:@E@MBParserResultState@MBParserResultStateEmpty":{"name":"MBParserResultStateEmpty","abstract":"

    Empty

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

    Uncertain

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

    Valid

    ","parent_name":"MBParserResultState"},"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/PPDocumentType.html#/c:@E@PPDocumentType@PPBlinkOCRDocumentType":{"name":"PPBlinkOCRDocumentType","abstract":"

    Document type for latin documents used with BlinkOCR recognizer

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

    Document type for MICR font

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

    Document type for Arabic characters

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

    Document type for handwriting

    ","parent_name":"PPDocumentType"},"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/MBDocumentSpecificationPreset.html#/c:@E@MBDocumentSpecificationPreset@MBDocumentSpecificationId1Card":{"name":"MBDocumentSpecificationId1Card","abstract":"

    Preset for detecting ID1 cards

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

    Preset for detecting ID2 cards

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

    Preset for detecting cheques

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

    Preset for detecting A4 documents in portrait

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

    Preset for detecting A4 documents in landscape

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

    Preset for detecting vertical ID1 cards

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

    Preset for detecting vertical ID1 cards

    ","parent_name":"MBDocumentSpecificationPreset"},"Enums/MBScanningMode.html#/c:@E@MBScanningMode@MBScanningModeAuto":{"name":"MBScanningModeAuto","abstract":"

    Detects document in both directions

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

    Detects document in landscape direction

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

    Detects document in portrait direction

    ","parent_name":"MBScanningMode"},"Enums/MBDetectionCode.html#/c:@E@MBDetectionCode@MBDetectionCodeFail":{"name":"MBDetectionCodeFail","abstract":"

    Object detection has failed.

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

    Object was detected partially. Only some PhotoPay detectors support this.

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

    Object detection has succeded.

    ","parent_name":"MBDetectionCode"},"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/MBDeepOcrModel.html#/c:@E@MBDeepOcrModel@MBDeepOcrModelBlinkInput":{"name":"MBDeepOcrModelBlinkInput","abstract":"

    Deep OCR model for Blink Input

    ","parent_name":"MBDeepOcrModel"},"Enums/MBDateFormat.html#/c:@E@MBDateFormat@MBDateFormatDDMMYYYY":{"name":"MBDateFormatDDMMYYYY","abstract":"

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

    ","parent_name":"MBDateFormat"},"Enums/PPCameraAutofocusRestriction.html#/c:@E@PPCameraAutofocusRestriction@PPCameraAutofocusRestrictionNone":{"name":"PPCameraAutofocusRestrictionNone","abstract":"

    Default. Indicates that the autofocus system should not restrict the focus range.

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

    Indicates that the autofocus system should restrict the focus range for subject matter that is near to the camera.

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

    Indicates that the autofocus system should restrict the focus range for subject matter that is far from the camera.

    ","parent_name":"PPCameraAutofocusRestriction"},"Enums/PPCameraType.html#/c:@E@PPCameraType@PPCameraTypeBack":{"name":"PPCameraTypeBack","abstract":"

    Back facing camera

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

    Front facing camera

    ","parent_name":"PPCameraType"},"Enums/PPCameraPreset.html#/c:@E@PPCameraPreset@PPCameraPreset480p":{"name":"PPCameraPreset480p","abstract":"

    480p video will always be used

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

    720p video will always be used

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

    The library will calculate optimal resolution based on the use case and device used

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

    Device’s maximal video resolution will be used.

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

    Device’s photo preview resolution will be used

    ","parent_name":"PPCameraPreset"},"Enums/MBBarcodeType.html#/c:@E@MBBarcodeType@MBBarcodeNone":{"name":"MBBarcodeNone","abstract":"

    Undocumented

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

    QR code

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

    Data Matrix

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

    UPCE

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

    UPCA

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

    EAN 8

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

    EAN 13

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

    Code 128

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

    Code 39

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

    ITF

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

    Code 39

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

    PDF 417

    ","parent_name":"MBBarcodeType"},"Enums/MBBarcodeType.html":{"name":"MBBarcodeType","abstract":"

    Enumeration of possible barcode formats

    "},"Enums/PPCameraPreset.html":{"name":"PPCameraPreset","abstract":"

    Camera resolution preset

    "},"Enums/PPCameraType.html":{"name":"PPCameraType","abstract":"

    Camera type

    "},"Enums/PPCameraAutofocusRestriction.html":{"name":"PPCameraAutofocusRestriction","abstract":"

    Camera autofocus restricion mode

    "},"Enums/MBDateFormat.html":{"name":"MBDateFormat","abstract":"

    Available date formats for date parser. To activate parsing of dates with month names in"},"Enums/MBDeepOcrModel.html":{"name":"MBDeepOcrModel","abstract":"

    Type of the document which recognizer scans

    "},"Enums/MBDetectionStatus.html":{"name":"MBDetectionStatus","abstract":"

    Status of the object detection in MicroBlink SDK

    "},"Enums/MBDetectionCode.html":{"name":"MBDetectionCode","abstract":"

    Enum for type of detection status.

    "},"Enums/MBScanningMode.html":{"name":"MBScanningMode","abstract":"

    Enum of different scanning modes: Landscape, Portrait and Auto(both)

    "},"Enums/MBDocumentSpecificationPreset.html":{"name":"MBDocumentSpecificationPreset","abstract":"

    Presets which can be used to instantiate document specification for a specific document format

    "},"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/PPDocumentType.html":{"name":"PPDocumentType","abstract":"

    Type of the document which recognizer scans

    "},"Enums/MBOcrFont.html":{"name":"MBOcrFont","abstract":"

    A list of fonts supported by BlinkOCR

    "},"Enums/MBParserResultState.html":{"name":"MBParserResultState","abstract":"

    Enumeration of posibble parser result state

    "},"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/MBTopUpPreset.html":{"name":"MBTopUpPreset","abstract":"

    Enumeration of posibble top up presets

    "},"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/MBVinRecognizerResult.html#/c:objc(cs)MBVinRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinRecognizerResult"},"Classes/MBVinRecognizerResult.html#/c:objc(cs)MBVinRecognizerResult(py)vin":{"name":"vin","abstract":"

    Returns the recognized VIN or empty string if recognition failed.

    ","parent_name":"MBVinRecognizerResult"},"Classes/MBVinRecognizer.html#/c:objc(cs)MBVinRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinRecognizer"},"Classes/MBVinRecognizer.html#/c:objc(cs)MBVinRecognizer(py)result":{"name":"result","abstract":"

    Vin recognizer result

    ","parent_name":"MBVinRecognizer"},"Classes/MBVinParserResult.html#/c:objc(cs)MBVinParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinParserResult"},"Classes/MBVinParserResult.html#/c:objc(cs)MBVinParserResult(py)vin":{"name":"vin","abstract":"

    Returns the recognized VIN number or empty string if recognition failed.

    ","parent_name":"MBVinParserResult"},"Classes/MBVinParser.html#/c:objc(cs)MBVinParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinParser"},"Classes/MBVinParser.html#/c:objc(cs)MBVinParser(py)result":{"name":"result","abstract":"

    Vin parser result

    ","parent_name":"MBVinParser"},"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/MBTopUpParserResult.html#/c:objc(cs)MBTopUpParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTopUpParserResult"},"Classes/MBTopUpParserResult.html#/c:objc(cs)MBTopUpParserResult(py)topUp":{"name":"topUp","abstract":"

    Returns the recognized Top Up number or empty string if recognition failed.

    ","parent_name":"MBTopUpParserResult"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)result":{"name":"result","abstract":"

    Top Up parser result

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)allowNoPrefix":{"name":"allowNoPrefix","abstract":"

    Indicates whether USSD codes without prefix are allowed.

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)returnCodeWithoutPrefix":{"name":"returnCodeWithoutPrefix","abstract":"

    Indicates whether digts prefix and # at the end of scanned USSD code will","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)setTopUpPreset:":{"name":"-setTopUpPreset:","abstract":"

    Sets the top up prefix and USSD code length based on the given MBTopUpPreset. Only","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)setPrefix:andUssdCodeLength:":{"name":"-setPrefix:andUssdCodeLength:","abstract":"

    Sets the given top up prefix and USSD code length. Only top ups with the chosen prefix and","parent_name":"MBTopUpParser"},"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/MBSubview.html#/c:objc(cs)MBSubview(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified on Overlay events

    ","parent_name":"MBSubview"},"Classes/MBSimNumberRecognizerResult.html#/c:objc(cs)MBSimNumberRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSimNumberRecognizerResult"},"Classes/MBSimNumberRecognizerResult.html#/c:objc(cs)MBSimNumberRecognizerResult(py)simNumber":{"name":"simNumber","abstract":"

    Returns the recognized SIM number from barcode or empty string if recognition failed.

    ","parent_name":"MBSimNumberRecognizerResult"},"Classes/MBSimNumberRecognizer.html#/c:objc(cs)MBSimNumberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSimNumberRecognizer"},"Classes/MBSimNumberRecognizer.html#/c:objc(cs)MBSimNumberRecognizer(py)result":{"name":"result","abstract":"

    Sim number recognizer results

    ","parent_name":"MBSimNumberRecognizer"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(im)initWithIdentifier:parser:":{"name":"-initWithIdentifier:parser:","abstract":"

    Designated initializer, defines the unique identifier for this canned element, and Parser factory for it.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)identifier":{"name":"identifier","abstract":"

    Unique name of the element

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)parser":{"name":"parser","abstract":"

    Parser object which is reponsible scanning the text.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTitle":{"name":"localizedTitle","abstract":"

    Localized title (used in the Pivot control)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTooltip":{"name":"localizedTooltip","abstract":"

    Localized tooltip (used in the tooltip label above the viewfinder)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)keyboardType":{"name":"keyboardType","abstract":"

    Keyboard type used when editing

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTextfieldText":{"name":"localizedTextfieldText","abstract":"

    Localized initial UITextField text (used in field segment scanning text fields)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanned":{"name":"scanned","abstract":"

    YES if the value was scanned, NO otherwise.","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)edited":{"name":"edited","abstract":"

    YES if the value was manually edited, NO otherwise.","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)value":{"name":"value","abstract":"

    Actual value for this element

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanningRegionWidth":{"name":"scanningRegionWidth","abstract":"

    Width of scanning region used in UI. Values are between 0.0 and 1.0 where 1.0 is whole screen width and 0.5 is half width.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanningRegionHeight":{"name":"scanningRegionHeight","abstract":"

    Height of scanning region used in UI. Values are between 0.0 and 1.0 where 1.0 is whole screen height and 0.5 is half height.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)successfulScanImage":{"name":"successfulScanImage","abstract":"

    Image of the scanned element.

    ","parent_name":"MBScanElement"},"Classes/MBRegexParserResult.html#/c:objc(cs)MBRegexParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRegexParserResult"},"Classes/MBRegexParserResult.html#/c:objc(cs)MBRegexParserResult(py)parsedString":{"name":"parsedString","abstract":"

    Returns string containing parsed OCR result according to given regular expression.

    ","parent_name":"MBRegexParserResult"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(im)initWithRegex:":{"name":"-initWithRegex:","abstract":"

    Initializes the regex parser

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)result":{"name":"result","abstract":"

    Regex parser result

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)regex":{"name":"regex","abstract":"

    Defines regex that will be used to parse OCR data. Note that not all java regex features","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)useSieve":{"name":"useSieve","abstract":"

    Enable the usage of algorithm for combining consecutive OCR results between video frames","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)startWithWhitespace":{"name":"startWithWhitespace","abstract":"

    If set to YES, regex will not be matched if there is no whitespace before matched string.","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)endWithWhitespace":{"name":"endWithWhitespace","abstract":"

    If set to YES, regex will not be matched if there is no whitespace after matched string.","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)ocrEngineOptions":{"name":"ocrEngineOptions","abstract":"

    Sets the OCR engine options used in Regex OCR parser.","parent_name":"MBRegexParser"},"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/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/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)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)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 in PhotoPay 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)enabled":{"name":"enabled","abstract":"

    Property which determines if the recognizer is enabled

    ","parent_name":"MBRecognizer"},"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/MBRawParserResult.html#/c:objc(cs)MBRawParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRawParserResult"},"Classes/MBRawParserResult.html#/c:objc(cs)MBRawParserResult(py)rawText":{"name":"rawText","abstract":"

    Extracted date string.

    ","parent_name":"MBRawParserResult"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)result":{"name":"result","abstract":"

    License plates parser result

    ","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)useSieve":{"name":"useSieve","abstract":"

    Enable the usage of algorithm for combining consecutive OCR results between video frames","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)ocrEngineOptions":{"name":"ocrEngineOptions","abstract":"

    Sets the OCR engine options used in Regex OCR parser.","parent_name":"MBRawParser"},"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/MBQuadWithSizeDetectorResult.html#/c:objc(cs)MBQuadWithSizeDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadWithSizeDetectorResult"},"Classes/MBQuadWithSizeDetectorResult.html#/c:objc(cs)MBQuadWithSizeDetectorResult(py)physicalHeightInInches":{"name":"physicalHeightInInches","abstract":"

    Returns the physical height of the detected MBQuadrangle in inches.

    ","parent_name":"MBQuadWithSizeDetectorResult"},"Classes/MBQuadWithSizeDetector.html#/c:objc(cs)MBQuadWithSizeDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadWithSizeDetector"},"Classes/MBQuadWithSizeDetector.html#/c:objc(cs)MBQuadWithSizeDetector(py)quadWithSizeResult":{"name":"quadWithSizeResult","abstract":"

    Quad with size detector result

    ","parent_name":"MBQuadWithSizeDetector"},"Classes/MBQuadDetectorResult.html#/c:objc(cs)MBQuadDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadDetectorResult"},"Classes/MBQuadDetectorResult.html#/c:objc(cs)MBQuadDetectorResult(py)quadrangle":{"name":"quadrangle","abstract":"

    Returns the location of detected quadrilateral in coordinate system of image in which detection was performed.

    ","parent_name":"MBQuadDetectorResult"},"Classes/MBQuadDetector.html#/c:objc(cs)MBQuadDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadDetector"},"Classes/MBQuadDetector.html#/c:objc(cs)MBQuadDetector(py)quadResult":{"name":"quadResult","abstract":"

    Quad detector result

    ","parent_name":"MBQuadDetector"},"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/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)stringData":{"name":"-stringData","abstract":"

    Retrieves string content of scanned data

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)barcodeType":{"name":"barcodeType","abstract":"

    Type of the barcode scanned

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)result":{"name":"result","abstract":"

    PDF417 recognizer results

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)scanInverse":{"name":"scanInverse","abstract":"

    Set this to YES to allow scanning barcodes with inverted intensities","parent_name":"MBPdf417Recognizer"},"Classes/MBParserResult.html#/c:objc(cs)MBParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserResult"},"Classes/MBParserResult.html#/c:objc(cs)MBParserResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBParserResult"},"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/MBParser.html#/c:objc(cs)MBParser(py)baseResult":{"name":"baseResult","abstract":"

    Base parser result

    ","parent_name":"MBParser"},"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/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(im)init":{"name":"-init","abstract":"

    Creates MBOcrEngineOptions with default settings.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)documentType":{"name":"documentType","abstract":"

    Type of document scanned.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)imageProcessingEnabled":{"name":"imageProcessingEnabled","abstract":"

    Specifies if the image processing is performed on image

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)charWhitelist":{"name":"charWhitelist","abstract":"

    Whitelist of characters used in the OCR process. The set must contain MBOcrCharKey objects.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(py)code":{"name":"code","abstract":"

    Unicode value of the char. For example, for char ‘k’, you can use either ‘k’ or 107.

    ","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(py)font":{"name":"font","abstract":"

    Font of the char. Can be specific (for example MB_OCR_FONT_ARIAL), or any font (MB_OCR_FONT_ANY), which is the same","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(im)initWithCode:font:":{"name":"-initWithCode:font:","abstract":"

    Initializer which specifies the code and font of the char.

    ","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(cm)keyWithCode:font:":{"name":"+keyWithCode:font:","abstract":"

    Factory method for easier instantiation

    ","parent_name":"MBOcrCharKey"},"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/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/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(py)mrzLocation":{"name":"mrzLocation","abstract":"

    Returns the location of Machine Readable Zone in coordinate system of image in which detection was performed.

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(py)mrzPhysicalHeightInInches":{"name":"mrzPhysicalHeightInInches","abstract":"

    Returns the physical height in inches of Machine Readable Zone.

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)result":{"name":"result","abstract":"

    MRTD detector result

    ","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)detectFullDocument":{"name":"detectFullDocument","abstract":"

    Defines whether full document will be detected. If set to false, result will contain","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)useCardDetector":{"name":"useCardDetector","abstract":"

    Enable detection correction with card detector. When this option is enabled, after","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(im)setMrtdSpecifications:":{"name":"-setMrtdSpecifications:","abstract":"

    Sets the mrtd specifications. Mrtd specifications describe the images that should be returned by","parent_name":"MBMrtdDetector"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)moveable":{"name":"moveable","abstract":"

    Denotes if view finder is moveable. Viewfinder will move whenever something is detected and will return to default position if no object","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)portraitMargins":{"name":"portraitMargins","abstract":"

    Margins between overlay bounds and default corner positions while in portrait orientation.

    ","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)landscapeMargins":{"name":"landscapeMargins","abstract":"

    Margins between overlay bounds and default corner positions while in landscape orientation.

    ","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(im)resetPositions":{"name":"-resetPositions","abstract":"

    Resets the viewfinder position to it’s initial position.

    ","parent_name":"MBModernViewfinderSubview"},"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/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)verifyAndGetDefaultResourcesBundle":{"name":"+verifyAndGetDefaultResourcesBundle","abstract":"

    This method check existance of the default resources bundle Microblink.bundle,","parent_name":"MBMicroblinkApp"},"Classes/MBLicensePlatesParserResult.html#/c:objc(cs)MBLicensePlatesParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBLicensePlatesParserResult"},"Classes/MBLicensePlatesParserResult.html#/c:objc(cs)MBLicensePlatesParserResult(py)licensePlate":{"name":"licensePlate","abstract":"

    Returns the recognized license plate number or empty string if recognition failed.

    ","parent_name":"MBLicensePlatesParserResult"},"Classes/MBLicensePlatesParser.html#/c:objc(cs)MBLicensePlatesParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBLicensePlatesParser"},"Classes/MBLicensePlatesParser.html#/c:objc(cs)MBLicensePlatesParser(py)result":{"name":"result","abstract":"

    License plates parser result

    ","parent_name":"MBLicensePlatesParser"},"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 PPImage around CVImageBufferRef.

    ","parent_name":"MBImage"},"Classes/MBIbanParserResult.html#/c:objc(cs)MBIbanParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBIbanParserResult"},"Classes/MBIbanParserResult.html#/c:objc(cs)MBIbanParserResult(py)iban":{"name":"iban","abstract":"

    Returns the rparsed IBAN or empty string if recognition failed.

    ","parent_name":"MBIbanParserResult"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)result":{"name":"result","abstract":"

    Iban parser result

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)alwaysReturnPrefix":{"name":"alwaysReturnPrefix","abstract":"

    Should prefix (country code) always be returned.

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)countryCodeWhitelist":{"name":"countryCodeWhitelist","abstract":"

    Set of allowed country codes. If whitelist is defined, only IBANs with defined country codes","parent_name":"MBIbanParser"},"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/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithSettings:delegate:":{"name":"-initWithSettings:delegate:","abstract":"

    Designated initializer of the overlay. All scan settings from the recognizer runner will be removed and generated anew with passed MBScanElement array.

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithNibName:bundle:":{"name":"-initWithNibName:bundle:","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified with important UI events

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(im)initWithScanElements:":{"name":"-initWithScanElements:","abstract":"

    Designated initializer for settings.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)scanElements":{"name":"scanElements","abstract":"

    Array of MBScanElement objects which defines which Elements are scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)showOcrDots":{"name":"showOcrDots","abstract":"

    Property that enables showing of flashing dots over characters being scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)outputSuccessfulImages":{"name":"outputSuccessfulImages","abstract":"

    Property that enables outputting images of sucessful scans for each element scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)consecutiveScanThreshold":{"name":"consecutiveScanThreshold","abstract":"

    Number of times same parse result needs to be outputted to be considered valid

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBEmailParserResult.html#/c:objc(cs)MBEmailParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBEmailParserResult"},"Classes/MBEmailParserResult.html#/c:objc(cs)MBEmailParserResult(py)email":{"name":"email","abstract":"

    Returns the recognized email or empty string if recognition failed.

    ","parent_name":"MBEmailParserResult"},"Classes/MBEmailParser.html#/c:objc(cs)MBEmailParser(py)result":{"name":"result","abstract":"

    Email parser result

    ","parent_name":"MBEmailParser"},"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/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/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)initWithAspectRatio:physicalSizeInInches:":{"name":"-initWithAspectRatio:physicalSizeInInches:","abstract":"

    Use this initializer for specifiying a document format.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(cm)createFromPreset:":{"name":"+createFromPreset:","abstract":"

    Factory method which creates Document specification based on a preset

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)setPortraitAndLandscapeScale:":{"name":"-setPortraitAndLandscapeScale:","abstract":"

    Sets scale and scale tolerance that will be used when detecting document in both orientations.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)maxAngle":{"name":"maxAngle","abstract":"

    Maximum angle for document detection

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)portraitScale":{"name":"portraitScale","abstract":"

    Scale and scale tolerance that will be used when detecting document in portrait orientation.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)landscapeScale":{"name":"landscapeScale","abstract":"

    Scale and scale tolerance that will be used when detecting document in landscape orientation.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)scanningMode":{"name":"scanningMode","abstract":"

    Scanning mode that defines in which orientations can this document be detected.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)xRange":{"name":"xRange","abstract":"

    Percentage of possible document offset on x axis.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)yRange":{"name":"yRange","abstract":"

    Percentage of possible document offset on y axis.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)physicalSizeInInches":{"name":"physicalSizeInInches","abstract":"

    Physical size of document in inches

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)viewfinderMoveable":{"name":"viewfinderMoveable","abstract":"

    Undocumented

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentDetectorResult.html#/c:objc(cs)MBDocumentDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentDetectorResult"},"Classes/MBDocumentDetectorResult.html#/c:objc(cs)MBDocumentDetectorResult(py)aspectRatio":{"name":"aspectRatio","abstract":"

    Aspect ratio of detected document.

    ","parent_name":"MBDocumentDetectorResult"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(im)initWithDocumentSpecifications:":{"name":"-initWithDocumentSpecifications:","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)result":{"name":"result","abstract":"

    Document detector result

    ","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)documentSpecifications":{"name":"documentSpecifications","abstract":"

    Document specifications describe the documents that should be detected with","parent_name":"MBDocumentDetector"},"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/MBDetectorResult.html#/c:objc(cs)MBDetectorResult(py)detectionCode":{"name":"detectionCode","abstract":"

    Undocumented

    ","parent_name":"MBDetectorResult"},"Classes/MBDetectorResult.html#/c:objc(cs)MBDetectorResult(py)detectionStatus":{"name":"detectionStatus","abstract":"

    Undocumented

    ","parent_name":"MBDetectorResult"},"Classes/MBDetectorRecognizerResult.html#/c:objc(cs)MBDetectorRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizerResult"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(im)initWithQuadWithSizeDetector:":{"name":"-initWithQuadWithSizeDetector:","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)result":{"name":"result","abstract":"

    Detector recognizer results

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)allowFlipped":{"name":"allowFlipped","abstract":"

    Set this to true to enable recognition of document also in upside down direction.","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)detector":{"name":"detector","abstract":"

    Returns the detector that will be used for performing the document detection during recognition

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetector.html#/c:objc(cs)MBDetector(py)baseResult":{"name":"baseResult","abstract":"

    Base detector result

    ","parent_name":"MBDetector"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrPostprocessorNmsThreshold":{"name":"deepOcrPostprocessorNmsThreshold","abstract":"

    Returns or sets nms threshold for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrPostprocessorScoreThreshold":{"name":"deepOcrPostprocessorScoreThreshold","abstract":"

    Returns or sets score threshold for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrModel":{"name":"deepOcrModel","abstract":"

    Returns or sets model for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrModelString":{"name":"deepOcrModelString","abstract":"

    Returns or sets model for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"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/MBDateParserResult.html#/c:objc(cs)MBDateParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateParserResult"},"Classes/MBDateParserResult.html#/c:objc(cs)MBDateParserResult(py)date":{"name":"date","abstract":"

    Extracted date.

    ","parent_name":"MBDateParserResult"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(py)result":{"name":"result","abstract":"

    Date parser result

    ","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)setDateFormats:":{"name":"-setDateFormats:","abstract":"

    Specifies the date formats that will be accepted by date parser. By default, all available","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)setDateSeparatorChars:":{"name":"-setDateSeparatorChars:","abstract":"

    Specifies the date separator characters between date parts (day, month, year) that will be","parent_name":"MBDateParser"},"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":"

    Undocumented

    ","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/MBBlinkInputRecognizerResult.html#/c:objc(cs)MBBlinkInputRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkInputRecognizerResult"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(im)initWithProcessors:":{"name":"-initWithProcessors:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkInputRecognizer"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(py)processors":{"name":"processors","abstract":"

    Getting array of readonly processors

    ","parent_name":"MBBlinkInputRecognizer"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(py)result":{"name":"result","abstract":"

    BlinkInput recognizer results

    ","parent_name":"MBBlinkInputRecognizer"},"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/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)minimalLineHeight":{"name":"minimalLineHeight","abstract":"

    Minimal height of the line of text given in pixels. All chars smaller than this value will be ignored.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)maximalLineHeight":{"name":"maximalLineHeight","abstract":"

    Maximal height of the line of text given in pixels.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)maxCharsExpected":{"name":"maxCharsExpected","abstract":"

    Maximal chars expected on the image.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)colorDropoutEnabled":{"name":"colorDropoutEnabled","abstract":"

    Specifies if the additional image processing which drops the background colors should be performed.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)stringData":{"name":"-stringData","abstract":"

    Retrieves string content of scanned data

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(cm)toTypeName:":{"name":"+toTypeName:","abstract":"

    Method which gives string representation for a given PPBarcodeType enum value.

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)barcodeType":{"name":"barcodeType","abstract":"

    Type of the barcode scanned

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)result":{"name":"result","abstract":"

    Barcode recognizer results

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanAztec":{"name":"scanAztec","abstract":"

    Set this to YES to scan Aztec 2D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanCode128":{"name":"scanCode128","abstract":"

    Set this to YES to scan Code 128 1D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanCode39":{"name":"scanCode39","abstract":"

    Set this to YES to scan Code 39 1D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanDataMatrix":{"name":"scanDataMatrix","abstract":"

    Set this to YES to scan DataMatrix 2D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanEAN13":{"name":"scanEAN13","abstract":"

    Set this to YES to scan EAN 13 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanEAN8":{"name":"scanEAN8","abstract":"

    Set this to YES to scan EAN8 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanITF":{"name":"scanITF","abstract":"

    Set this to YES to scan ITF barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanQR":{"name":"scanQR","abstract":"

    Set this to YES to scan QR barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUPCA":{"name":"scanUPCA","abstract":"

    Set this to YES to scan UPCA barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUPCE":{"name":"scanUPCE","abstract":"

    Set this to YES to scan UPCE barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanPdf417":{"name":"scanPdf417","abstract":"

    Set this to YES to scan Pdf417 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)useSlowerThoroughScan":{"name":"useSlowerThoroughScan","abstract":"

    Set this to YES to allow slower, but better image processing.

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)autoScaleDetection":{"name":"autoScaleDetection","abstract":"

    Allow enabling the autodetection of image scale when scanning barcodes.","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)readCode39AsExtendedData":{"name":"readCode39AsExtendedData","abstract":"

    Enable reading code39 barcode contents as extended data. For more information about code39","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanInverse":{"name":"scanInverse","abstract":"

    Set this to YES to allow scanning barcodes with inverted intensities","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlaySettings.html#/c:objc(cs)MBBarcodeOverlaySettings(py)displayBarcodeDots":{"name":"displayBarcodeDots","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeOverlaySettings"},"Classes/MBBarcodeOverlaySettings.html#/c:objc(cs)MBBarcodeOverlaySettings(py)displayViewfinder":{"name":"displayViewfinder","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeOverlaySettings"},"Classes/MBAmountParserResult.html#/c:objc(cs)MBAmountParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBAmountParserResult"},"Classes/MBAmountParserResult.html#/c:objc(cs)MBAmountParserResult(py)amount":{"name":"amount","abstract":"

    Returns the recognized amount number or empty string if recognition failed.

    ","parent_name":"MBAmountParserResult"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)result":{"name":"result","abstract":"

    Amount parser result

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowNegativeAmounts":{"name":"allowNegativeAmounts","abstract":"

    Indicates whether negative values are accepted as valid amounts.","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowSpaceSeparators":{"name":"allowSpaceSeparators","abstract":"

    Indicates whether amounts with space separators between groups of digits(thousands) are allowed.

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowMissingDecimals":{"name":"allowMissingDecimals","abstract":"

    Indicates whether amounts without decimal are accepted as valid. For example 1.465 is","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)arabicIndicMode":{"name":"arabicIndicMode","abstract":"

    Indicates whether Arabic-Indic mode is enabled. In Arabic-Indic mode parser can recognize","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html":{"name":"MBAmountParser","abstract":"

    MBAmountParser is used for extracting amount from OCR result

    "},"Classes/MBAmountParserResult.html":{"name":"MBAmountParserResult","abstract":"

    MBAmountParser is used for extracting amount from OCR result

    "},"Classes/MBBarcodeOverlaySettings.html":{"name":"MBBarcodeOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBarcodeOverlayViewController.html":{"name":"MBBarcodeOverlayViewController","abstract":"

    Undocumented

    "},"Classes/MBBarcodeRecognizer.html":{"name":"MBBarcodeRecognizer","abstract":"

    MBBarcodeRecognizer is used for scanning most of 1D barcode formats, and 2D format"},"Classes/MBBarcodeRecognizerResult.html":{"name":"MBBarcodeRecognizerResult","abstract":"

    Result of MBBarcodeRecognizer; is used for scanning most of 1D barcode formats, and 2D format"},"Classes/MBBaseOcrEngineOptions.html":{"name":"MBBaseOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"Classes/MBBaseOcrOverlaySettings.html":{"name":"MBBaseOcrOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlaySettings.html":{"name":"MBBaseOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes.html#/c:objc(cs)MBBaseOverlayViewController":{"name":"MBBaseOverlayViewController","abstract":"

    Common base class for default overlay view controllers

    "},"Classes/MBBlinkInputRecognizer.html":{"name":"MBBlinkInputRecognizer","abstract":"

    A recognizer for BlinkInput API and general OCR recognition

    "},"Classes/MBBlinkInputRecognizerResult.html":{"name":"MBBlinkInputRecognizerResult","abstract":"

    A recognizer result for BlinkInput API and general OCR recognition

    "},"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/MBDateParser.html":{"name":"MBDateParser","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"Classes/MBDateParserResult.html":{"name":"MBDateParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"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/MBDeepOcrEngineOptions.html":{"name":"MBDeepOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"Classes/MBDetector.html":{"name":"MBDetector","abstract":"

    Base class for all detectors

    "},"Classes/MBDetectorRecognizer.html":{"name":"MBDetectorRecognizer","abstract":"

    Recognizer for scanning generic documents using custom MBDetector.

    "},"Classes/MBDetectorRecognizerResult.html":{"name":"MBDetectorRecognizerResult","abstract":"

    Result of MBDetectorRecognizer

    "},"Classes/MBDetectorResult.html":{"name":"MBDetectorResult","abstract":"

    Base class for all detectors results

    "},"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/MBDocumentDetector.html":{"name":"MBDocumentDetector","abstract":"

    Detector that can perform detection of card documents, cheques, papers, etc.

    "},"Classes/MBDocumentDetectorResult.html":{"name":"MBDocumentDetectorResult","abstract":"

    Detector that can perform detection of card documents, cheques, papers, etc.

    "},"Classes/MBDocumentOverlaySettings.html":{"name":"MBDocumentOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentSpecification.html":{"name":"MBDocumentSpecification","abstract":"

    Document class describes a document which is being detected by DocumentDetector."},"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/MBEmailParser.html":{"name":"MBEmailParser","abstract":"

    MBEmailParser is used for parsing emails

    "},"Classes/MBEmailParserResult.html":{"name":"MBEmailParserResult","abstract":"

    MBEmailParser is used for parsing emails

    "},"Classes.html#/c:objc(cs)MBEntity":{"name":"MBEntity","abstract":"

    Base class for all entities processors, recognizers, detectors…

    "},"Classes/MBFieldByFieldOverlaySettings.html":{"name":"MBFieldByFieldOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBFieldByFieldOverlayViewController.html":{"name":"MBFieldByFieldOverlayViewController","abstract":"

    View Controller responsible for view hierarchy for Form OCR scannning."},"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/MBIbanParser.html":{"name":"MBIbanParser","abstract":"

    MBAmountParser that can extract IBAN (International Bank Account Number) from OCR result.

    "},"Classes/MBIbanParserResult.html":{"name":"MBIbanParserResult","abstract":"

    MBAmountParser that can extract IBAN (International Bank Account Number) from OCR result.

    "},"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/MBLicensePlatesParser.html":{"name":"MBLicensePlatesParser","abstract":"

    MBLicensePlatesParser is used for parsing license plates

    "},"Classes/MBLicensePlatesParserResult.html":{"name":"MBLicensePlatesParserResult","abstract":"

    MBLicensePlatesParser is used for parsing license plates

    "},"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/MBModernViewfinderSubview.html":{"name":"MBModernViewfinderSubview","abstract":"

    Overlay subview presenting the status of detection."},"Classes/MBMrtdDetector.html":{"name":"MBMrtdDetector","abstract":"

    Detector that can perform detection of Machine Readable Travel Documents (MRTD).

    "},"Classes/MBMrtdDetectorResult.html":{"name":"MBMrtdDetectorResult","abstract":"

    Detector that can perform detection of Machine Readable Travel Documents (MRTD).

    "},"Classes/MBMrtdSpecification.html":{"name":"MBMrtdSpecification","abstract":"

    Mrtd class describes a document which is being detected by MrtdDetector."},"Classes/MBNoUpScalingDewarpPolicy.html":{"name":"MBNoUpScalingDewarpPolicy","abstract":"

    No upscaling dewarp policy. Dewarp height will be calculated in a way"},"Classes/MBOcrCharKey.html":{"name":"MBOcrCharKey","abstract":"

    Class representing a char in specific font.

    "},"Classes/MBOcrEngineOptions.html":{"name":"MBOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"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.html#/c:objc(cs)MBOcrResultSubview":{"name":"MBOcrResultSubview","abstract":"

    Overlay subview presenting status of OCR detection. OCR results are displayed as green characters over detected locations.

    "},"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/MBParser.html":{"name":"MBParser","abstract":"

    Base class for all parsers

    "},"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/MBParserResult.html":{"name":"MBParserResult","abstract":"

    Base class for all parser results

    "},"Classes/MBPdf417Recognizer.html":{"name":"MBPdf417Recognizer","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBPdf417RecognizerResult.html":{"name":"MBPdf417RecognizerResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"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/MBQuadDetector.html":{"name":"MBQuadDetector","abstract":"

    Base class for all detectors that are used for MBQuadrangle detection.

    "},"Classes/MBQuadDetectorResult.html":{"name":"MBQuadDetectorResult","abstract":"

    Base class for all detectors that are used for MBQuadrangle detection.

    "},"Classes/MBQuadWithSizeDetector.html":{"name":"MBQuadWithSizeDetector","abstract":"

    Base class for all detectors that are used for MBQuadrangle"},"Classes/MBQuadWithSizeDetectorResult.html":{"name":"MBQuadWithSizeDetectorResult","abstract":"

    Base class for all detectors that are used for MBQuadrangle"},"Classes/MBQuadrangle.html":{"name":"MBQuadrangle","abstract":"

    Class represents the quadrangle (arbitrary geometric object with 4 different corner points

    "},"Classes/MBRawParser.html":{"name":"MBRawParser","abstract":"

    MBRawParser that simply returns the string version of raw OCR result, without performing"},"Classes/MBRawParserResult.html":{"name":"MBRawParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"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/MBRegexParser.html":{"name":"MBRegexParser","abstract":"

    Represents a parser which parses OCR result according to given regular expression."},"Classes/MBRegexParserResult.html":{"name":"MBRegexParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"Classes/MBScanElement.html":{"name":"MBScanElement","abstract":"

    The easiest way to UI for Ocr scanning is by specifying the MBScanElements.

    "},"Classes/MBSimNumberRecognizer.html":{"name":"MBSimNumberRecognizer","abstract":"

    Recognizer that can perform recognition of barcodes on SIM packaging.

    "},"Classes/MBSimNumberRecognizerResult.html":{"name":"MBSimNumberRecognizerResult","abstract":"

    Recognizer that can perform recognition of barcodes on SIM packaging.

    "},"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/MBTopUpParser.html":{"name":"MBTopUpParser","abstract":"

    MBTopUpParser is used for parsing Top Up numbers

    "},"Classes/MBTopUpParserResult.html":{"name":"MBTopUpParserResult","abstract":"

    MBTopUpParser is used for parsing Top Up numbers

    "},"Classes/MBViewControllerFactory.html":{"name":"MBViewControllerFactory","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBVinParser.html":{"name":"MBVinParser","abstract":"

    MBVinParser is used for parsing VIN numbers

    "},"Classes/MBVinParserResult.html":{"name":"MBVinParserResult","abstract":"

    MBVinParser is used for parsing VIN numbers

    "},"Classes/MBVinRecognizer.html":{"name":"MBVinRecognizer","abstract":"

    Recognizer that can perform recognition of VINs (Vehicle Identification Number).

    "},"Classes/MBVinRecognizerResult.html":{"name":"MBVinRecognizerResult","abstract":"

    Recognizer that can perform recognition of VINs (Vehicle Identification Number).

    "},"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/_MBScale.html#/c:@S@_MBScale@FI@scale":{"name":"scale","abstract":"

    Undocumented

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

    Undocumented

    ","parent_name":"_MBScale"},"Structs/_MBRange.html#/c:@S@_MBRange@FI@start":{"name":"start","abstract":"

    Undocumented

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

    Undocumented

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

    Struct which defines a range on the image

    "},"Structs/_MBScale.html":{"name":"_MBScale","abstract":"

    Struct which defines a scale which detector searches on the image

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

    Method which creates a range structure

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

    Method which creates a scale structure

    "},"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

    "},"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/MBScale/_MBScale.html#/c:@S@_MBScale@FI@scale":{"name":"scale","abstract":"

    Undocumented

    ","parent_name":"_MBScale"},"Type Definitions/MBScale/_MBScale.html#/c:@S@_MBScale@FI@tolerance":{"name":"tolerance","abstract":"

    Undocumented

    ","parent_name":"_MBScale"},"Type Definitions/MBScale/_MBScale.html":{"name":"_MBScale","abstract":"

    Struct which defines a scale which detector searches on the image

    ","parent_name":"MBScale"},"Type Definitions/MBRange/_MBRange.html#/c:@S@_MBRange@FI@start":{"name":"start","abstract":"

    Undocumented

    ","parent_name":"_MBRange"},"Type Definitions/MBRange/_MBRange.html#/c:@S@_MBRange@FI@stop":{"name":"stop","abstract":"

    Undocumented

    ","parent_name":"_MBRange"},"Type Definitions/MBRange/_MBRange.html":{"name":"_MBRange","abstract":"

    Struct which defines a range on the image

    ","parent_name":"MBRange"},"Type Definitions.html#/c:MBDateParser.h@T@MBDateFormatArray":{"name":"MBDateFormatArray","abstract":"

    Undocumented

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

    Undocumented

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

    Undocumented

    "},"Type Definitions/MBScale.html":{"name":"MBScale","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.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/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/MBOcrLayoutSubview.html#/c:objc(pl)MBOcrLayoutSubview(im)ocrLayoutObtained:withIdentifier:":{"name":"-ocrLayoutObtained:withIdentifier:","abstract":"

    This method should be called when MBOcrLayout is obtained and needs to be drawn/redrawn.

    ","parent_name":"MBOcrLayoutSubview"},"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/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/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/MBFieldByFieldOverlayViewControllerDelegate.html#/c:objc(pl)MBFieldByFieldOverlayViewControllerDelegate(im)fieldByFieldOverlayViewControllerWillClose:":{"name":"-fieldByFieldOverlayViewControllerWillClose:","abstract":"

    Called when Overlay will close. This can happen if the user pressed close button

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

    Called when Scanning finishes and Overlay will dissapear.

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

    Called when user pressed the help button on the overlay.

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

    Outputs back each image processed by the SDK.

    ","parent_name":"MBFieldByFieldOverlayViewControllerDelegate"},"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/MBBarcodeOverlayViewControllerDelegate.html#/c:objc(pl)MBBarcodeOverlayViewControllerDelegate(im)barcodeOverlayViewControllerDidFinishScanning:state:":{"name":"-barcodeOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

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

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

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

    Protocol for obtaining scanning results

    "},"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/MBFieldByFieldOverlayViewControllerDelegate.html":{"name":"MBFieldByFieldOverlayViewControllerDelegate","abstract":"

    Protocol for observing important events with scanning

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Protocol for processing MBOcrLayout. Subviews implementing this protocol process and draw layout data on the screen (e.g. dots or OCR characters)

    "},"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/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/MBTopUpPreset.html#/c:@E@MBTopUpPreset@MBTopUp123":{"name":"MBTopUp123","abstract":"

    For top ups which begin with 123 prefix and USSD code length is 14

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

    For top ups which begin with 103 and USSD code length is 14

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

    For top ups which begin with 131 and USSD code length is 13

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

    For top ups with any prefix and USSD code length from interval {[13, 16]}

    ","parent_name":"MBTopUpPreset"},"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/MBParserResultState.html#/c:@E@MBParserResultState@MBParserResultStateEmpty":{"name":"MBParserResultStateEmpty","abstract":"

    Empty

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

    Uncertain

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

    Valid

    ","parent_name":"MBParserResultState"},"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/PPDocumentType.html#/c:@E@PPDocumentType@PPBlinkOCRDocumentType":{"name":"PPBlinkOCRDocumentType","abstract":"

    Document type for latin documents used with BlinkOCR recognizer

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

    Document type for MICR font

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

    Document type for Arabic characters

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

    Document type for handwriting

    ","parent_name":"PPDocumentType"},"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/MBDocumentSpecificationPreset.html#/c:@E@MBDocumentSpecificationPreset@MBDocumentSpecificationId1Card":{"name":"MBDocumentSpecificationId1Card","abstract":"

    Preset for detecting ID1 cards

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

    Preset for detecting ID2 cards

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

    Preset for detecting cheques

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

    Preset for detecting A4 documents in portrait

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

    Preset for detecting A4 documents in landscape

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

    Preset for detecting vertical ID1 cards

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

    Preset for detecting vertical ID1 cards

    ","parent_name":"MBDocumentSpecificationPreset"},"Enums/MBScanningMode.html#/c:@E@MBScanningMode@MBScanningModeAuto":{"name":"MBScanningModeAuto","abstract":"

    Detects document in both directions

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

    Detects document in landscape direction

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

    Detects document in portrait direction

    ","parent_name":"MBScanningMode"},"Enums/MBDetectionCode.html#/c:@E@MBDetectionCode@MBDetectionCodeFail":{"name":"MBDetectionCodeFail","abstract":"

    Object detection has failed.

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

    Object was detected partially. Only some PhotoPay detectors support this.

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

    Object detection has succeded.

    ","parent_name":"MBDetectionCode"},"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/MBDeepOcrModel.html#/c:@E@MBDeepOcrModel@MBDeepOcrModelBlinkInput":{"name":"MBDeepOcrModelBlinkInput","abstract":"

    Deep OCR model for Blink Input

    ","parent_name":"MBDeepOcrModel"},"Enums/MBDateFormat.html#/c:@E@MBDateFormat@MBDateFormatDDMMYYYY":{"name":"MBDateFormatDDMMYYYY","abstract":"

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

    ","parent_name":"MBDateFormat"},"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/MBBarcodeType.html#/c:@E@MBBarcodeType@MBBarcodeNone":{"name":"MBBarcodeNone","abstract":"

    Undocumented

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

    QR code

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

    Data Matrix

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

    UPCE

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

    UPCA

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

    EAN 8

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

    EAN 13

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

    Code 128

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

    Code 39

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

    ITF

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

    Code 39

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

    PDF 417

    ","parent_name":"MBBarcodeType"},"Enums/MBBarcodeType.html":{"name":"MBBarcodeType","abstract":"

    Enumeration of possible barcode formats

    "},"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/MBDateFormat.html":{"name":"MBDateFormat","abstract":"

    Available date formats for date parser. To activate parsing of dates with month names in"},"Enums/MBDeepOcrModel.html":{"name":"MBDeepOcrModel","abstract":"

    Type of the document which recognizer scans

    "},"Enums/MBDetectionStatus.html":{"name":"MBDetectionStatus","abstract":"

    Status of the object detection in Microblink SDK

    "},"Enums/MBDetectionCode.html":{"name":"MBDetectionCode","abstract":"

    Enum for type of detection status.

    "},"Enums/MBScanningMode.html":{"name":"MBScanningMode","abstract":"

    Enum of different scanning modes: Landscape, Portrait and Auto(both)

    "},"Enums/MBDocumentSpecificationPreset.html":{"name":"MBDocumentSpecificationPreset","abstract":"

    Presets which can be used to instantiate document specification for a specific document format

    "},"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/PPDocumentType.html":{"name":"PPDocumentType","abstract":"

    Type of the document which recognizer scans

    "},"Enums/MBOcrFont.html":{"name":"MBOcrFont","abstract":"

    A list of fonts supported by BlinkOCR

    "},"Enums/MBParserResultState.html":{"name":"MBParserResultState","abstract":"

    Enumeration of posibble parser result state

    "},"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/MBTopUpPreset.html":{"name":"MBTopUpPreset","abstract":"

    Enumeration of posibble top up presets

    "},"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/MBVinRecognizerResult.html#/c:objc(cs)MBVinRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinRecognizerResult"},"Classes/MBVinRecognizerResult.html#/c:objc(cs)MBVinRecognizerResult(py)vin":{"name":"vin","abstract":"

    Returns the recognized VIN or empty string if recognition failed.

    ","parent_name":"MBVinRecognizerResult"},"Classes/MBVinRecognizer.html#/c:objc(cs)MBVinRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinRecognizer"},"Classes/MBVinRecognizer.html#/c:objc(cs)MBVinRecognizer(py)result":{"name":"result","abstract":"

    Vin recognizer result

    ","parent_name":"MBVinRecognizer"},"Classes/MBVinParserResult.html#/c:objc(cs)MBVinParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinParserResult"},"Classes/MBVinParserResult.html#/c:objc(cs)MBVinParserResult(py)vin":{"name":"vin","abstract":"

    Returns the recognized VIN number or empty string if recognition failed.

    ","parent_name":"MBVinParserResult"},"Classes/MBVinParser.html#/c:objc(cs)MBVinParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinParser"},"Classes/MBVinParser.html#/c:objc(cs)MBVinParser(py)result":{"name":"result","abstract":"

    Vin parser result

    ","parent_name":"MBVinParser"},"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/MBTopUpParserResult.html#/c:objc(cs)MBTopUpParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTopUpParserResult"},"Classes/MBTopUpParserResult.html#/c:objc(cs)MBTopUpParserResult(py)topUp":{"name":"topUp","abstract":"

    Returns the recognized Top Up number or empty string if recognition failed.

    ","parent_name":"MBTopUpParserResult"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)result":{"name":"result","abstract":"

    Top Up parser result

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)allowNoPrefix":{"name":"allowNoPrefix","abstract":"

    Indicates whether USSD codes without prefix are allowed.

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)returnCodeWithoutPrefix":{"name":"returnCodeWithoutPrefix","abstract":"

    Indicates whether digts prefix and # at the end of scanned USSD code will","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)setTopUpPreset:":{"name":"-setTopUpPreset:","abstract":"

    Sets the top up prefix and USSD code length based on the given MBTopUpPreset. Only","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)setPrefix:andUssdCodeLength:":{"name":"-setPrefix:andUssdCodeLength:","abstract":"

    Sets the given top up prefix and USSD code length. Only top ups with the chosen prefix and","parent_name":"MBTopUpParser"},"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/MBSimNumberRecognizerResult.html#/c:objc(cs)MBSimNumberRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSimNumberRecognizerResult"},"Classes/MBSimNumberRecognizerResult.html#/c:objc(cs)MBSimNumberRecognizerResult(py)simNumber":{"name":"simNumber","abstract":"

    Returns the recognized SIM number from barcode or empty string if recognition failed.

    ","parent_name":"MBSimNumberRecognizerResult"},"Classes/MBSimNumberRecognizer.html#/c:objc(cs)MBSimNumberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSimNumberRecognizer"},"Classes/MBSimNumberRecognizer.html#/c:objc(cs)MBSimNumberRecognizer(py)result":{"name":"result","abstract":"

    Sim number recognizer results

    ","parent_name":"MBSimNumberRecognizer"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(im)initWithIdentifier:parser:":{"name":"-initWithIdentifier:parser:","abstract":"

    Designated initializer, defines the unique identifier for this canned element, and Parser factory for it.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)identifier":{"name":"identifier","abstract":"

    Unique name of the element

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)parser":{"name":"parser","abstract":"

    Parser object which is reponsible scanning the text.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTitle":{"name":"localizedTitle","abstract":"

    Localized title (used in the Pivot control)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTooltip":{"name":"localizedTooltip","abstract":"

    Localized tooltip (used in the tooltip label above the viewfinder)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)keyboardType":{"name":"keyboardType","abstract":"

    Keyboard type used when editing

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTextfieldText":{"name":"localizedTextfieldText","abstract":"

    Localized initial UITextField text (used in field segment scanning text fields)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanned":{"name":"scanned","abstract":"

    YES if the value was scanned, NO otherwise.","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)edited":{"name":"edited","abstract":"

    YES if the value was manually edited, NO otherwise.","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)value":{"name":"value","abstract":"

    Actual value for this element

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanningRegionWidth":{"name":"scanningRegionWidth","abstract":"

    Width of scanning region used in UI. Values are between 0.0 and 1.0 where 1.0 is whole screen width and 0.5 is half width.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanningRegionHeight":{"name":"scanningRegionHeight","abstract":"

    Height of scanning region used in UI. Values are between 0.0 and 1.0 where 1.0 is whole screen height and 0.5 is half height.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)successfulScanImage":{"name":"successfulScanImage","abstract":"

    Image of the scanned element.

    ","parent_name":"MBScanElement"},"Classes/MBRegexParserResult.html#/c:objc(cs)MBRegexParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRegexParserResult"},"Classes/MBRegexParserResult.html#/c:objc(cs)MBRegexParserResult(py)parsedString":{"name":"parsedString","abstract":"

    Returns string containing parsed OCR result according to given regular expression.

    ","parent_name":"MBRegexParserResult"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(im)initWithRegex:":{"name":"-initWithRegex:","abstract":"

    Initializes the regex parser

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)result":{"name":"result","abstract":"

    Regex parser result

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)regex":{"name":"regex","abstract":"

    Defines regex that will be used to parse OCR data. Note that not all java regex features","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)useSieve":{"name":"useSieve","abstract":"

    Enable the usage of algorithm for combining consecutive OCR results between video frames","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)startWithWhitespace":{"name":"startWithWhitespace","abstract":"

    If set to YES, regex will not be matched if there is no whitespace before matched string.","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)endWithWhitespace":{"name":"endWithWhitespace","abstract":"

    If set to YES, regex will not be matched if there is no whitespace after matched string.","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)ocrEngineOptions":{"name":"ocrEngineOptions","abstract":"

    Sets the OCR engine options used in Regex OCR parser.","parent_name":"MBRegexParser"},"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/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/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/MBRawParserResult.html#/c:objc(cs)MBRawParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRawParserResult"},"Classes/MBRawParserResult.html#/c:objc(cs)MBRawParserResult(py)rawText":{"name":"rawText","abstract":"

    Extracted date string.

    ","parent_name":"MBRawParserResult"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)result":{"name":"result","abstract":"

    License plates parser result

    ","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)useSieve":{"name":"useSieve","abstract":"

    Enable the usage of algorithm for combining consecutive OCR results between video frames","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)ocrEngineOptions":{"name":"ocrEngineOptions","abstract":"

    Sets the OCR engine options used in Regex OCR parser.","parent_name":"MBRawParser"},"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/MBQuadWithSizeDetectorResult.html#/c:objc(cs)MBQuadWithSizeDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadWithSizeDetectorResult"},"Classes/MBQuadWithSizeDetectorResult.html#/c:objc(cs)MBQuadWithSizeDetectorResult(py)physicalHeightInInches":{"name":"physicalHeightInInches","abstract":"

    Returns the physical height of the detected MBQuadrangle in inches.

    ","parent_name":"MBQuadWithSizeDetectorResult"},"Classes/MBQuadWithSizeDetector.html#/c:objc(cs)MBQuadWithSizeDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadWithSizeDetector"},"Classes/MBQuadWithSizeDetector.html#/c:objc(cs)MBQuadWithSizeDetector(py)quadWithSizeResult":{"name":"quadWithSizeResult","abstract":"

    Quad with size detector result

    ","parent_name":"MBQuadWithSizeDetector"},"Classes/MBQuadDetectorResult.html#/c:objc(cs)MBQuadDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadDetectorResult"},"Classes/MBQuadDetectorResult.html#/c:objc(cs)MBQuadDetectorResult(py)quadrangle":{"name":"quadrangle","abstract":"

    Returns the location of detected quadrilateral in coordinate system of image in which detection was performed.

    ","parent_name":"MBQuadDetectorResult"},"Classes/MBQuadDetector.html#/c:objc(cs)MBQuadDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadDetector"},"Classes/MBQuadDetector.html#/c:objc(cs)MBQuadDetector(py)quadResult":{"name":"quadResult","abstract":"

    Quad detector result

    ","parent_name":"MBQuadDetector"},"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/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)rawData":{"name":"rawData","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)stringData":{"name":"stringData","abstract":"

    Retrieves string content of scanned data

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)uncertain":{"name":"uncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)barcodeType":{"name":"barcodeType","abstract":"

    Type of the barcode scanned

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)result":{"name":"result","abstract":"

    PDF417 recognizer results

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)nullQuietZoneAllowed":{"name":"nullQuietZoneAllowed","abstract":"

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

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)scanInverse":{"name":"scanInverse","abstract":"

    Set this to YES to allow scanning barcodes with inverted intensities","parent_name":"MBPdf417Recognizer"},"Classes/MBParserResult.html#/c:objc(cs)MBParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserResult"},"Classes/MBParserResult.html#/c:objc(cs)MBParserResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBParserResult"},"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/MBParser.html#/c:objc(cs)MBParser(py)baseResult":{"name":"baseResult","abstract":"

    Base parser result

    ","parent_name":"MBParser"},"Classes/MBParser.html#/c:objc(cs)MBParser(py)required":{"name":"required","abstract":"

    Defines/returns whether the parser configured with this parser settings object will be required or optional.

    ","parent_name":"MBParser"},"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/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(im)init":{"name":"-init","abstract":"

    Creates MBOcrEngineOptions with default settings.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)documentType":{"name":"documentType","abstract":"

    Type of document scanned.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)minimalLineHeight":{"name":"minimalLineHeight","abstract":"

    Minimal height of the line of text given in pixels. All chars smaller than this value will be ignored.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)maximalLineHeight":{"name":"maximalLineHeight","abstract":"

    Maximal height of the line of text given in pixels.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)imageProcessingEnabled":{"name":"imageProcessingEnabled","abstract":"

    Specifies if the image processing is performed on image

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)charWhitelist":{"name":"charWhitelist","abstract":"

    Whitelist of characters used in the OCR process. The set must contain MBOcrCharKey objects.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(py)code":{"name":"code","abstract":"

    Unicode value of the char. For example, for char ‘k’, you can use either ‘k’ or 107.

    ","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(py)font":{"name":"font","abstract":"

    Font of the char. Can be specific (for example MB_OCR_FONT_ARIAL), or any font (MB_OCR_FONT_ANY), which is the same","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(im)initWithCode:font:":{"name":"-initWithCode:font:","abstract":"

    Initializer which specifies the code and font of the char.

    ","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(cm)keyWithCode:font:":{"name":"+keyWithCode:font:","abstract":"

    Factory method for easier instantiation

    ","parent_name":"MBOcrCharKey"},"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/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/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(py)mrzLocation":{"name":"mrzLocation","abstract":"

    Returns the location of Machine Readable Zone in coordinate system of image in which detection was performed.

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(py)mrzPhysicalHeightInInches":{"name":"mrzPhysicalHeightInInches","abstract":"

    Returns the physical height in inches of Machine Readable Zone.

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)result":{"name":"result","abstract":"

    MRTD detector result

    ","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)detectFullDocument":{"name":"detectFullDocument","abstract":"

    Defines whether full document will be detected. If set to false, result will contain","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)useCardDetector":{"name":"useCardDetector","abstract":"

    Enable detection correction with card detector. When this option is enabled, after","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(im)setMrtdSpecifications:":{"name":"-setMrtdSpecifications:","abstract":"

    Sets the mrtd specifications. Mrtd specifications describe the images that should be returned by","parent_name":"MBMrtdDetector"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)moveable":{"name":"moveable","abstract":"

    Denotes if view finder is moveable. Viewfinder will move whenever something is detected and will return to default position if no object","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)portraitMargins":{"name":"portraitMargins","abstract":"

    Margins between overlay bounds and default corner positions while in portrait orientation.

    ","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)landscapeMargins":{"name":"landscapeMargins","abstract":"

    Margins between overlay bounds and default corner positions while in landscape orientation.

    ","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(im)resetPositions":{"name":"-resetPositions","abstract":"

    Resets the viewfinder position to it’s initial position.

    ","parent_name":"MBModernViewfinderSubview"},"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/MBLicensePlatesParserResult.html#/c:objc(cs)MBLicensePlatesParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBLicensePlatesParserResult"},"Classes/MBLicensePlatesParserResult.html#/c:objc(cs)MBLicensePlatesParserResult(py)licensePlate":{"name":"licensePlate","abstract":"

    Returns the recognized license plate number or empty string if recognition failed.

    ","parent_name":"MBLicensePlatesParserResult"},"Classes/MBLicensePlatesParser.html#/c:objc(cs)MBLicensePlatesParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBLicensePlatesParser"},"Classes/MBLicensePlatesParser.html#/c:objc(cs)MBLicensePlatesParser(py)result":{"name":"result","abstract":"

    License plates parser result

    ","parent_name":"MBLicensePlatesParser"},"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/MBIbanParserResult.html#/c:objc(cs)MBIbanParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBIbanParserResult"},"Classes/MBIbanParserResult.html#/c:objc(cs)MBIbanParserResult(py)iban":{"name":"iban","abstract":"

    Returns the rparsed IBAN or empty string if recognition failed.

    ","parent_name":"MBIbanParserResult"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)result":{"name":"result","abstract":"

    Iban parser result

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)alwaysReturnPrefix":{"name":"alwaysReturnPrefix","abstract":"

    Should prefix (country code) always be returned.

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)countryCodeWhitelist":{"name":"countryCodeWhitelist","abstract":"

    Set of allowed country codes. If whitelist is defined, only IBANs with defined country codes","parent_name":"MBIbanParser"},"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/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithSettings:delegate:":{"name":"-initWithSettings:delegate:","abstract":"

    Designated initializer of the overlay. All scan settings from the recognizer runner will be removed and generated anew with passed MBScanElement array.

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithNibName:bundle:":{"name":"-initWithNibName:bundle:","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified with important UI events

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(im)initWithScanElements:":{"name":"-initWithScanElements:","abstract":"

    Designated initializer for settings.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)scanElements":{"name":"scanElements","abstract":"

    Array of MBScanElement objects which defines which Elements are scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)showOcrDots":{"name":"showOcrDots","abstract":"

    Property that enables showing of flashing dots over characters being scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)outputSuccessfulImages":{"name":"outputSuccessfulImages","abstract":"

    Property that enables outputting images of sucessful scans for each element scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)consecutiveScanThreshold":{"name":"consecutiveScanThreshold","abstract":"

    Number of times same parse result needs to be outputted to be considered valid

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)scanResultViewColor":{"name":"scanResultViewColor","abstract":"

    Background color of successful scan result

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)nextButtonDescriptionText":{"name":"nextButtonDescriptionText","abstract":"

    Returns/sets next button description text that is shown above next button","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)nextButtonLastDescriptionText":{"name":"nextButtonLastDescriptionText","abstract":"

    Returns/sets next button description text that is shown above next button","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBEmailParserResult.html#/c:objc(cs)MBEmailParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBEmailParserResult"},"Classes/MBEmailParserResult.html#/c:objc(cs)MBEmailParserResult(py)email":{"name":"email","abstract":"

    Returns the recognized email or empty string if recognition failed.

    ","parent_name":"MBEmailParserResult"},"Classes/MBEmailParser.html#/c:objc(cs)MBEmailParser(py)result":{"name":"result","abstract":"

    Email parser result

    ","parent_name":"MBEmailParser"},"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/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)initWithAspectRatio:physicalSizeInInches:":{"name":"-initWithAspectRatio:physicalSizeInInches:","abstract":"

    Use this initializer for specifiying a document format.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(cm)createFromPreset:":{"name":"+createFromPreset:","abstract":"

    Factory method which creates Document specification based on a preset

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)setPortraitAndLandscapeScale:":{"name":"-setPortraitAndLandscapeScale:","abstract":"

    Sets scale and scale tolerance that will be used when detecting document in both orientations.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)maxAngle":{"name":"maxAngle","abstract":"

    Maximum angle for document detection

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)portraitScale":{"name":"portraitScale","abstract":"

    Scale and scale tolerance that will be used when detecting document in portrait orientation.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)landscapeScale":{"name":"landscapeScale","abstract":"

    Scale and scale tolerance that will be used when detecting document in landscape orientation.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)scanningMode":{"name":"scanningMode","abstract":"

    Scanning mode that defines in which orientations can this document be detected.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)xRange":{"name":"xRange","abstract":"

    Percentage of possible document offset on x axis.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)yRange":{"name":"yRange","abstract":"

    Percentage of possible document offset on y axis.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)physicalSizeInInches":{"name":"physicalSizeInInches","abstract":"

    Physical size of document in inches

    ","parent_name":"MBDocumentSpecification"},"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/MBDocumentDetectorResult.html#/c:objc(cs)MBDocumentDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentDetectorResult"},"Classes/MBDocumentDetectorResult.html#/c:objc(cs)MBDocumentDetectorResult(py)aspectRatio":{"name":"aspectRatio","abstract":"

    Aspect ratio of detected document.

    ","parent_name":"MBDocumentDetectorResult"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(im)initWithDocumentSpecifications:":{"name":"-initWithDocumentSpecifications:","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)result":{"name":"result","abstract":"

    Document detector result

    ","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)documentSpecifications":{"name":"documentSpecifications","abstract":"

    Document specifications describe the documents that should be detected with","parent_name":"MBDocumentDetector"},"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/MBDetectorResult.html#/c:objc(cs)MBDetectorResult(py)detectionCode":{"name":"detectionCode","abstract":"

    Undocumented

    ","parent_name":"MBDetectorResult"},"Classes/MBDetectorResult.html#/c:objc(cs)MBDetectorResult(py)detectionStatus":{"name":"detectionStatus","abstract":"

    Undocumented

    ","parent_name":"MBDetectorResult"},"Classes/MBDetectorRecognizerResult.html#/c:objc(cs)MBDetectorRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizerResult"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(im)initWithQuadWithSizeDetector:":{"name":"-initWithQuadWithSizeDetector:","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)result":{"name":"result","abstract":"

    Detector recognizer results

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)allowFlipped":{"name":"allowFlipped","abstract":"

    Set this to true to enable recognition of document also in upside down direction.","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)detector":{"name":"detector","abstract":"

    Returns the detector that will be used for performing the document detection during recognition

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetector.html#/c:objc(cs)MBDetector(py)baseResult":{"name":"baseResult","abstract":"

    Base detector result

    ","parent_name":"MBDetector"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrPostprocessorNmsThreshold":{"name":"deepOcrPostprocessorNmsThreshold","abstract":"

    Returns or sets nms threshold for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrPostprocessorScoreThreshold":{"name":"deepOcrPostprocessorScoreThreshold","abstract":"

    Returns or sets score threshold for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrModel":{"name":"deepOcrModel","abstract":"

    Returns or sets model for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrModelString":{"name":"deepOcrModelString","abstract":"

    Returns or sets model for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"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/MBDateParserResult.html#/c:objc(cs)MBDateParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateParserResult"},"Classes/MBDateParserResult.html#/c:objc(cs)MBDateParserResult(py)date":{"name":"date","abstract":"

    Extracted date.

    ","parent_name":"MBDateParserResult"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(py)result":{"name":"result","abstract":"

    Date parser result

    ","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)setDateFormats:":{"name":"-setDateFormats:","abstract":"

    Specifies the date formats that will be accepted by date parser. By default, all available","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)setDateSeparatorChars:":{"name":"-setDateSeparatorChars:","abstract":"

    Specifies the date separator characters between date parts (day, month, year) that will be","parent_name":"MBDateParser"},"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/MBBlinkInputRecognizerResult.html#/c:objc(cs)MBBlinkInputRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkInputRecognizerResult"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(im)initWithProcessors:":{"name":"-initWithProcessors:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkInputRecognizer"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(py)processors":{"name":"processors","abstract":"

    Getting array of readonly processors

    ","parent_name":"MBBlinkInputRecognizer"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(py)result":{"name":"result","abstract":"

    BlinkInput recognizer results

    ","parent_name":"MBBlinkInputRecognizer"},"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/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)maxCharsExpected":{"name":"maxCharsExpected","abstract":"

    Maximal chars expected on the image.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)colorDropoutEnabled":{"name":"colorDropoutEnabled","abstract":"

    Specifies if the additional image processing which drops the background colors should be performed.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)rawData":{"name":"rawData","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)stringData":{"name":"stringData","abstract":"

    Retrieves string content of scanned data

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)uncertain":{"name":"uncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(cm)toTypeName:":{"name":"+toTypeName:","abstract":"

    Method which gives string representation for a given PPBarcodeType enum value.

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)barcodeType":{"name":"barcodeType","abstract":"

    Type of the barcode scanned

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)result":{"name":"result","abstract":"

    Barcode recognizer results

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanAztecCode":{"name":"scanAztecCode","abstract":"

    Set this to YES to scan Aztec 2D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanCode128":{"name":"scanCode128","abstract":"

    Set this to YES to scan Code 128 1D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanCode39":{"name":"scanCode39","abstract":"

    Set this to YES to scan Code 39 1D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanDataMatrix":{"name":"scanDataMatrix","abstract":"

    Set this to YES to scan DataMatrix 2D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanEan13":{"name":"scanEan13","abstract":"

    Set this to YES to scan EAN 13 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanEan8":{"name":"scanEan8","abstract":"

    Set this to YES to scan EAN8 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanItf":{"name":"scanItf","abstract":"

    Set this to YES to scan ITF barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanQrCode":{"name":"scanQrCode","abstract":"

    Set this to YES to scan QR barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUpca":{"name":"scanUpca","abstract":"

    Set this to YES to scan UPCA barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUpce":{"name":"scanUpce","abstract":"

    Set this to YES to scan UPCE barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanPdf417":{"name":"scanPdf417","abstract":"

    Set this to YES to scan Pdf417 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)slowerThoroughScan":{"name":"slowerThoroughScan","abstract":"

    Set this to YES to allow slower, but better image processing.

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)autoScaleDetection":{"name":"autoScaleDetection","abstract":"

    Allow enabling the autodetection of image scale when scanning barcodes.","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)readCode39AsExtendedData":{"name":"readCode39AsExtendedData","abstract":"

    Enable reading code39 barcode contents as extended data. For more information about code39","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanInverse":{"name":"scanInverse","abstract":"

    Set this to YES to allow scanning barcodes with inverted intensities","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)nullQuietZoneAllowed":{"name":"nullQuietZoneAllowed","abstract":"

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

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlaySettings.html#/c:objc(cs)MBBarcodeOverlaySettings(py)displayBarcodeDots":{"name":"displayBarcodeDots","abstract":"

    If YES, viewfinder (4 corner markers) will move when payslip is detected

    ","parent_name":"MBBarcodeOverlaySettings"},"Classes/MBBarcodeOverlaySettings.html#/c:objc(cs)MBBarcodeOverlaySettings(py)displayViewfinder":{"name":"displayViewfinder","abstract":"

    If YES; view finder will be displayed

    ","parent_name":"MBBarcodeOverlaySettings"},"Classes/MBAmountParserResult.html#/c:objc(cs)MBAmountParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBAmountParserResult"},"Classes/MBAmountParserResult.html#/c:objc(cs)MBAmountParserResult(py)amount":{"name":"amount","abstract":"

    Returns the recognized amount number or empty string if recognition failed.

    ","parent_name":"MBAmountParserResult"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)result":{"name":"result","abstract":"

    Amount parser result

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowNegativeAmounts":{"name":"allowNegativeAmounts","abstract":"

    Indicates whether negative values are accepted as valid amounts.","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowSpaceSeparators":{"name":"allowSpaceSeparators","abstract":"

    Indicates whether amounts with space separators between groups of digits(thousands) are allowed.

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowMissingDecimals":{"name":"allowMissingDecimals","abstract":"

    Indicates whether amounts without decimal are accepted as valid. For example 1.465 is","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)arabicIndicMode":{"name":"arabicIndicMode","abstract":"

    Indicates whether Arabic-Indic mode is enabled. In Arabic-Indic mode parser can recognize","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html":{"name":"MBAmountParser","abstract":"

    MBAmountParser is used for extracting amount from OCR result

    "},"Classes/MBAmountParserResult.html":{"name":"MBAmountParserResult","abstract":"

    MBAmountParser is used for extracting amount from OCR result

    "},"Classes/MBBarcodeOverlaySettings.html":{"name":"MBBarcodeOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBarcodeOverlayViewController.html":{"name":"MBBarcodeOverlayViewController","abstract":"

    Undocumented

    "},"Classes/MBBarcodeRecognizer.html":{"name":"MBBarcodeRecognizer","abstract":"

    MBBarcodeRecognizer is used for scanning most of 1D barcode formats, and 2D format"},"Classes/MBBarcodeRecognizerResult.html":{"name":"MBBarcodeRecognizerResult","abstract":"

    Result of MBBarcodeRecognizer; is used for scanning most of 1D barcode formats, and 2D format"},"Classes/MBBaseOcrEngineOptions.html":{"name":"MBBaseOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"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/MBBlinkInputRecognizer.html":{"name":"MBBlinkInputRecognizer","abstract":"

    A recognizer for BlinkInput API and general OCR recognition

    "},"Classes/MBBlinkInputRecognizerResult.html":{"name":"MBBlinkInputRecognizerResult","abstract":"

    A recognizer result for BlinkInput API and general OCR recognition

    "},"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/MBDateParser.html":{"name":"MBDateParser","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"Classes/MBDateParserResult.html":{"name":"MBDateParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"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/MBDeepOcrEngineOptions.html":{"name":"MBDeepOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"Classes/MBDetector.html":{"name":"MBDetector","abstract":"

    Base class for all detectors

    "},"Classes/MBDetectorRecognizer.html":{"name":"MBDetectorRecognizer","abstract":"

    Recognizer for scanning generic documents using custom MBDetector.

    "},"Classes/MBDetectorRecognizerResult.html":{"name":"MBDetectorRecognizerResult","abstract":"

    Result of MBDetectorRecognizer

    "},"Classes/MBDetectorResult.html":{"name":"MBDetectorResult","abstract":"

    Base class for all detectors results

    "},"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/MBDocumentDetector.html":{"name":"MBDocumentDetector","abstract":"

    Detector that can perform detection of card documents, cheques, papers, etc.

    "},"Classes/MBDocumentDetectorResult.html":{"name":"MBDocumentDetectorResult","abstract":"

    Detector that can perform detection of card documents, cheques, papers, etc.

    "},"Classes/MBDocumentOverlaySettings.html":{"name":"MBDocumentOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentSpecification.html":{"name":"MBDocumentSpecification","abstract":"

    Document class describes a document which is being detected by DocumentDetector."},"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/MBEmailParser.html":{"name":"MBEmailParser","abstract":"

    MBEmailParser is used for parsing emails

    "},"Classes/MBEmailParserResult.html":{"name":"MBEmailParserResult","abstract":"

    MBEmailParser is used for parsing emails

    "},"Classes.html#/c:objc(cs)MBEntity":{"name":"MBEntity","abstract":"

    Base class for all entities processors, recognizers, detectors…

    "},"Classes/MBFieldByFieldOverlaySettings.html":{"name":"MBFieldByFieldOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBFieldByFieldOverlayViewController.html":{"name":"MBFieldByFieldOverlayViewController","abstract":"

    View Controller responsible for view hierarchy for Form OCR scannning."},"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/MBIbanParser.html":{"name":"MBIbanParser","abstract":"

    MBAmountParser that can extract IBAN (International Bank Account Number) from OCR result.

    "},"Classes/MBIbanParserResult.html":{"name":"MBIbanParserResult","abstract":"

    MBAmountParser that can extract IBAN (International Bank Account Number) from OCR result.

    "},"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/MBLicensePlatesParser.html":{"name":"MBLicensePlatesParser","abstract":"

    MBLicensePlatesParser is used for parsing license plates

    "},"Classes/MBLicensePlatesParserResult.html":{"name":"MBLicensePlatesParserResult","abstract":"

    MBLicensePlatesParser is used for parsing license plates

    "},"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/MBModernViewfinderSubview.html":{"name":"MBModernViewfinderSubview","abstract":"

    Overlay subview presenting the status of detection."},"Classes/MBMrtdDetector.html":{"name":"MBMrtdDetector","abstract":"

    Detector that can perform detection of Machine Readable Travel Documents (MRTD).

    "},"Classes/MBMrtdDetectorResult.html":{"name":"MBMrtdDetectorResult","abstract":"

    Detector that can perform detection of Machine Readable Travel Documents (MRTD).

    "},"Classes/MBMrtdSpecification.html":{"name":"MBMrtdSpecification","abstract":"

    Mrtd class describes a document which is being detected by MrtdDetector."},"Classes/MBNoUpScalingDewarpPolicy.html":{"name":"MBNoUpScalingDewarpPolicy","abstract":"

    No upscaling dewarp policy. Dewarp height will be calculated in a way"},"Classes/MBOcrCharKey.html":{"name":"MBOcrCharKey","abstract":"

    Class representing a char in specific font.

    "},"Classes/MBOcrEngineOptions.html":{"name":"MBOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"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.html#/c:objc(cs)MBOcrResultSubview":{"name":"MBOcrResultSubview","abstract":"

    Overlay subview presenting status of OCR detection. OCR results are displayed as green characters over detected locations.

    "},"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/MBParser.html":{"name":"MBParser","abstract":"

    Base class for all parsers

    "},"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/MBParserResult.html":{"name":"MBParserResult","abstract":"

    Base class for all parser results

    "},"Classes/MBPdf417Recognizer.html":{"name":"MBPdf417Recognizer","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBPdf417RecognizerResult.html":{"name":"MBPdf417RecognizerResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"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/MBQuadDetector.html":{"name":"MBQuadDetector","abstract":"

    Base class for all detectors that are used for MBQuadrangle detection.

    "},"Classes/MBQuadDetectorResult.html":{"name":"MBQuadDetectorResult","abstract":"

    Base class for all detectors that are used for MBQuadrangle detection.

    "},"Classes/MBQuadWithSizeDetector.html":{"name":"MBQuadWithSizeDetector","abstract":"

    Base class for all detectors that are used for MBQuadrangle"},"Classes/MBQuadWithSizeDetectorResult.html":{"name":"MBQuadWithSizeDetectorResult","abstract":"

    Base class for all detectors that are used for MBQuadrangle"},"Classes/MBQuadrangle.html":{"name":"MBQuadrangle","abstract":"

    Class represents the quadrangle (arbitrary geometric object with 4 different corner points

    "},"Classes/MBRawParser.html":{"name":"MBRawParser","abstract":"

    MBRawParser that simply returns the string version of raw OCR result, without performing"},"Classes/MBRawParserResult.html":{"name":"MBRawParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"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/MBRegexParser.html":{"name":"MBRegexParser","abstract":"

    Represents a parser which parses OCR result according to given regular expression."},"Classes/MBRegexParserResult.html":{"name":"MBRegexParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"Classes/MBScanElement.html":{"name":"MBScanElement","abstract":"

    The easiest way to UI for Ocr scanning is by specifying the MBScanElements.

    "},"Classes/MBSimNumberRecognizer.html":{"name":"MBSimNumberRecognizer","abstract":"

    Recognizer that can perform recognition of barcodes on SIM packaging.

    "},"Classes/MBSimNumberRecognizerResult.html":{"name":"MBSimNumberRecognizerResult","abstract":"

    Recognizer that can perform recognition of barcodes on SIM packaging.

    "},"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/MBTopUpParser.html":{"name":"MBTopUpParser","abstract":"

    MBTopUpParser is used for parsing Top Up numbers

    "},"Classes/MBTopUpParserResult.html":{"name":"MBTopUpParserResult","abstract":"

    MBTopUpParser is used for parsing Top Up numbers

    "},"Classes/MBViewControllerFactory.html":{"name":"MBViewControllerFactory","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBVinParser.html":{"name":"MBVinParser","abstract":"

    MBVinParser is used for parsing VIN numbers

    "},"Classes/MBVinParserResult.html":{"name":"MBVinParserResult","abstract":"

    MBVinParser is used for parsing VIN numbers

    "},"Classes/MBVinRecognizer.html":{"name":"MBVinRecognizer","abstract":"

    Recognizer that can perform recognition of VINs (Vehicle Identification Number).

    "},"Classes/MBVinRecognizerResult.html":{"name":"MBVinRecognizerResult","abstract":"

    Recognizer that can perform recognition of VINs (Vehicle Identification Number).

    "},"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/PPBlinkOCR.docset/Contents/Resources/docSet.dsidx b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/docSet.dsidx index b55f57b..9fe6a58 100644 Binary files a/docs/docsets/PPBlinkOCR.docset/Contents/Resources/docSet.dsidx and b/docs/docsets/PPBlinkOCR.docset/Contents/Resources/docSet.dsidx differ diff --git a/docs/docsets/PPBlinkOCR.tgz b/docs/docsets/PPBlinkOCR.tgz index 5fdfcc3..41a0073 100644 Binary files a/docs/docsets/PPBlinkOCR.tgz and b/docs/docsets/PPBlinkOCR.tgz differ diff --git a/docs/index.html b/docs/index.html index 30c2f53..8839d08 100644 --- a/docs/index.html +++ b/docs/index.html @@ -80,7 +80,7 @@ MBBaseOverlaySettings + @@ -407,6 +410,15 @@ + + + @@ -452,15 +464,6 @@ - - - @@ -535,6 +538,9 @@ + @@ -552,6 +558,9 @@ + @@ -713,86 +722,91 @@

    Table of contents

    @@ -801,7 +815,7 @@

    don’t have camera with autofocus.

    -

    Quick Start

    +

    Quick Start

    Getting started with BlinkInput SDK

    This Quick Start guide will get you up and performing OCR scanning as quickly as possible. All steps described in this guide are required for the integration.

    @@ -818,11 +832,17 @@

    Using CocoaPods

    git lfs install
  • Be sure to restart your console after installing Git LFS

  • +
  • Note: if you already did try adding SDK using cocoapods and it’s not working, first install the git-lfs and then clear you cocoapods cache. This should be sufficient to force cocoapods to clone BlinkInput SDK, if it still doesn’t work, try deinitializing your pods and installing them again.

  • Project dependencies to be managed by CocoaPods are specified in a file called Podfile. Create this file in the same directory as your Xcode project (.xcodeproj) file.

  • +
  • If you don’t have podfile initialized run the following in your project directory.

    +
    pod init
    +
  • Copy and paste the following lines into the TextEdit window:

  • platform :ios, '9.0'
    -pod 'PPBlinkOCR', '~> 4.0.0'
    +target 'Your-App-Name' do
    +    pod 'PPBlinkOCR', '~> 4.1.0'
    +end
     
      @@ -838,7 +858,7 @@

      Using CocoaPods

    Integration without CocoaPods

    -

    -Download latest release (Download .zip or .tar.gz file starting with BlinkID. DO NOT download Source Code as GitHub does not fully support Git LFS)

    +

    -Download latest release (Download .zip or .tar.gz file starting with BlinkID. DO NOT download Source Code as GitHub does not fully support Git LFS)

    OR

    @@ -852,22 +872,22 @@

    Integration without Cocoa
  • Be sure to restart your console after installing Git LFS

  • To clone, run the following shell command:

  • -
    git clone git@github.com:blinkinput/blinkinput-ios.git
    +
    git clone git@github.com:BlinkInput/blinkinput-ios.git
     
      -
    • Copy MicroBlink.framework and MicroBlink.bundle to your project folder.

    • -
    • In your Xcode project, open the Project navigator. Drag the MicroBlink.framework and MicroBlink.bundle files to your project, ideally in the Frameworks group, together with other frameworks you’re using. When asked, choose Create groups, instead of the Create folder references option.

    • +
    • Copy Microblink.framework and Microblink.bundle to your project folder.

    • +
    • In your Xcode project, open the Project navigator. Drag the Microblink.framework and Microblink.bundle files to your project, ideally in the Frameworks group, together with other frameworks you’re using. When asked, choose Create groups, instead of the Create folder references option.

    -

    Adding MicroBlink.embeddedframework to your project

    +

    Adding Microblink.embedded framework to your project

    Since

    Since Microblink.framework is a dynamic framework, you also need to add it to embedded binaries section in General settings of your target.
    -

    Adding MicroBlink.framework to embedded binaries

    +

    Adding Microblink.framework to embedded binaries

    • Include the additional frameworks and libraries into your project in the Linked frameworks and libraries section of your target settings.

      @@ -898,8 +918,10 @@

      3. Initiating the sca

      To initiate the scanning process, first decide where in your app you want to add scanning functionality. Usually, users of the scanning library have a button which, when tapped, starts the scanning process. Initialization code is then placed in touch handler for that button. Here we’re listing the initialization code as it looks in a touch handler method.

      -

      Also, for initialization purposes, the ViewController which initiates the scan have private prperties for MBRawParser, MBParserGroupProcessor and MBBlinkInputRecognizer, so we know how to obtain result.

      -
      class ViewController: UIViewController, MBBarcodeOverlayViewControllerDelegate  {
      +

      Also, for initialization purposes, the ViewController which initiates the scan have private properties for MBRawParser, MBParserGroupProcessor and MBBlinkInputRecognizer, so we know how to obtain result.

      + +

      Swift

      +
      class ViewController: UIViewController, MBDocumentOverlayViewControllerDelegate  {
       
           var rawParser: MBRawParser?
           var parserGroupProcessor: MBParserGroupProcessor?
      @@ -911,26 +933,28 @@ 

      3. Initiating the sca @IBAction func didTapScan(_ sender: AnyObject) { - let settings = MBBarcodeOverlaySettings() + let settings = MBDocumentOverlaySettings() rawParser = MBRawParser() parserGroupProcessor = MBParserGroupProcessor(parsers: [rawParser!]) blinkInputRecognizer = MBBlinkInputRecognizer(processors: [parserGroupProcessor!]) let recognizerList = [self.blinkInputRecognizer!] - let recognizerCollection : MBRecognizerCollection = MBRecognizerCollection(recognizers: recognizerList) + let recognizerCollection = MBRecognizerCollection(recognizers: recognizerList) /** Create your overlay view controller */ - let barcodeOverlayViewController : MBBarcodeOverlayViewController = MBBarcodeOverlayViewController(settings: settings, recognizerCollection: recognizerCollection, delegate: self) + let documentOverlayViewController = MBDocumentOverlayViewController(settings: settings, recognizerCollection: recognizerCollection, delegate: self) /** Create recognizer view controller with wanted overlay view controller */ - let recognizerRunneViewController : UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: barcodeOverlayViewController) + let recognizerRunnerViewController: UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: documentOverlayViewController) /** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */ present(recognizerRunnerViewController!, animated: true, completion: nil) } }

      -
      @interface ViewController () <MBBarcodeOverlayViewControllerDelegate>
      +
      +

      Objective-C

      +
      @interface ViewController () <MBDocumentOverlayViewControllerDelegate>
       
       @property (nonatomic, strong) MBRawParser *rawParser;
       @property (nonatomic, strong) MBParserGroupProcessor *parserGroupProcessor;
      @@ -947,7 +971,7 @@ 

      3. Initiating the sca - (IBAction)didTapScan:(id)sender { - MBBarcodeOverlaySettings* settings = [[MBBarcodeOverlaySettings alloc] init]; + MBDocumentOverlaySettings* settings = [[MBDocumentOverlaySettings alloc] init]; self.rawParser = [[MBRawParser alloc] init]; self.parserGroupProcessor = [[MBParserGroupProcessor alloc] initWithParsers:@[self.rawParser]]; @@ -956,7 +980,7 @@

      3. Initiating the sca /** Create recognizer collection */ MBRecognizerCollection *recognizerCollection = [[MBRecognizerCollection alloc] initWithRecognizers:@[self.blinkInputRecognizer]]; - MBBarcodeOverlayViewController *overlayVC = [[MBBarcodeOverlayViewController alloc] initWithSettings:settings recognizerCollection:recognizerCollection delegate:self]; + MBDocumentOverlayViewController *overlayVC = [[MBDocumentOverlayViewController alloc] initWithSettings:settings recognizerCollection:recognizerCollection delegate:self]; UIViewController<MBRecognizerRunnerViewController>* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:overlayVC]; /** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */ @@ -966,17 +990,47 @@

      3. Initiating the sca @end

      -

      4. Registering for scanning events

      +

      4. License key

      + +

      A valid license key is required to initalize scanning. You can generate a free demo license key, after you register, at Microblink developer dashboard.

      + +

      You can include the license key in your app by passing a string or a file with license key. +Note that you need to set the license key before intializing scanning. Ideally in AppDelegate or viewDidLoad before initializing any recognizers.

      +

      License key as string

      -

      In the previous step, you instantiated MBBarcodeOverlayViewController object with a delegate object. This object gets notified on certain events in scanning lifecycle. In this example we set it to self. The protocol which the delegate has to implement is MBBarcodeOverlayViewControllerDelegate protocol. It is necessary to conform to that protocol. We will discuss more about protocols in Advanced integration section. You can use the following default implementation of the protocol to get you started.

      -
      func barcodeOverlayViewControllerDidFinishScanning(_ barcodeOverlayViewController: MBBarcodeOverlayViewController, state: MBRecognizerResultState) {
      +

      You can pass the license key as a string, the following way:

      + +

      Swift

      +
      MBMicroblinkSDK.sharedInstance().setLicenseKey("LICENSE-KEY")
      +
      + +

      Objective-C

      +
      [[MBMicroblinkSDK sharedInstance] setLicenseKey:@"LICENSE-KEY"];
      +
      +

      License key as file

      + +

      Or you can include the license key, with the code below. Please make sure that the file that contains the license key is included in your project and is copied during Copy Bundle Resources build phase.

      + +

      Swift

      +
      MBMicroblinkSDK.sharedInstance().setLicenseResource("license-key-file", withExtension: "txt", inSubdirectory: "directory-to-license-key", for: Bundle.main)
      +
      + +

      Objective-C

      +
      [[MBMicroblinkSDK sharedInstance] setLicenseResource:@"license-key-file" withExtension:@"txt" inSubdirectory:@"" forBundle:[NSBundle mainBundle]];
      +
      +

      5. Registering for scanning events

      + +

      In the previous step, you instantiated MBDocumentOverlayViewController object with a delegate object. This object gets notified on certain events in scanning lifecycle. In this example we set it to self. The protocol which the delegate has to implement is MBDocumentOverlayViewControllerDelegate protocol. It is necessary to conform to that protocol. We will discuss more about protocols in Advanced integration section. You can use the following default implementation of the protocol to get you started.

      + +

      Swift

      +
      func documentOverlayViewControllerDidFinishScanning(_ documentOverlayViewController: MBDocumentOverlayViewController, state: MBRecognizerResultState) {
       
           // this is done on background thread
           // check for valid state
      -    if state == MBRecognizerResultState.valid {
      +    if state == .valid {
       
               // first, pause scanning until we process all the results
      -        barcodeOverlayViewController.recognizerRunnerViewController?.pauseScanning()
      +        documentOverlayViewController.recognizerRunnerViewController?.pauseScanning()
       
               DispatchQueue.main.async(execute: {() -> Void in
                   // All UI interaction needs to be done on main thread
      @@ -984,18 +1038,20 @@ 

      4. Registering for sc } } -func barcodeOverlayViewControllerDidTapClose(_ barcodeOverlayViewController: MBBarcodeOverlayViewController) { +func documentOverlayViewControllerDidTapClose(_ documentOverlayViewController: MBDocumentOverlayViewController) { // Your action on cancel }

      -
      - (void)barcodeOverlayViewControllerDidFinishScanning:(MBBarcodeOverlayViewController *)barcodeOverlayViewController state:(MBRecognizerResultState)state {
      +
      +

      Objective-C

      +
      - (void)documentOverlayViewControllerDidFinishScanning:(MBDocumentOverlayViewController *)documentOverlayViewController state:(MBRecognizerResultState)state {
       
           // this is done on background thread
           // check for valid state
           if (state == MBRecognizerResultStateValid) {
       
               // first, pause scanning until we process all the results
      -        [barcodeOverlayViewController.recognizerRunnerViewController pauseScanning];
      +        [documentOverlayViewController.recognizerRunnerViewController pauseScanning];
       
               dispatch_async(dispatch_get_main_queue(), ^{
                   // All UI interaction needs to be done on main thread
      @@ -1003,30 +1059,26 @@ 

      4. Registering for sc } } -- (void)barcodeOverlayViewControllerDidTapClose:(MBBarcodeOverlayViewController *)barcodeOverlayViewController { +- (void)documentOverlayViewControllerDidTapClose:(MBDocumentOverlayViewController *)documentOverlayViewController { // Your action on cancel }

      -

      Advanced BlinkInput integration instructions

      +

      Advanced BlinkInput integration instructions

      This section covers more advanced details of BlinkInput integration.

        -
      1. First part will cover the possible customizations when using UI provided by the SDK.
      2. -
      3. Second part will describe how to embed MBRecognizerRunnerViewController's delegates into your UIViewController with the goal of creating a custom UI for scanning, while still using camera management capabilites of the SDK.
      4. -
      5. Third part will describe how to use the MBRecognizerRunner (Direct API) for recognition directly from UIImage without the need of camera or to recognize camera frames that are obtained by custom camera management.
      6. -
      7. Fourth part will describe recognizer concept and available recognizers.
      8. +
      9. First part will cover the possible customizations when using UI provided by the SDK.
      10. +
      11. Second part will describe how to embed MBRecognizerRunnerViewController's delegates into your UIViewController with the goal of creating a custom UI for scanning, while still using camera management capabilites of the SDK.
      12. +
      13. Third part will describe how to use the MBRecognizerRunner (Direct API) for recognition directly from UIImage without the need of camera or to recognize camera frames that are obtained by custom camera management.
      14. +
      15. Fourth part will describe recognizer concept and available recognizers.
      -

      UI customizations of built-in MBOverlayViewControllers and MBOverlaySubviews

      -

      Built-in overlay view controllers and overlay subviews

      +

      Built-in overlay view controllers and overlay subviews

      -

      Within BlinkInput SDK there are several built-in overlay view controllers and scanning subview overlays that you can use to perform scanning.

      -

      MBBarcodeOverlayViewController

      +

      Within BlinkInput SDK there are several built-in overlay view controllers and scanning subview overlays that you can use to perform scanning.

      +

      Using MBBarcodeOverlayViewController

      -

      MBBarcodeOverlayViewController is overlay view controller best suited for performing scanning of various barcodes. It has MBBarcodeOverlayViewControllerDelegate delegate which can be used out of the box to perform scanning using the default UI.

      -

      Using MBBarcodeOverlayViewController

      - -

      MBBarcodeOverlayViewController is built-in overlay view controller which is best suiteed to use while scanning various barcodes. As you have seen in Quick Start, MBBarcodeOverlayViewController has MBBarcodeOverlaySettings. Here is an example how to use and initialize MBBarcodeOverlayViewController:

      +

      MBBarcodeOverlayViewController is overlay view controller best suited for performing scanning of various barcodes. It has MBBarcodeOverlayViewControllerDelegate delegate which can be used out-of-the-box to perform scanning using the default UI. Here is an example how to use and initialize MBBarcodeOverlayViewController:

      Swift

      /** Create your overlay view controller */
      @@ -1048,7 +1100,31 @@ 

      Custom overlay view controller

      +

      Using MBFieldByFieldOverlayViewController

      + +

      MBFieldByFieldOverlayViewController is overlay view controller best suited for performing scanning of various payment slips and barcodes with field of view. It has MBFieldByFieldOverlayViewControllerDelegate delegate which can be used out-of-the-box to perform scanning using the default UI. Here is an example how to use and initialize MBFieldByFieldOverlayViewController:

      + +

      Swift

      +
      /** Create your overlay view controller */
      +let fieldByFieldOverlayViewController : MBFieldByFieldOverlayViewController = MBFieldByFieldOverlayViewController(settings: fieldByFieldOverlaySettings, recognizerCollection: recognizerCollection, delegate: self)
      +
      +/** Create recognizer view controller with wanted overlay view controller */
      +let recognizerRunneViewController : UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: fieldByFieldOverlayViewController)
      +
      +/** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */
      +self.present(recognizerRunneViewController, animated: true, completion: nil)
      +
      + +

      Objective-C

      +
      MBFieldByFieldOverlayViewController *overlayVC = [[MBFieldByFieldOverlayViewController alloc] initWithSettings:settings recognizerCollection: recognizerCollection delegate:self];
      +UIViewController<MBRecognizerRunnerViewController>* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:overlayVC];
      +
      +/** Present the recognizer runner view controller. You can use other presentation methods as well (instead of presentViewController) */
      +[self presentViewController:recognizerRunnerViewController animated:YES completion:nil];
      +
      + +

      As you can see, when initializing MBFieldByFieldOverlayViewController, we are sending delegate property as self. To get results, we need to conform to MBFieldByFieldOverlayViewControllerDelegate protocol.

      +

      Custom overlay view controller

      Please check our pdf417-sample-Swift for custom implementation of overlay view controller.

      @@ -1064,12 +1140,12 @@

      a way to power on and off the light (i.e. torch) button

    -

    BlinkInput SDK always provides it’s own default implementation of the Overlay View Controller for every specific use. Your implementation should closely mimic the default implementation as it’s the result of thorough testing with end users. Also, it closely matches the underlying scanning technology.

    +

    BlinkID SDK always provides it’s own default implementation of the Overlay View Controller for every specific use. Your implementation should closely mimic the default implementation as it’s the result of thorough testing with end users. Also, it closely matches the underlying scanning technology.

    For example, the scanning technology usually gives results very fast after the user places the device’s camera in the expected way above the scanned object. This means a progress bar for the scan is not particularly useful to the user. The majority of time the user spends on positioning the device’s camera correctly. That’s just an example which demonstrates careful decision making behind default camera overlay view.

    1. Initialization

    -

    To use your custom overlay with MicroBlink’s camera view, you must first subclass MBCustomOverlayViewController and implement the overlay behaviour conforming wanted protocols.

    +

    To use your custom overlay with Microblink’s camera view, you must first subclass MBCustomOverlayViewController and implement the overlay behaviour conforming wanted protocols.

    2. Protocols

    There are five MBRecognizerRunnerViewController protocols and one overlay protocol MBOverlayViewControllerInterface.

    @@ -1091,23 +1167,39 @@

    2. Protocols

    3. Overlay subviews

    -

    Developer needs to know which subivew is needed for custom view controller. If you want to use built-in implementation we recommend to use MBModernViewfinderOverlaySubview. In can be initialized in viewDidLoad method:

    +

    The SDK contains various subviews you can use to notify users of the state of scanning. If you want to use built-in implementation we recommend to use MBModernViewfinderSubview. In can be initialized in viewDidLoad method:

    Swift

    -
    viewfinderSubview = MBModernViewfinderOverlaySubview()
    +
    viewfinderSubview = MBModernViewfinderSubview()
    +viewfinderSubview.frame = view.frame
     viewfinderSubview.moveable = true
     view.addSubview(viewfinderSubview)
     

    Objective-C

    -
    self.viewfinderSubview = [[MBModernViewfinderOverlaySubview alloc] init];
    +
    self.viewfinderSubview = [[MBModernViewfinderSubview alloc] init];
    +self.viewfinderSubview.frame = self.view.frame;
     self.viewfinderSubview.delegate = self.overlaySubviewsDelegate;
     self.viewfinderSubview.moveable = YES;
     [self.view addSubview:self.viewfinderSubview];
     
    + +

    To use this subview you’ll need to implement MBDetectionRecognizerRunnerViewControllerDelegate(http://blinkinput.github.io/blinkinput-ios/Protocols/MBDetectionRecognizerRunnerViewControllerDelegate.html) then in the -recognizerRunnerViewController:didFinishDetectionWithDisplayableQuad: notify subview of detection changes.

    + +

    Swift

    +
    func recognizerRunnerViewController(_ recognizerRunnerViewController: Any!, didFinishDetectionWithDisplayableQuad displayableQuad: MBDisplayableQuadDetection) {
    +    viewfinderSubview.detectionFinished(withDisplayableQuad: displayableQuad)
    +}
    +
    + +

    Objective-C

    +
    - (void)recognizerRunnerViewController: (nonnull UIViewController<MBRecognizerRunnerViewController> *) recognizerRunnerViewController didFinishDetectionWithDisplayableQuad: (nonnull MBDisplayableQuadDetection *)displayableQuad {
    +    [self.viewfinderSubview detectionFinishedWithDisplayableQuad:displayableQuad];
    +}
    +

    4. Initialization

    -

    In Quick Start guide it is shown how to use MBBarcodeOverlayViewController. You can now swap MBBarcodeOverlayViewController with CustomOverlayViewController

    +

    In Quick Start guide it is shown how to use a default overlay view controller. You can now swap default view controller with your implementation of CustomOverlayViewController

    Swift

    let recognizerRunnerViewController : UIViewController = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: CustomOverlayViewController)
    @@ -1116,16 +1208,16 @@ 

    4. Initialization

    Objective-C

    UIViewController<MBRecognizerRunnerViewController>* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:CustomOverlayViewController];
     
    -

    Direct processing API

    +

    Direct processing API

    -

    This guide will in short present you how to process UIImage objects with PDF417.mobi SDK, without starting the camera video capture.

    +

    This guide will in short present you how to process UIImage objects with BlinkInput SDK, without starting the camera video capture.

    With this feature you can solve various use cases like: - recognizing text on images in Camera roll - taking full resolution photo and sending it to processing - scanning barcodes on images in e-mail etc.

    -

    DirectAPI-sample demo app here will present UIImagePickerController for taking full resolution photos, and then process it with MicroBlink SDK to get scanning results using Direct processing API.

    +

    DirectAPI-sample demo app here will present UIImagePickerController for taking full resolution photos, and then process it with Microblink SDK to get scanning results using Direct processing API.

    Direct processing API is handled with MBRecognizerRunner. That is a class that handles processing of images. It also has protocols as MBRecognizerRunnerViewController. Developer can choose which protocol to conform:

    @@ -1209,12 +1301,17 @@

    MBRecognizer and available recognizers

    -

    The MBRecognizer concept

    +

    Using Direct API for NSString recognition (parsing)

    -

    The MBRecognizer is the basic unit of processing within the SDK. Its main purpose is to process the image and extract meaningful information from it. As you will see later, the SDK has lots of different MBRecognizer objects that have various purposes.

    +

    Some recognizers support recognition from NSString. They can be used through Direct API to parse given NSString and return data just like when they are used on an input image. When recognition is performed on NSString, there is no need for the OCR. Input NSString is used in the same way as the OCR output is used when image is being recognized. +Recognition from String can be performed in the same way as recognition from image. +The only difference is that user should call - (void)processString:(NSString *)string; on MBRecognizerRunner.

    +

    MBRecognizer and available recognizers

    +

    The MBRecognizer concept

    + +

    The MBRecognizer is the basic unit of processing within the SDK. Its main purpose is to process the image and extract meaningful information from it. As you will see later, the SDK has lots of different MBRecognizer objects that have various purposes.

    Each MBRecognizer has a MBRecognizerResult object, which contains the data that was extracted from the image. The MBRecognizerResult object is a member of corresponding MBRecognizer object its lifetime is bound to the lifetime of its parent MBRecognizer object. If you need your MBRecognizerRecognizer object to outlive its parent MBRecognizer object, you must make a copy of it by calling its method copy.

    @@ -1223,7 +1320,7 @@

    MBRecognizerCollection concept

    +

    MBRecognizerCollection concept

    The MBRecognizerCollection is is wrapper around MBRecognizer objects that has array of MBRecognizer objects that can be used to give MBRecognizer objects to MBRecognizerRunner or MBRecognizerRunnerViewController for processing.

    @@ -1232,115 +1329,68 @@

    The MBRecognizerCollection manages a chain of MBRecognizer objects within the recognition process. When a new image arrives, it is processed by the first MBRecognizer in chain, then by the second and so on, iterating until a MBRecognizer object’s MBRecognizerResult changes its state to Valid or all of the MBRecognizer objects in chain were invoked (none getting a Valid result state).

    You cannot change the order of the MBRecognizer objects within the chain - no matter the order in which you give MBRecognizer objects to MBRecognizerCollection, they are internally ordered in a way that provides best possible performance and accuracy. Also, in order for SDK to be able to order MBRecognizer objects in recognition chain in a best way possible, it is not allowed to have multiple instances of MBRecognizer objects of the same type within the chain. Attempting to do so will crash your application.

    -

    List of available recognizers

    +

    List of available recognizers

    -

    This section will give a list of all MBRecognizer objects that are available within PDF417.mobi SDK, their purpose and recommendations how they should be used to get best performance and user experience.

    -

    Frame Grabber Recognizer

    +

    This section will give a list of all MBRecognizer objects that are available within BlinkInput SDK, their purpose and recommendations how they should be used to get best performance and user experience.

    +

    Frame Grabber Recognizer

    The MBFrameGrabberRecognizer is the simplest recognizer in SDK, as it does not perform any processing on the given image, instead it just returns that image back to its onFrameAvailable. Its result never changes state from empty.

    This recognizer is best for easy capturing of camera frames with MBRecognizerRunnerViewController. Note that MBImage sent to onFrameAvailable are temporary and their internal buffers all valid only until the onFrameAvailable method is executing - as soon as method ends, all internal buffers of MBImage object are disposed. If you need to store MBImage object for later use, you must create a copy of it by calling copy.

    -

    Success Frame Grabber Recognizer

    +

    Success Frame Grabber Recognizer

    The MBSuccessFrameGrabberRecognizer is a special MBecognizer that wraps some other MBRecognizer and impersonates it while processing the image. However, when the MBRecognizer being impersonated changes its MBRecognizerResult into Valid state, the MBSuccessFrameGrabberRecognizer captures the image and saves it into its own MBSuccessFrameGrabberRecognizerResult object.

    Since MBSuccessFrameGrabberRecognizer impersonates its slave MBRecognizer object, it is not possible to give both concrete MBRecognizer object and MBSuccessFrameGrabberRecognizer that wraps it to same MBRecognizerCollection - doing so will have the same result as if you have given two instances of same MBRecognizer type to the MBRecognizerCollection - it will crash your application.

    This recognizer is best for use cases when you need to capture the exact image that was being processed by some other MBRecognizer object at the time its MBRecognizerResult became Valid. When that happens, MBSuccessFrameGrabberRecognizer's MBSuccessFrameGrabberRecognizerResult will also become Valid and will contain described image.

    -

    PDF417 recognizer

    +

    PDF417 recognizer

    -

    The MBPdf417Recognizer is recognizer specialised for scanning PDF417 2D barcodes. This recognizer can recognize only PDF417 2D barcodes - for recognition of other barcodes, please refer to BarcodeRecognizer.

    +

    The MBPdf417Recognizer is recognizer specialised for scanning PDF417 2D barcodes. This recognizer can recognize only PDF417 2D barcodes - for recognition of other barcodes, please refer to BarcodeRecognizer.

    This recognizer can be used in any overlay view controller, but it works best with the MBBarcodeOverlayViewController, which has UI best suited for barcode scanning.

    -

    Barcode recognizer

    +

    Barcode recognizer

    -

    The MBBarcodeRecognizer is recognizer specialised for scanning various types of barcodes. This recognizer should be your first choice when scanning barcodes as it supports lots of barcode symbologies, including the PDF417 2D barcodes, thus making PDF417 recognizer possibly redundant, which was kept only for its simplicity.

    +

    The MBBarcodeRecognizer is recognizer specialised for scanning various types of barcodes. This recognizer should be your first choice when scanning barcodes as it supports lots of barcode symbologies, including the PDF417 2D barcodes, thus making PDF417 recognizer possibly redundant, which was kept only for its simplicity.

    You can enable multiple barcode symbologies within this recognizer, however keep in mind that enabling more barcode symbologies affect scanning performance - the more barcode symbologies are enabled, the slower the overall recognition performance. Also, keep in mind that some simple barcode symbologies that lack proper redundancy, such as Code 39, can be recognized within more complex barcodes, especially 2D barcodes, like PDF417.

    This recognizer can be used in any overlay view controller, but it works best with the MBBarcodeOverlayViewController, which has UI best suited for barcode scanning.

    -

    BlinkInput recognizer

    +

    BlinkInput recognizer

    The MBBlinkInputRecognizer is generic OCR recognizer used for scanning segments which enables specifying MBProcessors that will be used for scanning. Most commonly used MBProcessor within this recognizer is MBParserGroupProcessor) that activates all MBParsers in the group to extract data of interest from the OCR result.

    This recognizer can be used in any context. It is used internally in the implementation of the provided MBFieldByFieldOverlayViewController.

    -

    MBProcessors are explained in The Processor concept section and you can find more about MBParsers in The Parser concept section.

    -

    Detector recognizer

    - -

    The MBDetectorRecognizer is recognizer for scanning generic documents using custom MBDetector. You can find more about Detector in The Detector concept section. MBDetectorRecognizer can be used simply for document detection and obtaining its image. The more interesting use case is data extraction from the custom document type. MBDetectorRecognizer performs document detection and can be configured to extract fields of interest from the scanned document by using Templating API. You can find more about Templating API in this section.

    -

    Field by field scanning feature

    - -

    Field by field scanning feature is designed for scanning small text fields which are called scan elements. For each scan element, specific MBParser that will extract structured data of interest from the OCR result is defined. Focusing on the small text fields which are scanned one by one enables implementing support for the free-form documents because field detection is not required. The user is responsible for positioning the field of interest inside the scanning window and the scanning process guides him. When implementing support for the custom document, only fields of interest has to be defined.

    - -

    Field by field approaches are described in the following sections.

    -

    Field by field feature

    - -

    Field by field feature is designed for scanning small text fields in the predefined order by using MBFieldByFieldViewController.

    - -

    To start with Field by Field feature all you need to do is to initialize MBFieldByFieldOverlayViewController and conform to MBFieldByFieldOverlayViewControllerDelegate (this example follows our FieldByField-sample-Swift project):

    - -

    Swift

    -
        // Create MBFieldByFieldOverlaySettings
    -    let settings = MBFieldByFieldOverlaySettings(scanElements: MBGenericPreset.getPreset()!)
    -
    -    // Create field by field VC
    -    let fieldByFieldVC = MBFieldByFieldOverlayViewController(settings: settings, delegate: self)
    +

    MBProcessors are explained in The Processor concept section and you can find more about MBParsers in The Parser concept section.

    +

    Detector recognizer

    - // Create scanning VC - let recognizerRunnerViewController: (UIViewController & MBRecognizerRunnerViewController)? = MBViewControllerFactory.recognizerRunnerViewController(withOverlayViewController: fieldByFieldVC) +

    The MBDetectorRecognizer is recognizer for scanning generic documents using custom MBDetector. You can find more about Detector in The Detector concept section. MBDetectorRecognizer can be used simply for document detection and obtaining its image. The more interesting use case is data extraction from the custom document type. MBDetectorRecognizer performs document detection and can be configured to extract fields of interest from the scanned document by using Templating API. You can find more about Templating API in this section.

    +

    MBProcessor and MBParser

    - // Present VC - self.present(recognizerRunnerViewController!, animated: true, completion: nil) - - - func field(_ fieldByFieldOverlayViewController: MBFieldByFieldOverlayViewController, didFinishScanningWith scanElements: [MBScanElement]) { - // Whatever you want to do with results - } -
    - -

    Objective-C

    -
        // Create MBFieldByFieldOverlaySettings
    -    MBFieldByFieldOverlaySettings *settings = [[MBFieldByFieldOverlaySettings alloc] initWithScanElements: [MBGenericPreset getPreset] initWithSettings: settings, delegate: self];
    -
    -    // Create field by field VC
    -    MBFieldByFieldOverlayViewController *fieldByFieldOverlayViewController =  [[MBFieldByFieldOverlayViewController alloc] initWithSettings:settings delegate: self];
    -
    -    // Create scanning VC
    -    UIViewController<MBRecognizerRunnerViewController>* recognizerRunnerViewController = [MBViewControllerFactory recognizerRunnerViewControllerWithOverlayViewController:fieldByFieldOverlayViewController];
    -
    -    / Present VC
    -    [self presentViewController:recognizerRunnerViewController animated:YES completion:nil];
    -
    -    - (void)fieldByFieldOverlayViewController:(MBFieldByFieldOverlayViewController *)fieldByFieldOverlayViewController didFinishScanningWithElements:(NSArray<MBScanElement *> *)scanElements {
    -        // Whatever you want to do with results
    -    }
    -
    -

    MBProcessor and MBParser

    - -

    The MBProcessors and MBParsers are standard processing units within BlinkInput SDK used for data extraction from the input images. Unlike the MBRecognizer, MBProcessor and MBParser are not stand-alone processing units. MBProcessor is always used within MBRecognizer and MBParser is used within appropriate MBProcessor to extract data from the OCR result.

    -

    The MBProcessor concept

    +

    The MBProcessors and MBParsers are standard processing units within BlinkID SDK used for data extraction from the input images. Unlike the MBRecognizer, MBProcessor and MBParser are not stand-alone processing units. MBProcessor is always used within MBRecognizer and MBParser is used within appropriate MBProcessor to extract data from the OCR result.

    +

    The MBProcessor concept

    MBProcessor is a processing unit used within some Recognizer which supports processors. It process the input image prepared by the enclosing Recognizer in the way that is characteristic to the implementation of the concrete MBProcessor.

    -

    MBProcessor architecture is similar to MBRecognizer architecture described in The Recognizer concept section. Each instance also has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBProcessor object and it is updated while MBProcessor works. If you need your MBRecognizerResult object to outlive its parent MBProcessor object, you must make a copy of it by calling its method copy.

    +

    MBProcessor architecture is similar to MBRecognizer architecture described in The Recognizer concept section. Each instance also has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBProcessor object and it is updated while MBProcessor works. If you need your MBRecognizerResult object to outlive its parent MBProcessor object, you must make a copy of it by calling its method copy.

    It also has its internal state and while it is in the working state during recognition process, it is not allowed to tweak MBProcessor object’s properties.

    To support common use cases, there are several different MBProcessor implementations available. They are listed in the next section.

    -

    List of available processors

    +

    List of available processors

    -

    This section will give a list of MBProcessor types that are available within BlinkInput SDK and their purpose.

    -

    Image Return Processor

    +

    This section will give a list of MBProcessor types that are available within BlinkID SDK and their purpose.

    +

    Image Return Processor

    The MBImageReturnProcessor is used for obtaining input images. It simply saves the input image and makes it available after the scanning is done.

    -

    The appearance of the input image depends on the context in which MBImageReturnProcessor is used. For example, when it is used within MBBlinkInputRecognizer, simply the raw image of the scanning region is processed. When it is used within the Templating API, input image is dewarped (cropped and rotated).

    +

    The appearance of the input image depends on the context in which MBImageReturnProcessor is used. For example, when it is used within MBBlinkInputRecognizer, simply the raw image of the scanning region is processed. When it is used within the Templating API, input image is dewarped (cropped and rotated).

    The image is returned as the raw MBImage type. Also, processor can be configured to encode saved image to JPEG.

    -

    Parser Group Processor

    +

    Parser Group Processor

    -

    The MBParserGroupProcessor is the type of the processor that performs the OCR (Optical Character Recognition) on the input image and lets all the parsers within the group to extract data from the OCR result. The concept of MBParser is described in the next section.

    +

    The MBParserGroupProcessor is the type of the processor that performs the OCR (Optical Character Recognition) on the input image and lets all the parsers within the group to extract data from the OCR result. The concept of MBParser is described in the next section.

    Before performing the OCR, the best possible OCR engine options are calculated by combining engine options needed by each MBParser from the group. For example, if one parser expects and produces result from uppercase characters and other parser extracts data from digits, both uppercase characters and digits must be added to the list of allowed characters that can appear in the OCR result. This is a simplified explanation because OCR engine options contain many parameters which are combined by the MBParserGroupProcessor.

    @@ -1354,79 +1404,79 @@

    MBParserGroupProcessor is most commonly used MBProcessor. It is used whenever the OCR is needed. After the OCR is performed and all parsers are run, parsed results can be obtained through parser objects that are enclosed in the group. MBParserGroupProcessor instance also has associated inner MBParserGroupProcessorResult whose state is updated during processing and its property ocrLayout can be used to obtain the raw MBOcrLayout that was used for parsing data.

    -

    Take note that MBOcrLayout is available only if it is allowed by the BlinkInput SDK license key. MBOcrLayout structure contains information about all recognized characters and their positions on the image. To prevent someone to abuse that, obtaining of the MBOcrLayout structure is allowed only by the premium license keys.

    -

    The MBParser concept

    +

    Take note that MBOcrLayout is available only if it is allowed by the BlinkID SDK license key. MBOcrLayout structure contains information about all recognized characters and their positions on the image. To prevent someone to abuse that, obtaining of the MBOcrLayout structure is allowed only by the premium license keys.

    +

    The MBParser concept

    MBParser is a class of objects that are used to extract structured data from the raw OCR result. It must be used within MBParserGroupProcessor which is responsible for performing the OCR, so MBParser is not stand-alone processing unit.

    -

    Like MBRecognizer and all other processing units, each MBParser instance has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBParser object and it is updated while MBParser works. When parsing is done MBParserResult can be used for obtaining extracted data. If you need your MBParserResult object to outlive its parent MBParser object, you must make a copy of it by calling its method copy.

    +

    Like MBRecognizer and all other processing units, each MBParser instance has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBParser object and it is updated while MBParser works. When parsing is done MBParserResult can be used for obtaining extracted data. If you need your MBParserResult object to outlive its parent MBParser object, you must make a copy of it by calling its method copy.

    It also has its internal state and while it is in the working state during recognition process, it is not allowed to tweak MBParser object’s properties.

    There are a lot of different MBParsers for extracting most common fields which appear on various documents. Also, most of them can be adjusted for specific use cases. For all other custom data fields, there is RegexParser available which can be configured with the arbitrary regular expression.

    -

    List of available parsers

    -

    Amount Parser

    +

    List of available parsers

    +

    Amount Parser

    MBAmountParser is used for extracting amounts from the OCR result.

    -

    Date Parser

    +

    Date Parser

    MBDateParser is used for extracting dates in various formats from the OCR result.

    -

    Email Parser

    +

    Email Parser

    MBEmailParser is used for extracting e-mail addresses from the OCR result.

    -

    IBAN Parser

    +

    IBAN Parser

    MBIbanParser is used for extracting IBAN (International Bank Account Number) from the OCR result.

    -

    License Plates Parser

    +

    License Plates Parser

    MBLicensePlatesParser is used for extracting license plate content from the OCR result.

    -

    Raw Parser

    +

    Raw Parser

    MBRawParser is used for obtaining string version of raw OCR result, without performing any smart parsing operations.

    -

    Regex Parser

    +

    Regex Parser

    MBRegexParser is used for extracting OCR result content which is in accordance with the given regular expression. Regular expression parsing is not performed with java’s regex engine. Instead, it is performed with custom regular expression engine.

    -

    TopUp Parser

    +

    TopUp Parser

    MBTopUpParser is used for extracting TopUp (mobile phone coupon) codes from the OCR result. There exists TopUpPreset enum with presets for most common vendors. Method - (void)setTopUpPreset:(MBTopUpPreset)topUpPreset can be used to configure parser to only return codes with the appropriate format defined by the used preset.

    -

    VIN (Vehicle Identification Number) Parser

    +

    VIN (Vehicle Identification Number) Parser

    MBVinParser is used for extracting VIN (Vehicle Identification Number) from the OCR result.

    -

    Scanning generic documents with Templating API

    +

    Scanning generic documents with Templating API

    This section discusses the setting up of MBDetectorRecognizer for scanning templated documents. Please check Templating-sample sample app for source code examples.

    Templated document is any document which is defined by its template. Template contains the information about how the document should be detected, i.e. found on the camera scene and information about which part of the document contains which useful information.

    -

    Defining how document should be detected

    +

    Defining how document should be detected

    -

    Before performing OCR of the document, BlinkInput first needs to find its location on a camera scene. In order to perform detection, you need to define MBDetector.

    +

    Before performing OCR of the document, BlinkID first needs to find its location on a camera scene. In order to perform detection, you need to define MBDetector.

    You have to set concrete MBDetector when instantiating the MBDetectorRecognizer as a parameter to its constructor.

    -

    You can find out more information about detectors that can be used in section List of available detectors. The most commonly used detector is MBDocumentDetector.

    -

    Defining how fields of interest should be extracted

    +

    You can find out more information about detectors that can be used in section List of available detectors. The most commonly used detector is MBDocumentDetector.

    +

    Defining how fields of interest should be extracted

    MBDetector produces its result which contains document location. After the document has been detected, all further processing is done on the detected part of the input image.

    -

    There may be one or more variants of the same document type, for example for some document there may be old and new version and both of them must be supported. Because of that, for implementing support for each document, one or multiple templating classes are used. MBTemplatingClass is described in The Templating Class component section.

    +

    There may be one or more variants of the same document type, for example for some document there may be old and new version and both of them must be supported. Because of that, for implementing support for each document, one or multiple templating classes are used. MBTemplatingClass is described in The Templating Class component section.

    MBTemplatingClass holds all needed information and components for processing its class of documents. Templating classes are processed in chain, one by one. On first class for which the data is successfully extracted, the chain is terminated and recognition results are returned. For each input image processing is done in the following way:

      -
    1. Classification MBProcessorGroups are run on the defined locations to extract data. MBProcessorGroup is used to define the location of interest on the detected document and MBProcessors that will extract data from that location. You can find more about MBProcessorGroup in the next section.

    2. -
    3. MBTemplatingClassifier is run with the data extracted by the classification processor groups to decide whether the currently scanned document belongs to the current class or not. Its classify method simply returns YES/true or NO/false. If the classifier returns NO/false, recognition is moved to the next class in the chain, if it exists. You can find more about MBTemplatingClassifier in this section.

    4. +
    5. Classification MBProcessorGroups are run on the defined locations to extract data. MBProcessorGroup is used to define the location of interest on the detected document and MBProcessors that will extract data from that location. You can find more about MBProcessorGroup in the next section.

    6. +
    7. MBTemplatingClassifier is run with the data extracted by the classification processor groups to decide whether the currently scanned document belongs to the current class or not. Its classify method simply returns YES/true or NO/false. If the classifier returns NO/false, recognition is moved to the next class in the chain, if it exists. You can find more about MBTemplatingClassifier in this section.

    8. If the MBTemplatingClassifier has decided that currently scanned document belongs to the current class, non-classification MBProcessorGroups are run to extract other fields of interest.

    -

    The MBProcessorGroup component

    +

    The MBProcessorGroup component

    In templating API MBProcessorGroup is used to define the location of the field of interest on the detected document and how that location should be processed by setting following parameters in its constructor:

    1. Location coordinates relative to document detection which are passed as [Rectangle] object.

    2. -
    3. MBDewarpPolicy which determines the resulting image chunk for processing. You can find a description of each MBDewarpPolicy, its purpose and recommendations when it should be used to get the best results in List of available dewarp policies section.

    4. -
    5. Collection of processors that will be executed on the prepared chunk of the image for current document location. You can find more information about processors in The Processor concept section.

    6. +
    7. MBDewarpPolicy which determines the resulting image chunk for processing. You can find a description of each MBDewarpPolicy, its purpose and recommendations when it should be used to get the best results in List of available dewarp policies section.

    8. +
    9. Collection of processors that will be executed on the prepared chunk of the image for current document location. You can find more information about processors in The Processor concept section.

    -

    List of available dewarp policies

    +

    List of available dewarp policies

    Concrete MBDewarpPolicy defines how specific location of interest should be dewarped (cropped and rotated). It determines the height and width of the resulting dewarped image in pixels. Here is the list of available dewarp policies with linked doc for more information:

    @@ -1453,7 +1503,7 @@

    The MBTemplatingClass component

    +

    The MBTemplatingClass component

    MBTemplatingClass enables implementing support for a specific class of documents that should be scanned with templating API. Final implementation of the templating recognizer consists of one or more templating classes, one class for each version of the document.

    @@ -1466,22 +1516,22 @@

    The non-classification processor groups which are set by using the [- (void)setNonClassificationProcessorGroups:(nonnull NSArray<__kindof MBProcessorGroup *> *)processorGroups]method. MBProcessorGroups from this collection will be executed after classification if the classification has been positive.

    -

    A component which decides whether the scanned document belongs to the current class is MBTemplatingClass. It can be set by using the - (void)setTemplatingClassifier:(nullable id<MBTemplatingClassifier>)templatingClassifier method. If it is not set, non-classification processor groups will not be executed. Instructions for implementing the MBTemplatingClassifier are given in the next section.

    -

    Implementing the MBTemplatingClassifier

    +

    A component which decides whether the scanned document belongs to the current class is MBTemplatingClass. It can be set by using the - (void)setTemplatingClassifier:(nullable id<MBTemplatingClassifier>)templatingClassifier method. If it is not set, non-classification processor groups will not be executed. Instructions for implementing the MBTemplatingClassifier are given in the next section.

    +

    Implementing the MBTemplatingClassifier

    Each concrete templating classifier implements the MBTemplatingClassifier interface, which requires to implement its classify method that is invoked while evaluating associated MBTemplatingClass.

    -

    Classification decision should be made based on the processing result which is returned by one or more processing units contained in the collection of the classification processor groups. As described in The ProcessorGroup component section, each processor group contains one or more MBProcessors. There are different MBProcessors which may enclose smaller processing units, for example, MBParserGroupProcessor maintains the group of MBParsers. Result from each of the processing units in that hierarchy can be used for classification. In most cases MBParser result is used to determine whether some data in the expected format exists on the specified location.

    +

    Classification decision should be made based on the processing result which is returned by one or more processing units contained in the collection of the classification processor groups. As described in The ProcessorGroup component section, each processor group contains one or more MBProcessors. There are different MBProcessors which may enclose smaller processing units, for example, MBParserGroupProcessor maintains the group of MBParsers. Result from each of the processing units in that hierarchy can be used for classification. In most cases MBParser result is used to determine whether some data in the expected format exists on the specified location.

    To be able to retrieve results from the various processing units that are needed for classification, their instances must be available when classify method is called.

    Obtaining recognition results

    When recognition is done, results can be obtained through processing units instances, such as: MBProcessors, MBParsers, etc. which are used for configuring the MBTemplatingRecognizer and later for processing the input image.

    -

    The MBDetector concept

    +

    The MBDetector concept

    -

    MBDetector is a processing unit used within some MBRecognizer which supports detectors, such as MBDetectorRecognizer. Concrete MBDetector knows how to find the certain object on the input image. MBRecognizer can use it to perform object detection prior to performing further recognition of detected object’s contents.

    +

    MBDetector is a processing unit used within some MBRecognizer which supports detectors, such as MBDetectorRecognizer. Concrete MBDetector knows how to find the certain object on the input image. MBRecognizer can use it to perform object detection prior to performing further recognition of detected object’s contents.

    -

    MBDetector architecture is similar to MBRecognizer architecture described in The Recognizer concept section. Each instance also has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBDetector object and it is updated while MBDetector works. If you need your MBRecognizerResult object to outlive its parent MBDetector object, you must make a copy of it by calling its copy method.

    +

    MBDetector architecture is similar to MBRecognizer architecture described in The Recognizer concept section. Each instance also has associated inner MBRecognizerResult object whose lifetime is bound to the lifetime of its parent MBDetector object and it is updated while MBDetector works. If you need your MBRecognizerResult object to outlive its parent MBDetector object, you must make a copy of it by calling its copy method.

    It also has its internal state and while it is in the working state during recognition process, it is not allowed to tweak MBDetector object’s properties.

    @@ -1494,8 +1544,8 @@

    List of available detectors

    -

    Document Detector

    +

    List of available detectors

    +

    Document Detector

    MBDocumentDetector is used to detect card documents, cheques, A4-sized documents, receipts and much more.

    @@ -1504,7 +1554,7 @@

    MBDocumentSpecificationPreset.

    For the list of all available configuration methods see MBDocumentDetector doc, and for available result content see MBDocumentDetectorResult doc.

    -

    MRTD Detector

    +

    MRTD Detector

    MBMrtdDetector is used to perform detection of Machine Readable Travel Documents (MRTD).

    @@ -1513,16 +1563,101 @@

    MBMrtdDetector doc, and for available result content see MBMrtdDetectorResult doc.

    -

    Troubleshooting

    -

    Integration problems

    +

    Creating customized build of BlinkID SDK

    + +

    If your final app size is too large, you can create a customised build of MicroBlink.framework and MicroBlink.bundle which will contain only features and resources that you really need.

    + +

    In order to create customised build of BlinkID SDK, you first need to download the static distribution of BlinkID SDK. A valid production licence key is required in order to gain access to the download link of BlinkID SDK static distribution. Once you have a valid production licence key, please contact our support team and ask them to provide you with the download link. After they give you access to the static distribution of BlinkID SDK, you will be able to download it from you account at MicroBlink Developer Dashboard.

    + +

    The static distribution of BlinkID SDK is a large zip file (several hundred megabytes) which contains static libraries of BlinkID SDK’s native code, all assets and resources and a script which will create the customised build for you.

    +

    Prerequisites for creating customised build

    + +

    In order to create customised build of BlinkInput SDK, you will need following tools:

    + +
      +
    • XCode and latest iOS SDK
    • +
    • CMake - you can install it from Homebrew with brew install cmake, or you can download it from official page + +
        +
      • please note that command-line version of CMake is required, so if you have downloaded CMake from official page, make sure you install command-line support as well
      • +
    • +
    +

    Steps for creating customised build

    + +
      +
    1. Obtain the static distribution of BlinkID SDK by contacting us
    2. +
    3. Download the zip from link that you will be provided
    4. +
    5. Unzip the file into an empty folder
    6. +
    7. Edit the file enabled-features.cmake + +
        +
      • you should enable only features that you need to use by setting appropriate variables to ON.
      • +
      • the list of all possible feature variables can be found in features.cmake + +
          +
        • for each feature_option command, first parameter defines the feature variable, and the second is the description of the feature, i.e. what it provides. Other parameters are information for script to work correctly.
        • +
      • +
      • you should not edit any file except enabled-features.cmake (except if instructed so by our support team) to ensure creation of customised build works well
      • +
    8. +
    9. Open terminal and navigate to folder with zip’s contents.
    10. +
    11. Execute command ./create-custom-build.sh and select whether you want static or dynamic frameowk. + +
        +
      • when asked, enter s to build static framework or d to build dynamic framework
      • +
    12. +
    13. After several minutes (depedending of CPU speed of your computer), customised build will appear in the Release folder. Use that bundle and framework in your app instead of default one.
    14. +
    +

    Warning:

    + +

    Attempt to use feature within your app which was not enabled in customised build will cause a linker error when linking against the customised framework.

    +

    Troubleshooting:

    +

    Getting unrecognized selector sent to instance when using customised static framework, while everything works OK with dynamic framework

    + +

    This happens when your app has not been linked with -ObjC flag against static framework. The problem is related to using Objective C categories within static library which are thrown away by linker. You can see more information in official Apple documentation.

    +

    App crashing when scanning starts with log message Failed to load resource XX. The program will now crash.

    + +

    This means that a required resource was not packaged into final app. This usually indicates a bug in our script that makes the customised build. Please contact us and send your version of enabled-features.cmake and crash log.

    +

    CMake error while running script.

    + +

    You probably have a typo in enabled-features.cmake. CMake is very sensitive language and will throw an non-understandable error if you have a typo or invoke any of its commands with wrong number of parameters.

    +

    Linker error while running the script.

    + +

    This sometimes happens when XCode’s link time optimizer runs out of memory. Usually running the script again solves the problem. Please reboot your Mac if this keeps happening.

    + + +

    FEATURE_MRTD marks the MRTD recognizer. However, MRTD recognizer can also be used in Templating API mode where non-MRZ data can be scanned. To perform OCR of non-MRZ data, a rather large OCR model must be used, which supports all fonts. If you only plan to scan MRZ part of the document, you can edit the features.cmake in following way:

    + +
      +
    • find the following line:
    • +
    +
    feature_resources( FEATURE_MRTD model_mrtd model_general_blink_ocr model_micr model_arabic )
    +
    + +
      +
    • keep only model_mrtd in the list, i.e. modify the line so that it will be like this:
    • +
    +
    feature_resources( FEATURE_MRTD model_mrtd )
    +
    + +

    This will keep only support for reading MRZ zone in OCR - you will not be able to scan non-MRZ data with such configuration using MRTD recognizer, however you will reduce the MicroBlink.bundle and then final app size by more than 4MB.

    +
    More information about OCR models in FEATURE_MRTD
    + +
      +
    • model_mrtd is OCR model for performing OCR of MRZ zone
    • +
    • model_arabic is OCR model for performing OCR of digits used in arabic languages - text scanning is not supported
    • +
    • model_micr is OCR model for performing OCR of Magnetic Ink Characters
    • +
    • model_general_blink_ocr is OCR model for performing general-purpose OCR. This model is usually required for performing OCR of non-MRZ text on documents.
    • +
    +

    Troubleshooting

    +

    Integration problems

    -

    In case of problems with integration of the SDK, first make sure that you have tried integrating it into XCode by following integration instructions.

    +

    In case of problems with integration of the SDK, first make sure that you have tried integrating it into XCode by following integration instructions.

    -

    If you have followed XCode integration instructions and are still having integration problems, please contact us at help.microblink.com.

    -

    SDK problems

    +

    If you have followed XCode integration instructions and are still having integration problems, please contact us at help.microblink.com.

    +

    SDK problems

    In case of problems with using the SDK, you should do as follows:

    -

    Licencing problems

    +

    Licencing problems

    If you are getting invalid licence key error or having other licence-related problems (e.g. some feature is not enabled that should be or there is a watermark on top of camera), first check the console. All licence-related problems are logged to error log so it is easy to determine what went wrong.

    @@ -1534,7 +1669,7 @@

    Licencing problems

  • 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

    +

    Other problems

    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:

    @@ -1548,23 +1683,23 @@

    Other problems

  • please stress out that you are reporting problem related to iOS version of PDF417.mobi SDK
  • -

    Frequently asked questions and known problems

    +

    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.

    -

    In demo everything worked, but after switching to production license I get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code as soon as I construct specific MBRecognizer object

    +

    In demo everything worked, but after switching to production license I get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code as soon as I construct specific MBRecognizer object

    Each license key contains information about which features are allowed to use and which are not. This NSError indicates that your production license does not allow using of specific MBRecognizer object. You should contact support to check if provided licence is OK and that it really contains all features that you have purchased.

    -

    I get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code with trial license key

    +

    I get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code with trial license key

    -

    Whenever you construct any MBRecognizer object or, a check whether license allows using that object will be performed. If license is not set prior constructing that object, you will get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code. We recommend setting license as early as possible in your app.

    -

    Undefined Symbols on Architecture armv7

    +

    Whenever you construct any MBRecognizer object or, a check whether license allows using that object will be performed. If license is not set prior constructing that object, you will get NSError with MBMicroblinkSDKRecognizerErrorDomain and MBRecognizerFailedToInitalize code. We recommend setting license as early as possible in your app.

    +

    Undefined Symbols on Architecture armv7

    -

    Make sure you link your app with iconv and Accelerate frameworks as shown in Quick start. +

    Make sure you link your app with iconv and Accelerate frameworks as shown in Quick start. If you are using Cocoapods, please be sure that you’ve installed git-lfs prior to installing pods. If you are still getting this error, go to project folder and execute command git-lfs pull.

    -

    In my didFinish callback I have the result inside my MBRecognizer, but when scanning activity finishes, the result is gone

    +

    In my didFinish callback I have the result inside my MBRecognizer, but when scanning activity finishes, the result is gone

    -

    This usually happens when using MBRecognizerRunnerViewController and forgetting to pause the MBRecognizerRunnerViewController in your didFinish callback. Then, as soon as didFinish happens, the result is mutated or reset by additional processing that MBRecognizer performs in the time between end of your didFinish callback and actual finishing of the scanning activity. For more information about statefulness of the MBRecognizer objects, check this section.

    -

    Unsupported architectures when submitting app to App Store

    +

    This usually happens when using MBRecognizerRunnerViewController and forgetting to pause the MBRecognizerRunnerViewController in your didFinish callback. Then, as soon as didFinish happens, the result is mutated or reset by additional processing that MBRecognizer performs in the time between end of your didFinish callback and actual finishing of the scanning activity. For more information about statefulness of the MBRecognizer objects, check this section.

    +

    Unsupported architectures when submitting app to App Store

    Microblink.framework is a dynamic framework which contains slices for all architectures - device and simulator. If you intend to extract .ipa file for ad hoc distribution, you’ll need to preprocess the framework to remove simulator architectures.

    @@ -1602,7 +1737,7 @@

    Additional info

    -

    Complete API reference can be found here.

    +

    Complete API reference can be found here.

    For any other questions, feel free to contact us at help.microblink.com.

    @@ -1613,7 +1748,7 @@

    Addit diff --git a/docs/search.json b/docs/search.json index 085b1b9..56bc473 100644 --- a/docs/search.json +++ b/docs/search.json @@ -1 +1 @@ -{"Structs/_MBScale.html#/c:@S@_MBScale@FI@scale":{"name":"scale","abstract":"

    Undocumented

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

    Undocumented

    ","parent_name":"_MBScale"},"Structs/_MBRange.html#/c:@S@_MBRange@FI@start":{"name":"start","abstract":"

    Undocumented

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

    Undocumented

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

    Struct which defines a range on the image

    "},"Structs/_MBScale.html":{"name":"_MBScale","abstract":"

    Struct which defines a scale which detector searches on the image

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

    Method which creates a range structure

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

    Method which creates a scale structure

    "},"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

    "},"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/MBScale/_MBScale.html#/c:@S@_MBScale@FI@scale":{"name":"scale","abstract":"

    Undocumented

    ","parent_name":"_MBScale"},"Type Definitions/MBScale/_MBScale.html#/c:@S@_MBScale@FI@tolerance":{"name":"tolerance","abstract":"

    Undocumented

    ","parent_name":"_MBScale"},"Type Definitions/MBScale/_MBScale.html":{"name":"_MBScale","abstract":"

    Struct which defines a scale which detector searches on the image

    ","parent_name":"MBScale"},"Type Definitions/MBRange/_MBRange.html#/c:@S@_MBRange@FI@start":{"name":"start","abstract":"

    Undocumented

    ","parent_name":"_MBRange"},"Type Definitions/MBRange/_MBRange.html#/c:@S@_MBRange@FI@stop":{"name":"stop","abstract":"

    Undocumented

    ","parent_name":"_MBRange"},"Type Definitions/MBRange/_MBRange.html":{"name":"_MBRange","abstract":"

    Struct which defines a range on the image

    ","parent_name":"MBRange"},"Type Definitions.html#/c:MBDateParser.h@T@MBDateFormatArray":{"name":"MBDateFormatArray","abstract":"

    Undocumented

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

    Undocumented

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

    Undocumented

    "},"Type Definitions/MBScale.html":{"name":"MBScale","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

    "},"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/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/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/MBOcrLayoutSubview.html#/c:objc(pl)MBOcrLayoutSubview(im)ocrLayoutObtained:withIdentifier:":{"name":"-ocrLayoutObtained:withIdentifier:","abstract":"

    This method should be called when MBOcrLayout is obtained and needs to be drawn/redrawn.

    ","parent_name":"MBOcrLayoutSubview"},"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/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/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/MBFieldByFieldOverlayViewControllerDelegate.html#/c:objc(pl)MBFieldByFieldOverlayViewControllerDelegate(im)fieldByFieldOverlayViewControllerWillClose:":{"name":"-fieldByFieldOverlayViewControllerWillClose:","abstract":"

    Called when Overlay will close. This can happen if the user pressed close button

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

    Called when Scanning finishes and Overlay will dissapear.

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

    Called when user pressed the help button on the overlay.

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

    Outputs back each image processed by the SDK.

    ","parent_name":"MBFieldByFieldOverlayViewControllerDelegate"},"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/MBBarcodeOverlayViewControllerDelegate.html#/c:objc(pl)MBBarcodeOverlayViewControllerDelegate(im)barcodeOverlayViewControllerDidFinishScanning:state:":{"name":"-barcodeOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

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

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

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

    Protocol for obtaining scanning results

    "},"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/MBFieldByFieldOverlayViewControllerDelegate.html":{"name":"MBFieldByFieldOverlayViewControllerDelegate","abstract":"

    Protocol for observing important events with scanning

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Protocol for processing MBOcrLayout. Subviews implementing this protocol process and draw layout data on the screen (e.g. dots or OCR characters)

    "},"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/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/MBTopUpPreset.html#/c:@E@MBTopUpPreset@MBTopUp123":{"name":"MBTopUp123","abstract":"

    For top ups which begin with 123 prefix and USSD code length is 14

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

    For top ups which begin with 103 and USSD code length is 14

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

    For top ups which begin with 131 and USSD code length is 13

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

    For top ups with any prefix and USSD code length from interval {[13, 16]}

    ","parent_name":"MBTopUpPreset"},"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/MBParserResultState.html#/c:@E@MBParserResultState@MBParserResultStateEmpty":{"name":"MBParserResultStateEmpty","abstract":"

    Empty

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

    Uncertain

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

    Valid

    ","parent_name":"MBParserResultState"},"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/PPDocumentType.html#/c:@E@PPDocumentType@PPBlinkOCRDocumentType":{"name":"PPBlinkOCRDocumentType","abstract":"

    Document type for latin documents used with BlinkOCR recognizer

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

    Document type for MICR font

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

    Document type for Arabic characters

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

    Document type for handwriting

    ","parent_name":"PPDocumentType"},"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/MBDocumentSpecificationPreset.html#/c:@E@MBDocumentSpecificationPreset@MBDocumentSpecificationId1Card":{"name":"MBDocumentSpecificationId1Card","abstract":"

    Preset for detecting ID1 cards

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

    Preset for detecting ID2 cards

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

    Preset for detecting cheques

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

    Preset for detecting A4 documents in portrait

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

    Preset for detecting A4 documents in landscape

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

    Preset for detecting vertical ID1 cards

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

    Preset for detecting vertical ID1 cards

    ","parent_name":"MBDocumentSpecificationPreset"},"Enums/MBScanningMode.html#/c:@E@MBScanningMode@MBScanningModeAuto":{"name":"MBScanningModeAuto","abstract":"

    Detects document in both directions

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

    Detects document in landscape direction

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

    Detects document in portrait direction

    ","parent_name":"MBScanningMode"},"Enums/MBDetectionCode.html#/c:@E@MBDetectionCode@MBDetectionCodeFail":{"name":"MBDetectionCodeFail","abstract":"

    Object detection has failed.

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

    Object was detected partially. Only some PhotoPay detectors support this.

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

    Object detection has succeded.

    ","parent_name":"MBDetectionCode"},"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/MBDeepOcrModel.html#/c:@E@MBDeepOcrModel@MBDeepOcrModelBlinkInput":{"name":"MBDeepOcrModelBlinkInput","abstract":"

    Deep OCR model for Blink Input

    ","parent_name":"MBDeepOcrModel"},"Enums/MBDateFormat.html#/c:@E@MBDateFormat@MBDateFormatDDMMYYYY":{"name":"MBDateFormatDDMMYYYY","abstract":"

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

    ","parent_name":"MBDateFormat"},"Enums/PPCameraAutofocusRestriction.html#/c:@E@PPCameraAutofocusRestriction@PPCameraAutofocusRestrictionNone":{"name":"PPCameraAutofocusRestrictionNone","abstract":"

    Default. Indicates that the autofocus system should not restrict the focus range.

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

    Indicates that the autofocus system should restrict the focus range for subject matter that is near to the camera.

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

    Indicates that the autofocus system should restrict the focus range for subject matter that is far from the camera.

    ","parent_name":"PPCameraAutofocusRestriction"},"Enums/PPCameraType.html#/c:@E@PPCameraType@PPCameraTypeBack":{"name":"PPCameraTypeBack","abstract":"

    Back facing camera

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

    Front facing camera

    ","parent_name":"PPCameraType"},"Enums/PPCameraPreset.html#/c:@E@PPCameraPreset@PPCameraPreset480p":{"name":"PPCameraPreset480p","abstract":"

    480p video will always be used

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

    720p video will always be used

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

    The library will calculate optimal resolution based on the use case and device used

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

    Device’s maximal video resolution will be used.

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

    Device’s photo preview resolution will be used

    ","parent_name":"PPCameraPreset"},"Enums/MBBarcodeType.html#/c:@E@MBBarcodeType@MBBarcodeNone":{"name":"MBBarcodeNone","abstract":"

    Undocumented

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

    QR code

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

    Data Matrix

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

    UPCE

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

    UPCA

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

    EAN 8

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

    EAN 13

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

    Code 128

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

    Code 39

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

    ITF

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

    Code 39

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

    PDF 417

    ","parent_name":"MBBarcodeType"},"Enums/MBBarcodeType.html":{"name":"MBBarcodeType","abstract":"

    Enumeration of possible barcode formats

    "},"Enums/PPCameraPreset.html":{"name":"PPCameraPreset","abstract":"

    Camera resolution preset

    "},"Enums/PPCameraType.html":{"name":"PPCameraType","abstract":"

    Camera type

    "},"Enums/PPCameraAutofocusRestriction.html":{"name":"PPCameraAutofocusRestriction","abstract":"

    Camera autofocus restricion mode

    "},"Enums/MBDateFormat.html":{"name":"MBDateFormat","abstract":"

    Available date formats for date parser. To activate parsing of dates with month names in"},"Enums/MBDeepOcrModel.html":{"name":"MBDeepOcrModel","abstract":"

    Type of the document which recognizer scans

    "},"Enums/MBDetectionStatus.html":{"name":"MBDetectionStatus","abstract":"

    Status of the object detection in MicroBlink SDK

    "},"Enums/MBDetectionCode.html":{"name":"MBDetectionCode","abstract":"

    Enum for type of detection status.

    "},"Enums/MBScanningMode.html":{"name":"MBScanningMode","abstract":"

    Enum of different scanning modes: Landscape, Portrait and Auto(both)

    "},"Enums/MBDocumentSpecificationPreset.html":{"name":"MBDocumentSpecificationPreset","abstract":"

    Presets which can be used to instantiate document specification for a specific document format

    "},"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/PPDocumentType.html":{"name":"PPDocumentType","abstract":"

    Type of the document which recognizer scans

    "},"Enums/MBOcrFont.html":{"name":"MBOcrFont","abstract":"

    A list of fonts supported by BlinkOCR

    "},"Enums/MBParserResultState.html":{"name":"MBParserResultState","abstract":"

    Enumeration of posibble parser result state

    "},"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/MBTopUpPreset.html":{"name":"MBTopUpPreset","abstract":"

    Enumeration of posibble top up presets

    "},"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/MBVinRecognizerResult.html#/c:objc(cs)MBVinRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinRecognizerResult"},"Classes/MBVinRecognizerResult.html#/c:objc(cs)MBVinRecognizerResult(py)vin":{"name":"vin","abstract":"

    Returns the recognized VIN or empty string if recognition failed.

    ","parent_name":"MBVinRecognizerResult"},"Classes/MBVinRecognizer.html#/c:objc(cs)MBVinRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinRecognizer"},"Classes/MBVinRecognizer.html#/c:objc(cs)MBVinRecognizer(py)result":{"name":"result","abstract":"

    Vin recognizer result

    ","parent_name":"MBVinRecognizer"},"Classes/MBVinParserResult.html#/c:objc(cs)MBVinParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinParserResult"},"Classes/MBVinParserResult.html#/c:objc(cs)MBVinParserResult(py)vin":{"name":"vin","abstract":"

    Returns the recognized VIN number or empty string if recognition failed.

    ","parent_name":"MBVinParserResult"},"Classes/MBVinParser.html#/c:objc(cs)MBVinParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinParser"},"Classes/MBVinParser.html#/c:objc(cs)MBVinParser(py)result":{"name":"result","abstract":"

    Vin parser result

    ","parent_name":"MBVinParser"},"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/MBTopUpParserResult.html#/c:objc(cs)MBTopUpParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTopUpParserResult"},"Classes/MBTopUpParserResult.html#/c:objc(cs)MBTopUpParserResult(py)topUp":{"name":"topUp","abstract":"

    Returns the recognized Top Up number or empty string if recognition failed.

    ","parent_name":"MBTopUpParserResult"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)result":{"name":"result","abstract":"

    Top Up parser result

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)allowNoPrefix":{"name":"allowNoPrefix","abstract":"

    Indicates whether USSD codes without prefix are allowed.

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)returnCodeWithoutPrefix":{"name":"returnCodeWithoutPrefix","abstract":"

    Indicates whether digts prefix and # at the end of scanned USSD code will","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)setTopUpPreset:":{"name":"-setTopUpPreset:","abstract":"

    Sets the top up prefix and USSD code length based on the given MBTopUpPreset. Only","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)setPrefix:andUssdCodeLength:":{"name":"-setPrefix:andUssdCodeLength:","abstract":"

    Sets the given top up prefix and USSD code length. Only top ups with the chosen prefix and","parent_name":"MBTopUpParser"},"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/MBSubview.html#/c:objc(cs)MBSubview(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified on Overlay events

    ","parent_name":"MBSubview"},"Classes/MBSimNumberRecognizerResult.html#/c:objc(cs)MBSimNumberRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSimNumberRecognizerResult"},"Classes/MBSimNumberRecognizerResult.html#/c:objc(cs)MBSimNumberRecognizerResult(py)simNumber":{"name":"simNumber","abstract":"

    Returns the recognized SIM number from barcode or empty string if recognition failed.

    ","parent_name":"MBSimNumberRecognizerResult"},"Classes/MBSimNumberRecognizer.html#/c:objc(cs)MBSimNumberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSimNumberRecognizer"},"Classes/MBSimNumberRecognizer.html#/c:objc(cs)MBSimNumberRecognizer(py)result":{"name":"result","abstract":"

    Sim number recognizer results

    ","parent_name":"MBSimNumberRecognizer"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(im)initWithIdentifier:parser:":{"name":"-initWithIdentifier:parser:","abstract":"

    Designated initializer, defines the unique identifier for this canned element, and Parser factory for it.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)identifier":{"name":"identifier","abstract":"

    Unique name of the element

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)parser":{"name":"parser","abstract":"

    Parser object which is reponsible scanning the text.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTitle":{"name":"localizedTitle","abstract":"

    Localized title (used in the Pivot control)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTooltip":{"name":"localizedTooltip","abstract":"

    Localized tooltip (used in the tooltip label above the viewfinder)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)keyboardType":{"name":"keyboardType","abstract":"

    Keyboard type used when editing

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTextfieldText":{"name":"localizedTextfieldText","abstract":"

    Localized initial UITextField text (used in field segment scanning text fields)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanned":{"name":"scanned","abstract":"

    YES if the value was scanned, NO otherwise.","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)edited":{"name":"edited","abstract":"

    YES if the value was manually edited, NO otherwise.","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)value":{"name":"value","abstract":"

    Actual value for this element

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanningRegionWidth":{"name":"scanningRegionWidth","abstract":"

    Width of scanning region used in UI. Values are between 0.0 and 1.0 where 1.0 is whole screen width and 0.5 is half width.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanningRegionHeight":{"name":"scanningRegionHeight","abstract":"

    Height of scanning region used in UI. Values are between 0.0 and 1.0 where 1.0 is whole screen height and 0.5 is half height.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)successfulScanImage":{"name":"successfulScanImage","abstract":"

    Image of the scanned element.

    ","parent_name":"MBScanElement"},"Classes/MBRegexParserResult.html#/c:objc(cs)MBRegexParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRegexParserResult"},"Classes/MBRegexParserResult.html#/c:objc(cs)MBRegexParserResult(py)parsedString":{"name":"parsedString","abstract":"

    Returns string containing parsed OCR result according to given regular expression.

    ","parent_name":"MBRegexParserResult"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(im)initWithRegex:":{"name":"-initWithRegex:","abstract":"

    Initializes the regex parser

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)result":{"name":"result","abstract":"

    Regex parser result

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)regex":{"name":"regex","abstract":"

    Defines regex that will be used to parse OCR data. Note that not all java regex features","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)useSieve":{"name":"useSieve","abstract":"

    Enable the usage of algorithm for combining consecutive OCR results between video frames","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)startWithWhitespace":{"name":"startWithWhitespace","abstract":"

    If set to YES, regex will not be matched if there is no whitespace before matched string.","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)endWithWhitespace":{"name":"endWithWhitespace","abstract":"

    If set to YES, regex will not be matched if there is no whitespace after matched string.","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)ocrEngineOptions":{"name":"ocrEngineOptions","abstract":"

    Sets the OCR engine options used in Regex OCR parser.","parent_name":"MBRegexParser"},"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/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/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)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)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 in PhotoPay 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)enabled":{"name":"enabled","abstract":"

    Property which determines if the recognizer is enabled

    ","parent_name":"MBRecognizer"},"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/MBRawParserResult.html#/c:objc(cs)MBRawParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRawParserResult"},"Classes/MBRawParserResult.html#/c:objc(cs)MBRawParserResult(py)rawText":{"name":"rawText","abstract":"

    Extracted date string.

    ","parent_name":"MBRawParserResult"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)result":{"name":"result","abstract":"

    License plates parser result

    ","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)useSieve":{"name":"useSieve","abstract":"

    Enable the usage of algorithm for combining consecutive OCR results between video frames","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)ocrEngineOptions":{"name":"ocrEngineOptions","abstract":"

    Sets the OCR engine options used in Regex OCR parser.","parent_name":"MBRawParser"},"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/MBQuadWithSizeDetectorResult.html#/c:objc(cs)MBQuadWithSizeDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadWithSizeDetectorResult"},"Classes/MBQuadWithSizeDetectorResult.html#/c:objc(cs)MBQuadWithSizeDetectorResult(py)physicalHeightInInches":{"name":"physicalHeightInInches","abstract":"

    Returns the physical height of the detected MBQuadrangle in inches.

    ","parent_name":"MBQuadWithSizeDetectorResult"},"Classes/MBQuadWithSizeDetector.html#/c:objc(cs)MBQuadWithSizeDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadWithSizeDetector"},"Classes/MBQuadWithSizeDetector.html#/c:objc(cs)MBQuadWithSizeDetector(py)quadWithSizeResult":{"name":"quadWithSizeResult","abstract":"

    Quad with size detector result

    ","parent_name":"MBQuadWithSizeDetector"},"Classes/MBQuadDetectorResult.html#/c:objc(cs)MBQuadDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadDetectorResult"},"Classes/MBQuadDetectorResult.html#/c:objc(cs)MBQuadDetectorResult(py)quadrangle":{"name":"quadrangle","abstract":"

    Returns the location of detected quadrilateral in coordinate system of image in which detection was performed.

    ","parent_name":"MBQuadDetectorResult"},"Classes/MBQuadDetector.html#/c:objc(cs)MBQuadDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadDetector"},"Classes/MBQuadDetector.html#/c:objc(cs)MBQuadDetector(py)quadResult":{"name":"quadResult","abstract":"

    Quad detector result

    ","parent_name":"MBQuadDetector"},"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/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)stringData":{"name":"-stringData","abstract":"

    Retrieves string content of scanned data

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)barcodeType":{"name":"barcodeType","abstract":"

    Type of the barcode scanned

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)result":{"name":"result","abstract":"

    PDF417 recognizer results

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)scanInverse":{"name":"scanInverse","abstract":"

    Set this to YES to allow scanning barcodes with inverted intensities","parent_name":"MBPdf417Recognizer"},"Classes/MBParserResult.html#/c:objc(cs)MBParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserResult"},"Classes/MBParserResult.html#/c:objc(cs)MBParserResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBParserResult"},"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/MBParser.html#/c:objc(cs)MBParser(py)baseResult":{"name":"baseResult","abstract":"

    Base parser result

    ","parent_name":"MBParser"},"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/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(im)init":{"name":"-init","abstract":"

    Creates MBOcrEngineOptions with default settings.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)documentType":{"name":"documentType","abstract":"

    Type of document scanned.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)imageProcessingEnabled":{"name":"imageProcessingEnabled","abstract":"

    Specifies if the image processing is performed on image

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)charWhitelist":{"name":"charWhitelist","abstract":"

    Whitelist of characters used in the OCR process. The set must contain MBOcrCharKey objects.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(py)code":{"name":"code","abstract":"

    Unicode value of the char. For example, for char ‘k’, you can use either ‘k’ or 107.

    ","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(py)font":{"name":"font","abstract":"

    Font of the char. Can be specific (for example MB_OCR_FONT_ARIAL), or any font (MB_OCR_FONT_ANY), which is the same","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(im)initWithCode:font:":{"name":"-initWithCode:font:","abstract":"

    Initializer which specifies the code and font of the char.

    ","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(cm)keyWithCode:font:":{"name":"+keyWithCode:font:","abstract":"

    Factory method for easier instantiation

    ","parent_name":"MBOcrCharKey"},"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/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/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(py)mrzLocation":{"name":"mrzLocation","abstract":"

    Returns the location of Machine Readable Zone in coordinate system of image in which detection was performed.

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(py)mrzPhysicalHeightInInches":{"name":"mrzPhysicalHeightInInches","abstract":"

    Returns the physical height in inches of Machine Readable Zone.

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)result":{"name":"result","abstract":"

    MRTD detector result

    ","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)detectFullDocument":{"name":"detectFullDocument","abstract":"

    Defines whether full document will be detected. If set to false, result will contain","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)useCardDetector":{"name":"useCardDetector","abstract":"

    Enable detection correction with card detector. When this option is enabled, after","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(im)setMrtdSpecifications:":{"name":"-setMrtdSpecifications:","abstract":"

    Sets the mrtd specifications. Mrtd specifications describe the images that should be returned by","parent_name":"MBMrtdDetector"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)moveable":{"name":"moveable","abstract":"

    Denotes if view finder is moveable. Viewfinder will move whenever something is detected and will return to default position if no object","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)portraitMargins":{"name":"portraitMargins","abstract":"

    Margins between overlay bounds and default corner positions while in portrait orientation.

    ","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)landscapeMargins":{"name":"landscapeMargins","abstract":"

    Margins between overlay bounds and default corner positions while in landscape orientation.

    ","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(im)resetPositions":{"name":"-resetPositions","abstract":"

    Resets the viewfinder position to it’s initial position.

    ","parent_name":"MBModernViewfinderSubview"},"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/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)verifyAndGetDefaultResourcesBundle":{"name":"+verifyAndGetDefaultResourcesBundle","abstract":"

    This method check existance of the default resources bundle Microblink.bundle,","parent_name":"MBMicroblinkApp"},"Classes/MBLicensePlatesParserResult.html#/c:objc(cs)MBLicensePlatesParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBLicensePlatesParserResult"},"Classes/MBLicensePlatesParserResult.html#/c:objc(cs)MBLicensePlatesParserResult(py)licensePlate":{"name":"licensePlate","abstract":"

    Returns the recognized license plate number or empty string if recognition failed.

    ","parent_name":"MBLicensePlatesParserResult"},"Classes/MBLicensePlatesParser.html#/c:objc(cs)MBLicensePlatesParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBLicensePlatesParser"},"Classes/MBLicensePlatesParser.html#/c:objc(cs)MBLicensePlatesParser(py)result":{"name":"result","abstract":"

    License plates parser result

    ","parent_name":"MBLicensePlatesParser"},"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 PPImage around CVImageBufferRef.

    ","parent_name":"MBImage"},"Classes/MBIbanParserResult.html#/c:objc(cs)MBIbanParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBIbanParserResult"},"Classes/MBIbanParserResult.html#/c:objc(cs)MBIbanParserResult(py)iban":{"name":"iban","abstract":"

    Returns the rparsed IBAN or empty string if recognition failed.

    ","parent_name":"MBIbanParserResult"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)result":{"name":"result","abstract":"

    Iban parser result

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)alwaysReturnPrefix":{"name":"alwaysReturnPrefix","abstract":"

    Should prefix (country code) always be returned.

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)countryCodeWhitelist":{"name":"countryCodeWhitelist","abstract":"

    Set of allowed country codes. If whitelist is defined, only IBANs with defined country codes","parent_name":"MBIbanParser"},"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/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithSettings:delegate:":{"name":"-initWithSettings:delegate:","abstract":"

    Designated initializer of the overlay. All scan settings from the recognizer runner will be removed and generated anew with passed MBScanElement array.

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithNibName:bundle:":{"name":"-initWithNibName:bundle:","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified with important UI events

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(im)initWithScanElements:":{"name":"-initWithScanElements:","abstract":"

    Designated initializer for settings.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)scanElements":{"name":"scanElements","abstract":"

    Array of MBScanElement objects which defines which Elements are scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)showOcrDots":{"name":"showOcrDots","abstract":"

    Property that enables showing of flashing dots over characters being scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)outputSuccessfulImages":{"name":"outputSuccessfulImages","abstract":"

    Property that enables outputting images of sucessful scans for each element scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)consecutiveScanThreshold":{"name":"consecutiveScanThreshold","abstract":"

    Number of times same parse result needs to be outputted to be considered valid

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBEmailParserResult.html#/c:objc(cs)MBEmailParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBEmailParserResult"},"Classes/MBEmailParserResult.html#/c:objc(cs)MBEmailParserResult(py)email":{"name":"email","abstract":"

    Returns the recognized email or empty string if recognition failed.

    ","parent_name":"MBEmailParserResult"},"Classes/MBEmailParser.html#/c:objc(cs)MBEmailParser(py)result":{"name":"result","abstract":"

    Email parser result

    ","parent_name":"MBEmailParser"},"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/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/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)initWithAspectRatio:physicalSizeInInches:":{"name":"-initWithAspectRatio:physicalSizeInInches:","abstract":"

    Use this initializer for specifiying a document format.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(cm)createFromPreset:":{"name":"+createFromPreset:","abstract":"

    Factory method which creates Document specification based on a preset

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)setPortraitAndLandscapeScale:":{"name":"-setPortraitAndLandscapeScale:","abstract":"

    Sets scale and scale tolerance that will be used when detecting document in both orientations.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)maxAngle":{"name":"maxAngle","abstract":"

    Maximum angle for document detection

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)portraitScale":{"name":"portraitScale","abstract":"

    Scale and scale tolerance that will be used when detecting document in portrait orientation.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)landscapeScale":{"name":"landscapeScale","abstract":"

    Scale and scale tolerance that will be used when detecting document in landscape orientation.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)scanningMode":{"name":"scanningMode","abstract":"

    Scanning mode that defines in which orientations can this document be detected.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)xRange":{"name":"xRange","abstract":"

    Percentage of possible document offset on x axis.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)yRange":{"name":"yRange","abstract":"

    Percentage of possible document offset on y axis.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)physicalSizeInInches":{"name":"physicalSizeInInches","abstract":"

    Physical size of document in inches

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentOverlaySettings.html#/c:objc(cs)MBDocumentOverlaySettings(py)viewfinderMoveable":{"name":"viewfinderMoveable","abstract":"

    Undocumented

    ","parent_name":"MBDocumentOverlaySettings"},"Classes/MBDocumentDetectorResult.html#/c:objc(cs)MBDocumentDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentDetectorResult"},"Classes/MBDocumentDetectorResult.html#/c:objc(cs)MBDocumentDetectorResult(py)aspectRatio":{"name":"aspectRatio","abstract":"

    Aspect ratio of detected document.

    ","parent_name":"MBDocumentDetectorResult"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(im)initWithDocumentSpecifications:":{"name":"-initWithDocumentSpecifications:","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)result":{"name":"result","abstract":"

    Document detector result

    ","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)documentSpecifications":{"name":"documentSpecifications","abstract":"

    Document specifications describe the documents that should be detected with","parent_name":"MBDocumentDetector"},"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/MBDetectorResult.html#/c:objc(cs)MBDetectorResult(py)detectionCode":{"name":"detectionCode","abstract":"

    Undocumented

    ","parent_name":"MBDetectorResult"},"Classes/MBDetectorResult.html#/c:objc(cs)MBDetectorResult(py)detectionStatus":{"name":"detectionStatus","abstract":"

    Undocumented

    ","parent_name":"MBDetectorResult"},"Classes/MBDetectorRecognizerResult.html#/c:objc(cs)MBDetectorRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizerResult"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(im)initWithQuadWithSizeDetector:":{"name":"-initWithQuadWithSizeDetector:","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)result":{"name":"result","abstract":"

    Detector recognizer results

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)allowFlipped":{"name":"allowFlipped","abstract":"

    Set this to true to enable recognition of document also in upside down direction.","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)detector":{"name":"detector","abstract":"

    Returns the detector that will be used for performing the document detection during recognition

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetector.html#/c:objc(cs)MBDetector(py)baseResult":{"name":"baseResult","abstract":"

    Base detector result

    ","parent_name":"MBDetector"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrPostprocessorNmsThreshold":{"name":"deepOcrPostprocessorNmsThreshold","abstract":"

    Returns or sets nms threshold for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrPostprocessorScoreThreshold":{"name":"deepOcrPostprocessorScoreThreshold","abstract":"

    Returns or sets score threshold for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrModel":{"name":"deepOcrModel","abstract":"

    Returns or sets model for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrModelString":{"name":"deepOcrModelString","abstract":"

    Returns or sets model for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"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/MBDateParserResult.html#/c:objc(cs)MBDateParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateParserResult"},"Classes/MBDateParserResult.html#/c:objc(cs)MBDateParserResult(py)date":{"name":"date","abstract":"

    Extracted date.

    ","parent_name":"MBDateParserResult"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(py)result":{"name":"result","abstract":"

    Date parser result

    ","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)setDateFormats:":{"name":"-setDateFormats:","abstract":"

    Specifies the date formats that will be accepted by date parser. By default, all available","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)setDateSeparatorChars:":{"name":"-setDateSeparatorChars:","abstract":"

    Specifies the date separator characters between date parts (day, month, year) that will be","parent_name":"MBDateParser"},"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":"

    Undocumented

    ","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/MBBlinkInputRecognizerResult.html#/c:objc(cs)MBBlinkInputRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkInputRecognizerResult"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(im)initWithProcessors:":{"name":"-initWithProcessors:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkInputRecognizer"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(py)processors":{"name":"processors","abstract":"

    Getting array of readonly processors

    ","parent_name":"MBBlinkInputRecognizer"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(py)result":{"name":"result","abstract":"

    BlinkInput recognizer results

    ","parent_name":"MBBlinkInputRecognizer"},"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/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)minimalLineHeight":{"name":"minimalLineHeight","abstract":"

    Minimal height of the line of text given in pixels. All chars smaller than this value will be ignored.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)maximalLineHeight":{"name":"maximalLineHeight","abstract":"

    Maximal height of the line of text given in pixels.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)maxCharsExpected":{"name":"maxCharsExpected","abstract":"

    Maximal chars expected on the image.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)colorDropoutEnabled":{"name":"colorDropoutEnabled","abstract":"

    Specifies if the additional image processing which drops the background colors should be performed.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)data":{"name":"-data","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)stringData":{"name":"-stringData","abstract":"

    Retrieves string content of scanned data

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)isUncertain":{"name":"-isUncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(cm)toTypeName:":{"name":"+toTypeName:","abstract":"

    Method which gives string representation for a given PPBarcodeType enum value.

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)barcodeType":{"name":"barcodeType","abstract":"

    Type of the barcode scanned

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)result":{"name":"result","abstract":"

    Barcode recognizer results

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanAztec":{"name":"scanAztec","abstract":"

    Set this to YES to scan Aztec 2D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanCode128":{"name":"scanCode128","abstract":"

    Set this to YES to scan Code 128 1D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanCode39":{"name":"scanCode39","abstract":"

    Set this to YES to scan Code 39 1D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanDataMatrix":{"name":"scanDataMatrix","abstract":"

    Set this to YES to scan DataMatrix 2D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanEAN13":{"name":"scanEAN13","abstract":"

    Set this to YES to scan EAN 13 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanEAN8":{"name":"scanEAN8","abstract":"

    Set this to YES to scan EAN8 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanITF":{"name":"scanITF","abstract":"

    Set this to YES to scan ITF barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanQR":{"name":"scanQR","abstract":"

    Set this to YES to scan QR barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUPCA":{"name":"scanUPCA","abstract":"

    Set this to YES to scan UPCA barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUPCE":{"name":"scanUPCE","abstract":"

    Set this to YES to scan UPCE barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanPdf417":{"name":"scanPdf417","abstract":"

    Set this to YES to scan Pdf417 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)useSlowerThoroughScan":{"name":"useSlowerThoroughScan","abstract":"

    Set this to YES to allow slower, but better image processing.

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)autoScaleDetection":{"name":"autoScaleDetection","abstract":"

    Allow enabling the autodetection of image scale when scanning barcodes.","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)readCode39AsExtendedData":{"name":"readCode39AsExtendedData","abstract":"

    Enable reading code39 barcode contents as extended data. For more information about code39","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanInverse":{"name":"scanInverse","abstract":"

    Set this to YES to allow scanning barcodes with inverted intensities","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)allowNullQuietZone":{"name":"allowNullQuietZone","abstract":"

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

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlaySettings.html#/c:objc(cs)MBBarcodeOverlaySettings(py)displayBarcodeDots":{"name":"displayBarcodeDots","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeOverlaySettings"},"Classes/MBBarcodeOverlaySettings.html#/c:objc(cs)MBBarcodeOverlaySettings(py)displayViewfinder":{"name":"displayViewfinder","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeOverlaySettings"},"Classes/MBAmountParserResult.html#/c:objc(cs)MBAmountParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBAmountParserResult"},"Classes/MBAmountParserResult.html#/c:objc(cs)MBAmountParserResult(py)amount":{"name":"amount","abstract":"

    Returns the recognized amount number or empty string if recognition failed.

    ","parent_name":"MBAmountParserResult"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)result":{"name":"result","abstract":"

    Amount parser result

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowNegativeAmounts":{"name":"allowNegativeAmounts","abstract":"

    Indicates whether negative values are accepted as valid amounts.","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowSpaceSeparators":{"name":"allowSpaceSeparators","abstract":"

    Indicates whether amounts with space separators between groups of digits(thousands) are allowed.

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowMissingDecimals":{"name":"allowMissingDecimals","abstract":"

    Indicates whether amounts without decimal are accepted as valid. For example 1.465 is","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)arabicIndicMode":{"name":"arabicIndicMode","abstract":"

    Indicates whether Arabic-Indic mode is enabled. In Arabic-Indic mode parser can recognize","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html":{"name":"MBAmountParser","abstract":"

    MBAmountParser is used for extracting amount from OCR result

    "},"Classes/MBAmountParserResult.html":{"name":"MBAmountParserResult","abstract":"

    MBAmountParser is used for extracting amount from OCR result

    "},"Classes/MBBarcodeOverlaySettings.html":{"name":"MBBarcodeOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBarcodeOverlayViewController.html":{"name":"MBBarcodeOverlayViewController","abstract":"

    Undocumented

    "},"Classes/MBBarcodeRecognizer.html":{"name":"MBBarcodeRecognizer","abstract":"

    MBBarcodeRecognizer is used for scanning most of 1D barcode formats, and 2D format"},"Classes/MBBarcodeRecognizerResult.html":{"name":"MBBarcodeRecognizerResult","abstract":"

    Result of MBBarcodeRecognizer; is used for scanning most of 1D barcode formats, and 2D format"},"Classes/MBBaseOcrEngineOptions.html":{"name":"MBBaseOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"Classes/MBBaseOcrOverlaySettings.html":{"name":"MBBaseOcrOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBaseOverlaySettings.html":{"name":"MBBaseOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes.html#/c:objc(cs)MBBaseOverlayViewController":{"name":"MBBaseOverlayViewController","abstract":"

    Common base class for default overlay view controllers

    "},"Classes/MBBlinkInputRecognizer.html":{"name":"MBBlinkInputRecognizer","abstract":"

    A recognizer for BlinkInput API and general OCR recognition

    "},"Classes/MBBlinkInputRecognizerResult.html":{"name":"MBBlinkInputRecognizerResult","abstract":"

    A recognizer result for BlinkInput API and general OCR recognition

    "},"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/MBDateParser.html":{"name":"MBDateParser","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"Classes/MBDateParserResult.html":{"name":"MBDateParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"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/MBDeepOcrEngineOptions.html":{"name":"MBDeepOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"Classes/MBDetector.html":{"name":"MBDetector","abstract":"

    Base class for all detectors

    "},"Classes/MBDetectorRecognizer.html":{"name":"MBDetectorRecognizer","abstract":"

    Recognizer for scanning generic documents using custom MBDetector.

    "},"Classes/MBDetectorRecognizerResult.html":{"name":"MBDetectorRecognizerResult","abstract":"

    Result of MBDetectorRecognizer

    "},"Classes/MBDetectorResult.html":{"name":"MBDetectorResult","abstract":"

    Base class for all detectors results

    "},"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/MBDocumentDetector.html":{"name":"MBDocumentDetector","abstract":"

    Detector that can perform detection of card documents, cheques, papers, etc.

    "},"Classes/MBDocumentDetectorResult.html":{"name":"MBDocumentDetectorResult","abstract":"

    Detector that can perform detection of card documents, cheques, papers, etc.

    "},"Classes/MBDocumentOverlaySettings.html":{"name":"MBDocumentOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentSpecification.html":{"name":"MBDocumentSpecification","abstract":"

    Document class describes a document which is being detected by DocumentDetector."},"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/MBEmailParser.html":{"name":"MBEmailParser","abstract":"

    MBEmailParser is used for parsing emails

    "},"Classes/MBEmailParserResult.html":{"name":"MBEmailParserResult","abstract":"

    MBEmailParser is used for parsing emails

    "},"Classes.html#/c:objc(cs)MBEntity":{"name":"MBEntity","abstract":"

    Base class for all entities processors, recognizers, detectors…

    "},"Classes/MBFieldByFieldOverlaySettings.html":{"name":"MBFieldByFieldOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBFieldByFieldOverlayViewController.html":{"name":"MBFieldByFieldOverlayViewController","abstract":"

    View Controller responsible for view hierarchy for Form OCR scannning."},"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/MBIbanParser.html":{"name":"MBIbanParser","abstract":"

    MBAmountParser that can extract IBAN (International Bank Account Number) from OCR result.

    "},"Classes/MBIbanParserResult.html":{"name":"MBIbanParserResult","abstract":"

    MBAmountParser that can extract IBAN (International Bank Account Number) from OCR result.

    "},"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/MBLicensePlatesParser.html":{"name":"MBLicensePlatesParser","abstract":"

    MBLicensePlatesParser is used for parsing license plates

    "},"Classes/MBLicensePlatesParserResult.html":{"name":"MBLicensePlatesParserResult","abstract":"

    MBLicensePlatesParser is used for parsing license plates

    "},"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/MBModernViewfinderSubview.html":{"name":"MBModernViewfinderSubview","abstract":"

    Overlay subview presenting the status of detection."},"Classes/MBMrtdDetector.html":{"name":"MBMrtdDetector","abstract":"

    Detector that can perform detection of Machine Readable Travel Documents (MRTD).

    "},"Classes/MBMrtdDetectorResult.html":{"name":"MBMrtdDetectorResult","abstract":"

    Detector that can perform detection of Machine Readable Travel Documents (MRTD).

    "},"Classes/MBMrtdSpecification.html":{"name":"MBMrtdSpecification","abstract":"

    Mrtd class describes a document which is being detected by MrtdDetector."},"Classes/MBNoUpScalingDewarpPolicy.html":{"name":"MBNoUpScalingDewarpPolicy","abstract":"

    No upscaling dewarp policy. Dewarp height will be calculated in a way"},"Classes/MBOcrCharKey.html":{"name":"MBOcrCharKey","abstract":"

    Class representing a char in specific font.

    "},"Classes/MBOcrEngineOptions.html":{"name":"MBOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"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.html#/c:objc(cs)MBOcrResultSubview":{"name":"MBOcrResultSubview","abstract":"

    Overlay subview presenting status of OCR detection. OCR results are displayed as green characters over detected locations.

    "},"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/MBParser.html":{"name":"MBParser","abstract":"

    Base class for all parsers

    "},"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/MBParserResult.html":{"name":"MBParserResult","abstract":"

    Base class for all parser results

    "},"Classes/MBPdf417Recognizer.html":{"name":"MBPdf417Recognizer","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBPdf417RecognizerResult.html":{"name":"MBPdf417RecognizerResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"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/MBQuadDetector.html":{"name":"MBQuadDetector","abstract":"

    Base class for all detectors that are used for MBQuadrangle detection.

    "},"Classes/MBQuadDetectorResult.html":{"name":"MBQuadDetectorResult","abstract":"

    Base class for all detectors that are used for MBQuadrangle detection.

    "},"Classes/MBQuadWithSizeDetector.html":{"name":"MBQuadWithSizeDetector","abstract":"

    Base class for all detectors that are used for MBQuadrangle"},"Classes/MBQuadWithSizeDetectorResult.html":{"name":"MBQuadWithSizeDetectorResult","abstract":"

    Base class for all detectors that are used for MBQuadrangle"},"Classes/MBQuadrangle.html":{"name":"MBQuadrangle","abstract":"

    Class represents the quadrangle (arbitrary geometric object with 4 different corner points

    "},"Classes/MBRawParser.html":{"name":"MBRawParser","abstract":"

    MBRawParser that simply returns the string version of raw OCR result, without performing"},"Classes/MBRawParserResult.html":{"name":"MBRawParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"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/MBRegexParser.html":{"name":"MBRegexParser","abstract":"

    Represents a parser which parses OCR result according to given regular expression."},"Classes/MBRegexParserResult.html":{"name":"MBRegexParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"Classes/MBScanElement.html":{"name":"MBScanElement","abstract":"

    The easiest way to UI for Ocr scanning is by specifying the MBScanElements.

    "},"Classes/MBSimNumberRecognizer.html":{"name":"MBSimNumberRecognizer","abstract":"

    Recognizer that can perform recognition of barcodes on SIM packaging.

    "},"Classes/MBSimNumberRecognizerResult.html":{"name":"MBSimNumberRecognizerResult","abstract":"

    Recognizer that can perform recognition of barcodes on SIM packaging.

    "},"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/MBTopUpParser.html":{"name":"MBTopUpParser","abstract":"

    MBTopUpParser is used for parsing Top Up numbers

    "},"Classes/MBTopUpParserResult.html":{"name":"MBTopUpParserResult","abstract":"

    MBTopUpParser is used for parsing Top Up numbers

    "},"Classes/MBViewControllerFactory.html":{"name":"MBViewControllerFactory","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBVinParser.html":{"name":"MBVinParser","abstract":"

    MBVinParser is used for parsing VIN numbers

    "},"Classes/MBVinParserResult.html":{"name":"MBVinParserResult","abstract":"

    MBVinParser is used for parsing VIN numbers

    "},"Classes/MBVinRecognizer.html":{"name":"MBVinRecognizer","abstract":"

    Recognizer that can perform recognition of VINs (Vehicle Identification Number).

    "},"Classes/MBVinRecognizerResult.html":{"name":"MBVinRecognizerResult","abstract":"

    Recognizer that can perform recognition of VINs (Vehicle Identification Number).

    "},"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/_MBScale.html#/c:@S@_MBScale@FI@scale":{"name":"scale","abstract":"

    Undocumented

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

    Undocumented

    ","parent_name":"_MBScale"},"Structs/_MBRange.html#/c:@S@_MBRange@FI@start":{"name":"start","abstract":"

    Undocumented

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

    Undocumented

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

    Struct which defines a range on the image

    "},"Structs/_MBScale.html":{"name":"_MBScale","abstract":"

    Struct which defines a scale which detector searches on the image

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

    Method which creates a range structure

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

    Method which creates a scale structure

    "},"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

    "},"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/MBScale/_MBScale.html#/c:@S@_MBScale@FI@scale":{"name":"scale","abstract":"

    Undocumented

    ","parent_name":"_MBScale"},"Type Definitions/MBScale/_MBScale.html#/c:@S@_MBScale@FI@tolerance":{"name":"tolerance","abstract":"

    Undocumented

    ","parent_name":"_MBScale"},"Type Definitions/MBScale/_MBScale.html":{"name":"_MBScale","abstract":"

    Struct which defines a scale which detector searches on the image

    ","parent_name":"MBScale"},"Type Definitions/MBRange/_MBRange.html#/c:@S@_MBRange@FI@start":{"name":"start","abstract":"

    Undocumented

    ","parent_name":"_MBRange"},"Type Definitions/MBRange/_MBRange.html#/c:@S@_MBRange@FI@stop":{"name":"stop","abstract":"

    Undocumented

    ","parent_name":"_MBRange"},"Type Definitions/MBRange/_MBRange.html":{"name":"_MBRange","abstract":"

    Struct which defines a range on the image

    ","parent_name":"MBRange"},"Type Definitions.html#/c:MBDateParser.h@T@MBDateFormatArray":{"name":"MBDateFormatArray","abstract":"

    Undocumented

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

    Undocumented

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

    Undocumented

    "},"Type Definitions/MBScale.html":{"name":"MBScale","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.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/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/MBOcrLayoutSubview.html#/c:objc(pl)MBOcrLayoutSubview(im)ocrLayoutObtained:withIdentifier:":{"name":"-ocrLayoutObtained:withIdentifier:","abstract":"

    This method should be called when MBOcrLayout is obtained and needs to be drawn/redrawn.

    ","parent_name":"MBOcrLayoutSubview"},"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/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/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/MBFieldByFieldOverlayViewControllerDelegate.html#/c:objc(pl)MBFieldByFieldOverlayViewControllerDelegate(im)fieldByFieldOverlayViewControllerWillClose:":{"name":"-fieldByFieldOverlayViewControllerWillClose:","abstract":"

    Called when Overlay will close. This can happen if the user pressed close button

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

    Called when Scanning finishes and Overlay will dissapear.

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

    Called when user pressed the help button on the overlay.

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

    Outputs back each image processed by the SDK.

    ","parent_name":"MBFieldByFieldOverlayViewControllerDelegate"},"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/MBBarcodeOverlayViewControllerDelegate.html#/c:objc(pl)MBBarcodeOverlayViewControllerDelegate(im)barcodeOverlayViewControllerDidFinishScanning:state:":{"name":"-barcodeOverlayViewControllerDidFinishScanning:state:","abstract":"

    Scanning library did output scanning results

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

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

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

    Protocol for obtaining scanning results

    "},"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/MBFieldByFieldOverlayViewControllerDelegate.html":{"name":"MBFieldByFieldOverlayViewControllerDelegate","abstract":"

    Protocol for observing important events with scanning

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Protocol for processing MBOcrLayout. Subviews implementing this protocol process and draw layout data on the screen (e.g. dots or OCR characters)

    "},"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/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/MBTopUpPreset.html#/c:@E@MBTopUpPreset@MBTopUp123":{"name":"MBTopUp123","abstract":"

    For top ups which begin with 123 prefix and USSD code length is 14

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

    For top ups which begin with 103 and USSD code length is 14

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

    For top ups which begin with 131 and USSD code length is 13

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

    For top ups with any prefix and USSD code length from interval {[13, 16]}

    ","parent_name":"MBTopUpPreset"},"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/MBParserResultState.html#/c:@E@MBParserResultState@MBParserResultStateEmpty":{"name":"MBParserResultStateEmpty","abstract":"

    Empty

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

    Uncertain

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

    Valid

    ","parent_name":"MBParserResultState"},"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/PPDocumentType.html#/c:@E@PPDocumentType@PPBlinkOCRDocumentType":{"name":"PPBlinkOCRDocumentType","abstract":"

    Document type for latin documents used with BlinkOCR recognizer

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

    Document type for MICR font

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

    Document type for Arabic characters

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

    Document type for handwriting

    ","parent_name":"PPDocumentType"},"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/MBDocumentSpecificationPreset.html#/c:@E@MBDocumentSpecificationPreset@MBDocumentSpecificationId1Card":{"name":"MBDocumentSpecificationId1Card","abstract":"

    Preset for detecting ID1 cards

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

    Preset for detecting ID2 cards

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

    Preset for detecting cheques

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

    Preset for detecting A4 documents in portrait

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

    Preset for detecting A4 documents in landscape

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

    Preset for detecting vertical ID1 cards

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

    Preset for detecting vertical ID1 cards

    ","parent_name":"MBDocumentSpecificationPreset"},"Enums/MBScanningMode.html#/c:@E@MBScanningMode@MBScanningModeAuto":{"name":"MBScanningModeAuto","abstract":"

    Detects document in both directions

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

    Detects document in landscape direction

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

    Detects document in portrait direction

    ","parent_name":"MBScanningMode"},"Enums/MBDetectionCode.html#/c:@E@MBDetectionCode@MBDetectionCodeFail":{"name":"MBDetectionCodeFail","abstract":"

    Object detection has failed.

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

    Object was detected partially. Only some PhotoPay detectors support this.

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

    Object detection has succeded.

    ","parent_name":"MBDetectionCode"},"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/MBDeepOcrModel.html#/c:@E@MBDeepOcrModel@MBDeepOcrModelBlinkInput":{"name":"MBDeepOcrModelBlinkInput","abstract":"

    Deep OCR model for Blink Input

    ","parent_name":"MBDeepOcrModel"},"Enums/MBDateFormat.html#/c:@E@MBDateFormat@MBDateFormatDDMMYYYY":{"name":"MBDateFormatDDMMYYYY","abstract":"

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

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

    Undocumented

    ","parent_name":"MBDateFormat"},"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/MBBarcodeType.html#/c:@E@MBBarcodeType@MBBarcodeNone":{"name":"MBBarcodeNone","abstract":"

    Undocumented

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

    QR code

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

    Data Matrix

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

    UPCE

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

    UPCA

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

    EAN 8

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

    EAN 13

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

    Code 128

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

    Code 39

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

    ITF

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

    Code 39

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

    PDF 417

    ","parent_name":"MBBarcodeType"},"Enums/MBBarcodeType.html":{"name":"MBBarcodeType","abstract":"

    Enumeration of possible barcode formats

    "},"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/MBDateFormat.html":{"name":"MBDateFormat","abstract":"

    Available date formats for date parser. To activate parsing of dates with month names in"},"Enums/MBDeepOcrModel.html":{"name":"MBDeepOcrModel","abstract":"

    Type of the document which recognizer scans

    "},"Enums/MBDetectionStatus.html":{"name":"MBDetectionStatus","abstract":"

    Status of the object detection in Microblink SDK

    "},"Enums/MBDetectionCode.html":{"name":"MBDetectionCode","abstract":"

    Enum for type of detection status.

    "},"Enums/MBScanningMode.html":{"name":"MBScanningMode","abstract":"

    Enum of different scanning modes: Landscape, Portrait and Auto(both)

    "},"Enums/MBDocumentSpecificationPreset.html":{"name":"MBDocumentSpecificationPreset","abstract":"

    Presets which can be used to instantiate document specification for a specific document format

    "},"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/PPDocumentType.html":{"name":"PPDocumentType","abstract":"

    Type of the document which recognizer scans

    "},"Enums/MBOcrFont.html":{"name":"MBOcrFont","abstract":"

    A list of fonts supported by BlinkOCR

    "},"Enums/MBParserResultState.html":{"name":"MBParserResultState","abstract":"

    Enumeration of posibble parser result state

    "},"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/MBTopUpPreset.html":{"name":"MBTopUpPreset","abstract":"

    Enumeration of posibble top up presets

    "},"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/MBVinRecognizerResult.html#/c:objc(cs)MBVinRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinRecognizerResult"},"Classes/MBVinRecognizerResult.html#/c:objc(cs)MBVinRecognizerResult(py)vin":{"name":"vin","abstract":"

    Returns the recognized VIN or empty string if recognition failed.

    ","parent_name":"MBVinRecognizerResult"},"Classes/MBVinRecognizer.html#/c:objc(cs)MBVinRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinRecognizer"},"Classes/MBVinRecognizer.html#/c:objc(cs)MBVinRecognizer(py)result":{"name":"result","abstract":"

    Vin recognizer result

    ","parent_name":"MBVinRecognizer"},"Classes/MBVinParserResult.html#/c:objc(cs)MBVinParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinParserResult"},"Classes/MBVinParserResult.html#/c:objc(cs)MBVinParserResult(py)vin":{"name":"vin","abstract":"

    Returns the recognized VIN number or empty string if recognition failed.

    ","parent_name":"MBVinParserResult"},"Classes/MBVinParser.html#/c:objc(cs)MBVinParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBVinParser"},"Classes/MBVinParser.html#/c:objc(cs)MBVinParser(py)result":{"name":"result","abstract":"

    Vin parser result

    ","parent_name":"MBVinParser"},"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/MBTopUpParserResult.html#/c:objc(cs)MBTopUpParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTopUpParserResult"},"Classes/MBTopUpParserResult.html#/c:objc(cs)MBTopUpParserResult(py)topUp":{"name":"topUp","abstract":"

    Returns the recognized Top Up number or empty string if recognition failed.

    ","parent_name":"MBTopUpParserResult"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)result":{"name":"result","abstract":"

    Top Up parser result

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)allowNoPrefix":{"name":"allowNoPrefix","abstract":"

    Indicates whether USSD codes without prefix are allowed.

    ","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(py)returnCodeWithoutPrefix":{"name":"returnCodeWithoutPrefix","abstract":"

    Indicates whether digts prefix and # at the end of scanned USSD code will","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)setTopUpPreset:":{"name":"-setTopUpPreset:","abstract":"

    Sets the top up prefix and USSD code length based on the given MBTopUpPreset. Only","parent_name":"MBTopUpParser"},"Classes/MBTopUpParser.html#/c:objc(cs)MBTopUpParser(im)setPrefix:andUssdCodeLength:":{"name":"-setPrefix:andUssdCodeLength:","abstract":"

    Sets the given top up prefix and USSD code length. Only top ups with the chosen prefix and","parent_name":"MBTopUpParser"},"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/MBSimNumberRecognizerResult.html#/c:objc(cs)MBSimNumberRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSimNumberRecognizerResult"},"Classes/MBSimNumberRecognizerResult.html#/c:objc(cs)MBSimNumberRecognizerResult(py)simNumber":{"name":"simNumber","abstract":"

    Returns the recognized SIM number from barcode or empty string if recognition failed.

    ","parent_name":"MBSimNumberRecognizerResult"},"Classes/MBSimNumberRecognizer.html#/c:objc(cs)MBSimNumberRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBSimNumberRecognizer"},"Classes/MBSimNumberRecognizer.html#/c:objc(cs)MBSimNumberRecognizer(py)result":{"name":"result","abstract":"

    Sim number recognizer results

    ","parent_name":"MBSimNumberRecognizer"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(im)initWithIdentifier:parser:":{"name":"-initWithIdentifier:parser:","abstract":"

    Designated initializer, defines the unique identifier for this canned element, and Parser factory for it.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)identifier":{"name":"identifier","abstract":"

    Unique name of the element

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)parser":{"name":"parser","abstract":"

    Parser object which is reponsible scanning the text.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTitle":{"name":"localizedTitle","abstract":"

    Localized title (used in the Pivot control)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTooltip":{"name":"localizedTooltip","abstract":"

    Localized tooltip (used in the tooltip label above the viewfinder)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)keyboardType":{"name":"keyboardType","abstract":"

    Keyboard type used when editing

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)localizedTextfieldText":{"name":"localizedTextfieldText","abstract":"

    Localized initial UITextField text (used in field segment scanning text fields)

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanned":{"name":"scanned","abstract":"

    YES if the value was scanned, NO otherwise.","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)edited":{"name":"edited","abstract":"

    YES if the value was manually edited, NO otherwise.","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)value":{"name":"value","abstract":"

    Actual value for this element

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanningRegionWidth":{"name":"scanningRegionWidth","abstract":"

    Width of scanning region used in UI. Values are between 0.0 and 1.0 where 1.0 is whole screen width and 0.5 is half width.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)scanningRegionHeight":{"name":"scanningRegionHeight","abstract":"

    Height of scanning region used in UI. Values are between 0.0 and 1.0 where 1.0 is whole screen height and 0.5 is half height.

    ","parent_name":"MBScanElement"},"Classes/MBScanElement.html#/c:objc(cs)MBScanElement(py)successfulScanImage":{"name":"successfulScanImage","abstract":"

    Image of the scanned element.

    ","parent_name":"MBScanElement"},"Classes/MBRegexParserResult.html#/c:objc(cs)MBRegexParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRegexParserResult"},"Classes/MBRegexParserResult.html#/c:objc(cs)MBRegexParserResult(py)parsedString":{"name":"parsedString","abstract":"

    Returns string containing parsed OCR result according to given regular expression.

    ","parent_name":"MBRegexParserResult"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(im)initWithRegex:":{"name":"-initWithRegex:","abstract":"

    Initializes the regex parser

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)result":{"name":"result","abstract":"

    Regex parser result

    ","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)regex":{"name":"regex","abstract":"

    Defines regex that will be used to parse OCR data. Note that not all java regex features","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)useSieve":{"name":"useSieve","abstract":"

    Enable the usage of algorithm for combining consecutive OCR results between video frames","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)startWithWhitespace":{"name":"startWithWhitespace","abstract":"

    If set to YES, regex will not be matched if there is no whitespace before matched string.","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)endWithWhitespace":{"name":"endWithWhitespace","abstract":"

    If set to YES, regex will not be matched if there is no whitespace after matched string.","parent_name":"MBRegexParser"},"Classes/MBRegexParser.html#/c:objc(cs)MBRegexParser(py)ocrEngineOptions":{"name":"ocrEngineOptions","abstract":"

    Sets the OCR engine options used in Regex OCR parser.","parent_name":"MBRegexParser"},"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/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/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/MBRawParserResult.html#/c:objc(cs)MBRawParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRawParserResult"},"Classes/MBRawParserResult.html#/c:objc(cs)MBRawParserResult(py)rawText":{"name":"rawText","abstract":"

    Extracted date string.

    ","parent_name":"MBRawParserResult"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)result":{"name":"result","abstract":"

    License plates parser result

    ","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)useSieve":{"name":"useSieve","abstract":"

    Enable the usage of algorithm for combining consecutive OCR results between video frames","parent_name":"MBRawParser"},"Classes/MBRawParser.html#/c:objc(cs)MBRawParser(py)ocrEngineOptions":{"name":"ocrEngineOptions","abstract":"

    Sets the OCR engine options used in Regex OCR parser.","parent_name":"MBRawParser"},"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/MBQuadWithSizeDetectorResult.html#/c:objc(cs)MBQuadWithSizeDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadWithSizeDetectorResult"},"Classes/MBQuadWithSizeDetectorResult.html#/c:objc(cs)MBQuadWithSizeDetectorResult(py)physicalHeightInInches":{"name":"physicalHeightInInches","abstract":"

    Returns the physical height of the detected MBQuadrangle in inches.

    ","parent_name":"MBQuadWithSizeDetectorResult"},"Classes/MBQuadWithSizeDetector.html#/c:objc(cs)MBQuadWithSizeDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadWithSizeDetector"},"Classes/MBQuadWithSizeDetector.html#/c:objc(cs)MBQuadWithSizeDetector(py)quadWithSizeResult":{"name":"quadWithSizeResult","abstract":"

    Quad with size detector result

    ","parent_name":"MBQuadWithSizeDetector"},"Classes/MBQuadDetectorResult.html#/c:objc(cs)MBQuadDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadDetectorResult"},"Classes/MBQuadDetectorResult.html#/c:objc(cs)MBQuadDetectorResult(py)quadrangle":{"name":"quadrangle","abstract":"

    Returns the location of detected quadrilateral in coordinate system of image in which detection was performed.

    ","parent_name":"MBQuadDetectorResult"},"Classes/MBQuadDetector.html#/c:objc(cs)MBQuadDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBQuadDetector"},"Classes/MBQuadDetector.html#/c:objc(cs)MBQuadDetector(py)quadResult":{"name":"quadResult","abstract":"

    Quad detector result

    ","parent_name":"MBQuadDetector"},"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/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)rawData":{"name":"rawData","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)stringData":{"name":"stringData","abstract":"

    Retrieves string content of scanned data

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)uncertain":{"name":"uncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417RecognizerResult.html#/c:objc(cs)MBPdf417RecognizerResult(py)barcodeType":{"name":"barcodeType","abstract":"

    Type of the barcode scanned

    ","parent_name":"MBPdf417RecognizerResult"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)result":{"name":"result","abstract":"

    PDF417 recognizer results

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)nullQuietZoneAllowed":{"name":"nullQuietZoneAllowed","abstract":"

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

    ","parent_name":"MBPdf417Recognizer"},"Classes/MBPdf417Recognizer.html#/c:objc(cs)MBPdf417Recognizer(py)scanInverse":{"name":"scanInverse","abstract":"

    Set this to YES to allow scanning barcodes with inverted intensities","parent_name":"MBPdf417Recognizer"},"Classes/MBParserResult.html#/c:objc(cs)MBParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBParserResult"},"Classes/MBParserResult.html#/c:objc(cs)MBParserResult(py)resultState":{"name":"resultState","abstract":"

    Undocumented

    ","parent_name":"MBParserResult"},"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/MBParser.html#/c:objc(cs)MBParser(py)baseResult":{"name":"baseResult","abstract":"

    Base parser result

    ","parent_name":"MBParser"},"Classes/MBParser.html#/c:objc(cs)MBParser(py)required":{"name":"required","abstract":"

    Defines/returns whether the parser configured with this parser settings object will be required or optional.

    ","parent_name":"MBParser"},"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/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(im)init":{"name":"-init","abstract":"

    Creates MBOcrEngineOptions with default settings.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)documentType":{"name":"documentType","abstract":"

    Type of document scanned.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)minimalLineHeight":{"name":"minimalLineHeight","abstract":"

    Minimal height of the line of text given in pixels. All chars smaller than this value will be ignored.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)maximalLineHeight":{"name":"maximalLineHeight","abstract":"

    Maximal height of the line of text given in pixels.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)imageProcessingEnabled":{"name":"imageProcessingEnabled","abstract":"

    Specifies if the image processing is performed on image

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrEngineOptions.html#/c:objc(cs)MBOcrEngineOptions(py)charWhitelist":{"name":"charWhitelist","abstract":"

    Whitelist of characters used in the OCR process. The set must contain MBOcrCharKey objects.

    ","parent_name":"MBOcrEngineOptions"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(py)code":{"name":"code","abstract":"

    Unicode value of the char. For example, for char ‘k’, you can use either ‘k’ or 107.

    ","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(py)font":{"name":"font","abstract":"

    Font of the char. Can be specific (for example MB_OCR_FONT_ARIAL), or any font (MB_OCR_FONT_ANY), which is the same","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(im)initWithCode:font:":{"name":"-initWithCode:font:","abstract":"

    Initializer which specifies the code and font of the char.

    ","parent_name":"MBOcrCharKey"},"Classes/MBOcrCharKey.html#/c:objc(cs)MBOcrCharKey(cm)keyWithCode:font:":{"name":"+keyWithCode:font:","abstract":"

    Factory method for easier instantiation

    ","parent_name":"MBOcrCharKey"},"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/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/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(py)mrzLocation":{"name":"mrzLocation","abstract":"

    Returns the location of Machine Readable Zone in coordinate system of image in which detection was performed.

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetectorResult.html#/c:objc(cs)MBMrtdDetectorResult(py)mrzPhysicalHeightInInches":{"name":"mrzPhysicalHeightInInches","abstract":"

    Returns the physical height in inches of Machine Readable Zone.

    ","parent_name":"MBMrtdDetectorResult"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)result":{"name":"result","abstract":"

    MRTD detector result

    ","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)detectFullDocument":{"name":"detectFullDocument","abstract":"

    Defines whether full document will be detected. If set to false, result will contain","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(py)useCardDetector":{"name":"useCardDetector","abstract":"

    Enable detection correction with card detector. When this option is enabled, after","parent_name":"MBMrtdDetector"},"Classes/MBMrtdDetector.html#/c:objc(cs)MBMrtdDetector(im)setMrtdSpecifications:":{"name":"-setMrtdSpecifications:","abstract":"

    Sets the mrtd specifications. Mrtd specifications describe the images that should be returned by","parent_name":"MBMrtdDetector"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)moveable":{"name":"moveable","abstract":"

    Denotes if view finder is moveable. Viewfinder will move whenever something is detected and will return to default position if no object","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)portraitMargins":{"name":"portraitMargins","abstract":"

    Margins between overlay bounds and default corner positions while in portrait orientation.

    ","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(py)landscapeMargins":{"name":"landscapeMargins","abstract":"

    Margins between overlay bounds and default corner positions while in landscape orientation.

    ","parent_name":"MBModernViewfinderSubview"},"Classes/MBModernViewfinderSubview.html#/c:objc(cs)MBModernViewfinderSubview(im)resetPositions":{"name":"-resetPositions","abstract":"

    Resets the viewfinder position to it’s initial position.

    ","parent_name":"MBModernViewfinderSubview"},"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/MBLicensePlatesParserResult.html#/c:objc(cs)MBLicensePlatesParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBLicensePlatesParserResult"},"Classes/MBLicensePlatesParserResult.html#/c:objc(cs)MBLicensePlatesParserResult(py)licensePlate":{"name":"licensePlate","abstract":"

    Returns the recognized license plate number or empty string if recognition failed.

    ","parent_name":"MBLicensePlatesParserResult"},"Classes/MBLicensePlatesParser.html#/c:objc(cs)MBLicensePlatesParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBLicensePlatesParser"},"Classes/MBLicensePlatesParser.html#/c:objc(cs)MBLicensePlatesParser(py)result":{"name":"result","abstract":"

    License plates parser result

    ","parent_name":"MBLicensePlatesParser"},"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/MBIbanParserResult.html#/c:objc(cs)MBIbanParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBIbanParserResult"},"Classes/MBIbanParserResult.html#/c:objc(cs)MBIbanParserResult(py)iban":{"name":"iban","abstract":"

    Returns the rparsed IBAN or empty string if recognition failed.

    ","parent_name":"MBIbanParserResult"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)result":{"name":"result","abstract":"

    Iban parser result

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)alwaysReturnPrefix":{"name":"alwaysReturnPrefix","abstract":"

    Should prefix (country code) always be returned.

    ","parent_name":"MBIbanParser"},"Classes/MBIbanParser.html#/c:objc(cs)MBIbanParser(py)countryCodeWhitelist":{"name":"countryCodeWhitelist","abstract":"

    Set of allowed country codes. If whitelist is defined, only IBANs with defined country codes","parent_name":"MBIbanParser"},"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/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithSettings:delegate:":{"name":"-initWithSettings:delegate:","abstract":"

    Designated initializer of the overlay. All scan settings from the recognizer runner will be removed and generated anew with passed MBScanElement array.

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithNibName:bundle:":{"name":"-initWithNibName:bundle:","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(im)initWithCoder:":{"name":"-initWithCoder:","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlayViewController.html#/c:objc(cs)MBFieldByFieldOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate which is notified with important UI events

    ","parent_name":"MBFieldByFieldOverlayViewController"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(im)initWithScanElements:":{"name":"-initWithScanElements:","abstract":"

    Designated initializer for settings.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)scanElements":{"name":"scanElements","abstract":"

    Array of MBScanElement objects which defines which Elements are scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)showOcrDots":{"name":"showOcrDots","abstract":"

    Property that enables showing of flashing dots over characters being scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)outputSuccessfulImages":{"name":"outputSuccessfulImages","abstract":"

    Property that enables outputting images of sucessful scans for each element scanned.

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)consecutiveScanThreshold":{"name":"consecutiveScanThreshold","abstract":"

    Number of times same parse result needs to be outputted to be considered valid

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)scanResultViewColor":{"name":"scanResultViewColor","abstract":"

    Background color of successful scan result

    ","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)nextButtonDescriptionText":{"name":"nextButtonDescriptionText","abstract":"

    Returns/sets next button description text that is shown above next button","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBFieldByFieldOverlaySettings.html#/c:objc(cs)MBFieldByFieldOverlaySettings(py)nextButtonLastDescriptionText":{"name":"nextButtonLastDescriptionText","abstract":"

    Returns/sets next button description text that is shown above next button","parent_name":"MBFieldByFieldOverlaySettings"},"Classes/MBEmailParserResult.html#/c:objc(cs)MBEmailParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBEmailParserResult"},"Classes/MBEmailParserResult.html#/c:objc(cs)MBEmailParserResult(py)email":{"name":"email","abstract":"

    Returns the recognized email or empty string if recognition failed.

    ","parent_name":"MBEmailParserResult"},"Classes/MBEmailParser.html#/c:objc(cs)MBEmailParser(py)result":{"name":"result","abstract":"

    Email parser result

    ","parent_name":"MBEmailParser"},"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/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)initWithAspectRatio:physicalSizeInInches:":{"name":"-initWithAspectRatio:physicalSizeInInches:","abstract":"

    Use this initializer for specifiying a document format.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(cm)createFromPreset:":{"name":"+createFromPreset:","abstract":"

    Factory method which creates Document specification based on a preset

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(im)setPortraitAndLandscapeScale:":{"name":"-setPortraitAndLandscapeScale:","abstract":"

    Sets scale and scale tolerance that will be used when detecting document in both orientations.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)maxAngle":{"name":"maxAngle","abstract":"

    Maximum angle for document detection

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)portraitScale":{"name":"portraitScale","abstract":"

    Scale and scale tolerance that will be used when detecting document in portrait orientation.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)landscapeScale":{"name":"landscapeScale","abstract":"

    Scale and scale tolerance that will be used when detecting document in landscape orientation.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)scanningMode":{"name":"scanningMode","abstract":"

    Scanning mode that defines in which orientations can this document be detected.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)xRange":{"name":"xRange","abstract":"

    Percentage of possible document offset on x axis.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)yRange":{"name":"yRange","abstract":"

    Percentage of possible document offset on y axis.

    ","parent_name":"MBDocumentSpecification"},"Classes/MBDocumentSpecification.html#/c:objc(cs)MBDocumentSpecification(py)physicalSizeInInches":{"name":"physicalSizeInInches","abstract":"

    Physical size of document in inches

    ","parent_name":"MBDocumentSpecification"},"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/MBDocumentDetectorResult.html#/c:objc(cs)MBDocumentDetectorResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentDetectorResult"},"Classes/MBDocumentDetectorResult.html#/c:objc(cs)MBDocumentDetectorResult(py)aspectRatio":{"name":"aspectRatio","abstract":"

    Aspect ratio of detected document.

    ","parent_name":"MBDocumentDetectorResult"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(im)initWithDocumentSpecifications:":{"name":"-initWithDocumentSpecifications:","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)result":{"name":"result","abstract":"

    Document detector result

    ","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)numStableDetectionsThreshold":{"name":"numStableDetectionsThreshold","abstract":"

    Defines how many times the same document should be detected before the detector","parent_name":"MBDocumentDetector"},"Classes/MBDocumentDetector.html#/c:objc(cs)MBDocumentDetector(py)documentSpecifications":{"name":"documentSpecifications","abstract":"

    Document specifications describe the documents that should be detected with","parent_name":"MBDocumentDetector"},"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/MBDetectorResult.html#/c:objc(cs)MBDetectorResult(py)detectionCode":{"name":"detectionCode","abstract":"

    Undocumented

    ","parent_name":"MBDetectorResult"},"Classes/MBDetectorResult.html#/c:objc(cs)MBDetectorResult(py)detectionStatus":{"name":"detectionStatus","abstract":"

    Undocumented

    ","parent_name":"MBDetectorResult"},"Classes/MBDetectorRecognizerResult.html#/c:objc(cs)MBDetectorRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizerResult"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(im)initWithQuadWithSizeDetector:":{"name":"-initWithQuadWithSizeDetector:","abstract":"

    Undocumented

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)result":{"name":"result","abstract":"

    Detector recognizer results

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)allowFlipped":{"name":"allowFlipped","abstract":"

    Set this to true to enable recognition of document also in upside down direction.","parent_name":"MBDetectorRecognizer"},"Classes/MBDetectorRecognizer.html#/c:objc(cs)MBDetectorRecognizer(py)detector":{"name":"detector","abstract":"

    Returns the detector that will be used for performing the document detection during recognition

    ","parent_name":"MBDetectorRecognizer"},"Classes/MBDetector.html#/c:objc(cs)MBDetector(py)baseResult":{"name":"baseResult","abstract":"

    Base detector result

    ","parent_name":"MBDetector"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrPostprocessorNmsThreshold":{"name":"deepOcrPostprocessorNmsThreshold","abstract":"

    Returns or sets nms threshold for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrPostprocessorScoreThreshold":{"name":"deepOcrPostprocessorScoreThreshold","abstract":"

    Returns or sets score threshold for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrModel":{"name":"deepOcrModel","abstract":"

    Returns or sets model for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"Classes/MBDeepOcrEngineOptions.html#/c:objc(cs)MBDeepOcrEngineOptions(py)deepOcrModelString":{"name":"deepOcrModelString","abstract":"

    Returns or sets model for deep ocr postprocessing

    ","parent_name":"MBDeepOcrEngineOptions"},"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/MBDateParserResult.html#/c:objc(cs)MBDateParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateParserResult"},"Classes/MBDateParserResult.html#/c:objc(cs)MBDateParserResult(py)date":{"name":"date","abstract":"

    Extracted date.

    ","parent_name":"MBDateParserResult"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(py)result":{"name":"result","abstract":"

    Date parser result

    ","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)setDateFormats:":{"name":"-setDateFormats:","abstract":"

    Specifies the date formats that will be accepted by date parser. By default, all available","parent_name":"MBDateParser"},"Classes/MBDateParser.html#/c:objc(cs)MBDateParser(im)setDateSeparatorChars:":{"name":"-setDateSeparatorChars:","abstract":"

    Specifies the date separator characters between date parts (day, month, year) that will be","parent_name":"MBDateParser"},"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/MBBlinkInputRecognizerResult.html#/c:objc(cs)MBBlinkInputRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBlinkInputRecognizerResult"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(im)initWithProcessors:":{"name":"-initWithProcessors:","abstract":"

    Undocumented

    ","parent_name":"MBBlinkInputRecognizer"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(py)processors":{"name":"processors","abstract":"

    Getting array of readonly processors

    ","parent_name":"MBBlinkInputRecognizer"},"Classes/MBBlinkInputRecognizer.html#/c:objc(cs)MBBlinkInputRecognizer(py)result":{"name":"result","abstract":"

    BlinkInput recognizer results

    ","parent_name":"MBBlinkInputRecognizer"},"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/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)maxCharsExpected":{"name":"maxCharsExpected","abstract":"

    Maximal chars expected on the image.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBaseOcrEngineOptions.html#/c:objc(cs)MBBaseOcrEngineOptions(py)colorDropoutEnabled":{"name":"colorDropoutEnabled","abstract":"

    Specifies if the additional image processing which drops the background colors should be performed.

    ","parent_name":"MBBaseOcrEngineOptions"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)rawData":{"name":"rawData","abstract":"

    Byte array with result of the scan

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)stringData":{"name":"stringData","abstract":"

    Retrieves string content of scanned data

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)uncertain":{"name":"uncertain","abstract":"

    Flag indicating uncertain scanning data","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(cm)toTypeName:":{"name":"+toTypeName:","abstract":"

    Method which gives string representation for a given PPBarcodeType enum value.

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizerResult.html#/c:objc(cs)MBBarcodeRecognizerResult(py)barcodeType":{"name":"barcodeType","abstract":"

    Type of the barcode scanned

    ","parent_name":"MBBarcodeRecognizerResult"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)result":{"name":"result","abstract":"

    Barcode recognizer results

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanAztecCode":{"name":"scanAztecCode","abstract":"

    Set this to YES to scan Aztec 2D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanCode128":{"name":"scanCode128","abstract":"

    Set this to YES to scan Code 128 1D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanCode39":{"name":"scanCode39","abstract":"

    Set this to YES to scan Code 39 1D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanDataMatrix":{"name":"scanDataMatrix","abstract":"

    Set this to YES to scan DataMatrix 2D barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanEan13":{"name":"scanEan13","abstract":"

    Set this to YES to scan EAN 13 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanEan8":{"name":"scanEan8","abstract":"

    Set this to YES to scan EAN8 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanItf":{"name":"scanItf","abstract":"

    Set this to YES to scan ITF barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanQrCode":{"name":"scanQrCode","abstract":"

    Set this to YES to scan QR barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUpca":{"name":"scanUpca","abstract":"

    Set this to YES to scan UPCA barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUpce":{"name":"scanUpce","abstract":"

    Set this to YES to scan UPCE barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanPdf417":{"name":"scanPdf417","abstract":"

    Set this to YES to scan Pdf417 barcodes

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)slowerThoroughScan":{"name":"slowerThoroughScan","abstract":"

    Set this to YES to allow slower, but better image processing.

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)autoScaleDetection":{"name":"autoScaleDetection","abstract":"

    Allow enabling the autodetection of image scale when scanning barcodes.","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)readCode39AsExtendedData":{"name":"readCode39AsExtendedData","abstract":"

    Enable reading code39 barcode contents as extended data. For more information about code39","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanInverse":{"name":"scanInverse","abstract":"

    Set this to YES to allow scanning barcodes with inverted intensities","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)scanUncertain":{"name":"scanUncertain","abstract":"

    Set this to YES to scan even barcode not compliant with standards","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeRecognizer.html#/c:objc(cs)MBBarcodeRecognizer(py)nullQuietZoneAllowed":{"name":"nullQuietZoneAllowed","abstract":"

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

    ","parent_name":"MBBarcodeRecognizer"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(py)settings":{"name":"settings","abstract":"

    Common settings

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(py)delegate":{"name":"delegate","abstract":"

    Delegate

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlayViewController.html#/c:objc(cs)MBBarcodeOverlayViewController(im)initWithSettings:recognizerCollection:delegate:":{"name":"-initWithSettings:recognizerCollection:delegate:","abstract":"

    Designated intializer.

    ","parent_name":"MBBarcodeOverlayViewController"},"Classes/MBBarcodeOverlaySettings.html#/c:objc(cs)MBBarcodeOverlaySettings(py)displayBarcodeDots":{"name":"displayBarcodeDots","abstract":"

    If YES, viewfinder (4 corner markers) will move when payslip is detected

    ","parent_name":"MBBarcodeOverlaySettings"},"Classes/MBBarcodeOverlaySettings.html#/c:objc(cs)MBBarcodeOverlaySettings(py)displayViewfinder":{"name":"displayViewfinder","abstract":"

    If YES; view finder will be displayed

    ","parent_name":"MBBarcodeOverlaySettings"},"Classes/MBAmountParserResult.html#/c:objc(cs)MBAmountParserResult(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBAmountParserResult"},"Classes/MBAmountParserResult.html#/c:objc(cs)MBAmountParserResult(py)amount":{"name":"amount","abstract":"

    Returns the recognized amount number or empty string if recognition failed.

    ","parent_name":"MBAmountParserResult"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(im)init":{"name":"-init","abstract":"

    Undocumented

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)result":{"name":"result","abstract":"

    Amount parser result

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowNegativeAmounts":{"name":"allowNegativeAmounts","abstract":"

    Indicates whether negative values are accepted as valid amounts.","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowSpaceSeparators":{"name":"allowSpaceSeparators","abstract":"

    Indicates whether amounts with space separators between groups of digits(thousands) are allowed.

    ","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)allowMissingDecimals":{"name":"allowMissingDecimals","abstract":"

    Indicates whether amounts without decimal are accepted as valid. For example 1.465 is","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html#/c:objc(cs)MBAmountParser(py)arabicIndicMode":{"name":"arabicIndicMode","abstract":"

    Indicates whether Arabic-Indic mode is enabled. In Arabic-Indic mode parser can recognize","parent_name":"MBAmountParser"},"Classes/MBAmountParser.html":{"name":"MBAmountParser","abstract":"

    MBAmountParser is used for extracting amount from OCR result

    "},"Classes/MBAmountParserResult.html":{"name":"MBAmountParserResult","abstract":"

    MBAmountParser is used for extracting amount from OCR result

    "},"Classes/MBBarcodeOverlaySettings.html":{"name":"MBBarcodeOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBBarcodeOverlayViewController.html":{"name":"MBBarcodeOverlayViewController","abstract":"

    Undocumented

    "},"Classes/MBBarcodeRecognizer.html":{"name":"MBBarcodeRecognizer","abstract":"

    MBBarcodeRecognizer is used for scanning most of 1D barcode formats, and 2D format"},"Classes/MBBarcodeRecognizerResult.html":{"name":"MBBarcodeRecognizerResult","abstract":"

    Result of MBBarcodeRecognizer; is used for scanning most of 1D barcode formats, and 2D format"},"Classes/MBBaseOcrEngineOptions.html":{"name":"MBBaseOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"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/MBBlinkInputRecognizer.html":{"name":"MBBlinkInputRecognizer","abstract":"

    A recognizer for BlinkInput API and general OCR recognition

    "},"Classes/MBBlinkInputRecognizerResult.html":{"name":"MBBlinkInputRecognizerResult","abstract":"

    A recognizer result for BlinkInput API and general OCR recognition

    "},"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/MBDateParser.html":{"name":"MBDateParser","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"Classes/MBDateParserResult.html":{"name":"MBDateParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"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/MBDeepOcrEngineOptions.html":{"name":"MBDeepOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"Classes/MBDetector.html":{"name":"MBDetector","abstract":"

    Base class for all detectors

    "},"Classes/MBDetectorRecognizer.html":{"name":"MBDetectorRecognizer","abstract":"

    Recognizer for scanning generic documents using custom MBDetector.

    "},"Classes/MBDetectorRecognizerResult.html":{"name":"MBDetectorRecognizerResult","abstract":"

    Result of MBDetectorRecognizer

    "},"Classes/MBDetectorResult.html":{"name":"MBDetectorResult","abstract":"

    Base class for all detectors results

    "},"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/MBDocumentDetector.html":{"name":"MBDocumentDetector","abstract":"

    Detector that can perform detection of card documents, cheques, papers, etc.

    "},"Classes/MBDocumentDetectorResult.html":{"name":"MBDocumentDetectorResult","abstract":"

    Detector that can perform detection of card documents, cheques, papers, etc.

    "},"Classes/MBDocumentOverlaySettings.html":{"name":"MBDocumentOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBDocumentSpecification.html":{"name":"MBDocumentSpecification","abstract":"

    Document class describes a document which is being detected by DocumentDetector."},"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/MBEmailParser.html":{"name":"MBEmailParser","abstract":"

    MBEmailParser is used for parsing emails

    "},"Classes/MBEmailParserResult.html":{"name":"MBEmailParserResult","abstract":"

    MBEmailParser is used for parsing emails

    "},"Classes.html#/c:objc(cs)MBEntity":{"name":"MBEntity","abstract":"

    Base class for all entities processors, recognizers, detectors…

    "},"Classes/MBFieldByFieldOverlaySettings.html":{"name":"MBFieldByFieldOverlaySettings","abstract":"

    Settings class containing UI information

    "},"Classes/MBFieldByFieldOverlayViewController.html":{"name":"MBFieldByFieldOverlayViewController","abstract":"

    View Controller responsible for view hierarchy for Form OCR scannning."},"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/MBIbanParser.html":{"name":"MBIbanParser","abstract":"

    MBAmountParser that can extract IBAN (International Bank Account Number) from OCR result.

    "},"Classes/MBIbanParserResult.html":{"name":"MBIbanParserResult","abstract":"

    MBAmountParser that can extract IBAN (International Bank Account Number) from OCR result.

    "},"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/MBLicensePlatesParser.html":{"name":"MBLicensePlatesParser","abstract":"

    MBLicensePlatesParser is used for parsing license plates

    "},"Classes/MBLicensePlatesParserResult.html":{"name":"MBLicensePlatesParserResult","abstract":"

    MBLicensePlatesParser is used for parsing license plates

    "},"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/MBModernViewfinderSubview.html":{"name":"MBModernViewfinderSubview","abstract":"

    Overlay subview presenting the status of detection."},"Classes/MBMrtdDetector.html":{"name":"MBMrtdDetector","abstract":"

    Detector that can perform detection of Machine Readable Travel Documents (MRTD).

    "},"Classes/MBMrtdDetectorResult.html":{"name":"MBMrtdDetectorResult","abstract":"

    Detector that can perform detection of Machine Readable Travel Documents (MRTD).

    "},"Classes/MBMrtdSpecification.html":{"name":"MBMrtdSpecification","abstract":"

    Mrtd class describes a document which is being detected by MrtdDetector."},"Classes/MBNoUpScalingDewarpPolicy.html":{"name":"MBNoUpScalingDewarpPolicy","abstract":"

    No upscaling dewarp policy. Dewarp height will be calculated in a way"},"Classes/MBOcrCharKey.html":{"name":"MBOcrCharKey","abstract":"

    Class representing a char in specific font.

    "},"Classes/MBOcrEngineOptions.html":{"name":"MBOcrEngineOptions","abstract":"

    Options used for OCR process. These options enable you to customize how some OCR parsers work."},"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.html#/c:objc(cs)MBOcrResultSubview":{"name":"MBOcrResultSubview","abstract":"

    Overlay subview presenting status of OCR detection. OCR results are displayed as green characters over detected locations.

    "},"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/MBParser.html":{"name":"MBParser","abstract":"

    Base class for all parsers

    "},"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/MBParserResult.html":{"name":"MBParserResult","abstract":"

    Base class for all parser results

    "},"Classes/MBPdf417Recognizer.html":{"name":"MBPdf417Recognizer","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"Classes/MBPdf417RecognizerResult.html":{"name":"MBPdf417RecognizerResult","abstract":"

    A recognizer that can scan PDF417 2D barcodes.

    "},"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/MBQuadDetector.html":{"name":"MBQuadDetector","abstract":"

    Base class for all detectors that are used for MBQuadrangle detection.

    "},"Classes/MBQuadDetectorResult.html":{"name":"MBQuadDetectorResult","abstract":"

    Base class for all detectors that are used for MBQuadrangle detection.

    "},"Classes/MBQuadWithSizeDetector.html":{"name":"MBQuadWithSizeDetector","abstract":"

    Base class for all detectors that are used for MBQuadrangle"},"Classes/MBQuadWithSizeDetectorResult.html":{"name":"MBQuadWithSizeDetectorResult","abstract":"

    Base class for all detectors that are used for MBQuadrangle"},"Classes/MBQuadrangle.html":{"name":"MBQuadrangle","abstract":"

    Class represents the quadrangle (arbitrary geometric object with 4 different corner points

    "},"Classes/MBRawParser.html":{"name":"MBRawParser","abstract":"

    MBRawParser that simply returns the string version of raw OCR result, without performing"},"Classes/MBRawParserResult.html":{"name":"MBRawParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"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/MBRegexParser.html":{"name":"MBRegexParser","abstract":"

    Represents a parser which parses OCR result according to given regular expression."},"Classes/MBRegexParserResult.html":{"name":"MBRegexParserResult","abstract":"

    MBDateParser that can extract date from OCR result.

    "},"Classes/MBScanElement.html":{"name":"MBScanElement","abstract":"

    The easiest way to UI for Ocr scanning is by specifying the MBScanElements.

    "},"Classes/MBSimNumberRecognizer.html":{"name":"MBSimNumberRecognizer","abstract":"

    Recognizer that can perform recognition of barcodes on SIM packaging.

    "},"Classes/MBSimNumberRecognizerResult.html":{"name":"MBSimNumberRecognizerResult","abstract":"

    Recognizer that can perform recognition of barcodes on SIM packaging.

    "},"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/MBTopUpParser.html":{"name":"MBTopUpParser","abstract":"

    MBTopUpParser is used for parsing Top Up numbers

    "},"Classes/MBTopUpParserResult.html":{"name":"MBTopUpParserResult","abstract":"

    MBTopUpParser is used for parsing Top Up numbers

    "},"Classes/MBViewControllerFactory.html":{"name":"MBViewControllerFactory","abstract":"

    Factory class containing static methods for creating camera view controllers."},"Classes/MBVinParser.html":{"name":"MBVinParser","abstract":"

    MBVinParser is used for parsing VIN numbers

    "},"Classes/MBVinParserResult.html":{"name":"MBVinParserResult","abstract":"

    MBVinParser is used for parsing VIN numbers

    "},"Classes/MBVinRecognizer.html":{"name":"MBVinRecognizer","abstract":"

    Recognizer that can perform recognition of VINs (Vehicle Identification Number).

    "},"Classes/MBVinRecognizerResult.html":{"name":"MBVinRecognizerResult","abstract":"

    Recognizer that can perform recognition of VINs (Vehicle Identification Number).

    "},"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/undocumented.json b/docs/undocumented.json index ff482c2..c41874c 100644 --- a/docs/undocumented.json +++ b/docs/undocumented.json @@ -1,1321 +1,1349 @@ { "warnings": [ { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBAmountParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBAmountParser.h", "line": 22, "symbol": "MBAmountParser.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBAmountParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBAmountParserResult.h", "line": 21, "symbol": "MBAmountParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBBarcodeOverlaySettings.h", - "line": 18, - "symbol": "MBBarcodeOverlaySettings.displayBarcodeDots", - "symbol_kind": "sourcekitten.source.lang.objc.decl.property", - "warning": "undocumented" - }, - { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBBarcodeOverlaySettings.h", - "line": 20, - "symbol": "MBBarcodeOverlaySettings.displayViewfinder", - "symbol_kind": "sourcekitten.source.lang.objc.decl.property", - "warning": "undocumented" - }, - { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBBarcodeOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBBarcodeOverlayViewController.h", "line": 20, "symbol": "MBBarcodeOverlayViewController", "symbol_kind": "sourcekitten.source.lang.objc.decl.class", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBBarcodeRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBBarcodeRecognizer.h", "line": 24, "symbol": "MBBarcodeRecognizer.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBBarcodeRecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBBarcodeRecognizerResult.h", "line": 23, "symbol": "MBBarcodeRecognizerResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBBarcodeResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBBarcodeResult.h", "line": 12, "symbol": "MBBarcodeType.MBBarcodeNone", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBBlinkInputRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBBlinkInputRecognizer.h", "line": 24, "symbol": "MBBlinkInputRecognizer.-initWithProcessors:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBBlinkInputRecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBBlinkInputRecognizerResult.h", "line": 23, "symbol": "MBBlinkInputRecognizerResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBCustomOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBCustomOverlayViewController.h", "line": 28, "symbol": "MBCustomOverlayViewController.recognizerCollection", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBCustomOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBCustomOverlayViewController.h", "line": 29, "symbol": "MBCustomOverlayViewController.cameraSettings", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBCustomOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBCustomOverlayViewController.h", "line": 30, "symbol": "MBCustomOverlayViewController.metadataDelegates", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBCustomOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBCustomOverlayViewController.h", "line": 31, "symbol": "MBCustomOverlayViewController.scanningRecognizerRunnerViewControllerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBCustomOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBCustomOverlayViewController.h", "line": 32, "symbol": "MBCustomOverlayViewController.recognizerRunnerViewControllerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBCustomOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBCustomOverlayViewController.h", "line": 41, "symbol": "MBCustomOverlayViewController.-initWithRecognizerCollection:cameraSettings:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBCustomOverlayViewController.h", - "line": 76, - "symbol": "MBCustomOverlayViewController.-reconfigureRecognizers:", - "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", - "warning": "undocumented" - }, - { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 20, "symbol": "MBDateFormat.MBDateFormatDDMMYYYY", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 21, "symbol": "MBDateFormat.MBDateFormatDDMMYY", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 22, "symbol": "MBDateFormat.MBDateFormatMMDDYYYY", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 23, "symbol": "MBDateFormat.MBDateFormatMMDDYY", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 24, "symbol": "MBDateFormat.MBDateFormatYYYYMMDD", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 25, "symbol": "MBDateFormat.MBDateFormatYYMMDD", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 26, "symbol": "MBDateFormat.MBDateFormatDDMONTHYYYY", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 27, "symbol": "MBDateFormat.MBDateFormatDDMONTHYY", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 28, "symbol": "MBDateFormat.MBDateFormatMONTHDDYYYY", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 29, "symbol": "MBDateFormat.MBDateFormatMONTHDDYY", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 30, "symbol": "MBDateFormat.MBDateFormatYYYYMONTHDD", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 31, "symbol": "MBDateFormat.MBDateFormatYYMONTHDD", "symbol_kind": "sourcekitten.source.lang.objc.decl.enumcase", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 34, "symbol": "MBDateFormatArray", "symbol_kind": "sourcekitten.source.lang.objc.decl.typedef", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 35, "symbol": "MBDateSeparatorCharsArray", "symbol_kind": "sourcekitten.source.lang.objc.decl.typedef", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParser.h", "line": 45, "symbol": "MBDateParser.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateParserResult.h", "line": 22, "symbol": "MBDateParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDateResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDateResult.h", "line": 23, "symbol": "MBDateResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDetectorRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDetectorRecognizer.h", "line": 25, "symbol": "MBDetectorRecognizer.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDetectorRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDetectorRecognizer.h", "line": 27, "symbol": "MBDetectorRecognizer.-initWithQuadWithSizeDetector:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDetectorRecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDetectorRecognizerResult.h", "line": 20, "symbol": "MBDetectorRecognizerResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDetectorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDetectorResult.h", "line": 40, "symbol": "MBDetectorResult.detectionCode", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDetectorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDetectorResult.h", "line": 41, "symbol": "MBDetectorResult.detectionStatus", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDewarpPolicy.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDewarpPolicy.h", "line": 19, "symbol": "MBDewarpPolicy.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentDetector.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentDetector.h", "line": 24, "symbol": "MBDocumentDetector.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentDetectorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentDetectorResult.h", "line": 22, "symbol": "MBDocumentDetectorResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentOverlaySettings.h", - "line": 18, - "symbol": "MBDocumentOverlaySettings.viewfinderMoveable", - "symbol_kind": "sourcekitten.source.lang.objc.decl.property", - "warning": "undocumented" - }, - { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 17, "symbol": "MBRange", "symbol_kind": "sourcekitten.source.lang.objc.decl.typedef", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 18, "symbol": "MBRange._MBRange.start", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 18, "symbol": "_MBRange.start", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 19, "symbol": "MBRange._MBRange.stop", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 19, "symbol": "_MBRange.stop", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 35, "symbol": "MBScale", "symbol_kind": "sourcekitten.source.lang.objc.decl.typedef", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 36, "symbol": "MBScale._MBScale.scale", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 36, "symbol": "_MBScale.scale", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 37, "symbol": "MBScale._MBScale.tolerance", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 37, "symbol": "_MBScale.tolerance", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDocumentSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDocumentSpecification.h", "line": 108, "symbol": "MBDocumentSpecification.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDotsSubview.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDotsSubview.h", "line": 23, "symbol": "MBDotsSubview.dotsLayer", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBDotsSubview.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDotsSubview.h", "line": 42, "symbol": "MBDotsSubview.-initWithCoder:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBEmailParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBDotsSubview.h", + "line": 44, + "symbol": "MBDotsSubview.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBEmailParserResult.h", "line": 20, "symbol": "MBEmailParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBException.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBException.h", "line": 11, "symbol": "MBExceptionName", "symbol_kind": "sourcekitten.source.lang.objc.decl.typedef", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBException.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBException.h", "line": 13, "symbol": "MBIllegalModificationException", "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBException.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBException.h", "line": 14, "symbol": "MBInvalidLicenseKeyException", "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBException.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBException.h", "line": 15, "symbol": "MBInvalidLicenseeKeyException", "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBException.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBException.h", "line": 16, "symbol": "MBInvalidLicenseResourceException", "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBException.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBException.h", "line": 17, "symbol": "MBInvalidBundleException", "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBException.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBException.h", "line": 18, "symbol": "MBMissingSettingsException", "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBException.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBException.h", "line": 19, "symbol": "MBInvalidArgumentException", "symbol_kind": "sourcekitten.source.lang.objc.decl.constant", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBFieldByFieldOverlaySettings.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBFieldByFieldOverlaySettings.h", "line": 24, "symbol": "MBFieldByFieldOverlaySettings.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBFieldByFieldOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBFieldByFieldOverlayViewController.h", "line": 30, "symbol": "MBFieldByFieldOverlayViewController.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBFieldByFieldOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBFieldByFieldOverlayViewController.h", "line": 32, "symbol": "MBFieldByFieldOverlayViewController.-initWithNibName:bundle:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBFieldByFieldOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBFieldByFieldOverlayViewController.h", "line": 34, "symbol": "MBFieldByFieldOverlayViewController.-initWithCoder:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBFrameGrabberRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBFrameGrabberRecognizer.h", "line": 24, "symbol": "MBFrameGrabberRecognizer.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBFrameGrabberRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBFrameGrabberRecognizer.h", "line": 25, "symbol": "MBFrameGrabberRecognizer.-initWithFrameGrabberDelegate:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBFrameGrabberRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBFrameGrabberRecognizer.h", "line": 43, "symbol": "MBFrameGrabberRecognizerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.protocol", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 27, "symbol": "CGDelta", "symbol_kind": "sourcekitten.source.lang.objc.decl.typedef", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 30, "symbol": "", "symbol_kind": "sourcekitten.source.lang.objc.decl.struct", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 30, "symbol": "CGLine", "symbol_kind": "sourcekitten.source.lang.objc.decl.typedef", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 30, "symbol": "CGLine.", "symbol_kind": "sourcekitten.source.lang.objc.decl.struct", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 31, "symbol": ".point1", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 31, "symbol": "CGLine..point1", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 32, "symbol": ".point2", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 32, "symbol": "CGLine..point2", "symbol_kind": "sourcekitten.source.lang.objc.decl.field", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 38, "symbol": "CGDeltaMake", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 41, "symbol": "CGPointWithDelta", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 44, "symbol": "CGPointDistance", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 47, "symbol": "CGPointAlongLine", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 50, "symbol": "CGPointRotatedAroundPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 55, "symbol": "CGLineMake", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 58, "symbol": "CGLineEqualToLine", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 61, "symbol": "CGLineMidPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 64, "symbol": "CGLineDirection", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 67, "symbol": "CGLinesAngle", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 70, "symbol": "CGLinesIntersectAtPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 73, "symbol": "CGLineLength", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 76, "symbol": "CGLineScale", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 79, "symbol": "CGLineTranslate", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 82, "symbol": "CGLineScaleOnMidPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 85, "symbol": "CGLineDelta", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 88, "symbol": "CGLinesAreParallel", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 93, "symbol": "CGRectTopLeftPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 94, "symbol": "CGRectTopRightPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 95, "symbol": "CGRectBottomLeftPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 96, "symbol": "CGRectBottomRightPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 99, "symbol": "CGRectResize", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 102, "symbol": "CGRectInsetEdge", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 113, "symbol": "CGRectCenterPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 116, "symbol": "CGRectClosestTwoCornerPoints", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 120, "symbol": "CGLineIntersectsRectAtPoint", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 129, "symbol": "CGControlPointsForArcBetweenPointsWithRadius", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGeometry.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGeometry.h", "line": 135, "symbol": "scanningRegionForFrameInBounds", "symbol_kind": "sourcekitten.source.lang.objc.decl.function", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGlareRecognizerRunnerDelegate.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGlareRecognizerRunnerDelegate.h", "line": 13, "symbol": "MBGlareRecognizerRunnerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.protocol", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBGlareRecognizerRunnerViewControllerDelegate.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGlareRecognizerRunnerViewControllerDelegate.h", "line": 15, "symbol": "MBGlareRecognizerRunnerViewControllerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.protocol", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBIbanParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGlareStatusSubview.h", + "line": 20, + "symbol": "MBGlareStatusSubview.label", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGlareStatusSubview.h", + "line": 22, + "symbol": "MBGlareStatusSubview.-init", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGlareStatusSubview.h", + "line": 24, + "symbol": "MBGlareStatusSubview.-initWithCoder:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGlareStatusSubview.h", + "line": 26, + "symbol": "MBGlareStatusSubview.-initWithFrame:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBGlareStatusSubview.h", + "line": 28, + "symbol": "MBGlareStatusSubview.-glareDetectionFinishedWithResult:", + "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", + "warning": "undocumented" + }, + { + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBIbanParser.h", "line": 22, "symbol": "MBIbanParser.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBIbanParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBIbanParserResult.h", "line": 21, "symbol": "MBIbanParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBImageProcessingRecognizerRunnerDelegate.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBImageProcessingRecognizerRunnerDelegate.h", "line": 11, "symbol": "MBImageProcessingRecognizerRunnerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.protocol", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBImageReturnProcessor.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBImageReturnProcessor.h", "line": 22, "symbol": "MBImageReturnProcessor.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBImageReturnProcessorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBImageReturnProcessorResult.h", "line": 22, "symbol": "MBImageReturnProcessorResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBLicensePlatesParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBLicensePlatesParser.h", "line": 22, "symbol": "MBLicensePlatesParser.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBLicensePlatesParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBLicensePlatesParserResult.h", "line": 20, "symbol": "MBLicensePlatesParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBMicroblinkApp.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBMicroblinkApp.h", "line": 37, "symbol": "MBMicroblinkApp", "symbol_kind": "sourcekitten.source.lang.objc.decl.class", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBMicroblinkApp.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBMicroblinkApp.h", "line": 39, "symbol": "MBMicroblinkApp.language", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBMicroblinkSDK.h", - "line": 19, + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBMicroblinkSDK.h", + "line": 20, "symbol": "MBMicroblinkSDK.+sharedInstance", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.class", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBMrtdDetector.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBMrtdDetector.h", "line": 23, "symbol": "MBMrtdDetector.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBMrtdDetectorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBMrtdDetectorResult.h", "line": 21, "symbol": "MBMrtdDetectorResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBMrtdSpecification.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBMrtdSpecification.h", "line": 34, "symbol": "MBMrtdSpecification.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBNativeResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBNativeResult.h", "line": 14, "symbol": "MBNativeResult", "symbol_kind": "sourcekitten.source.lang.objc.decl.protocol", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBOcrLayout.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBOcrLayout.h", "line": 74, "symbol": "MBOcrLayout.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBOcrLayout.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBOcrLayout.h", "line": 192, "symbol": "MBCharWithVariants", "symbol_kind": "sourcekitten.source.lang.objc.decl.class", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBOcrLayout.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBOcrLayout.h", "line": 211, "symbol": "MBCharWithVariants.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBOcrLayout.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBOcrLayout.h", "line": 260, "symbol": "MBOcrChar.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBOcrLayout.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBOcrLayout.h", "line": 302, "symbol": "MBPosition.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBOverlayViewController.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBOverlayViewController.h", "line": 33, "symbol": "MBOverlayViewController.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBParserGroupProcessor.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBParserGroupProcessor.h", "line": 24, "symbol": "MBParserGroupProcessor.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBParserGroupProcessor.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBParserGroupProcessor.h", "line": 26, "symbol": "MBParserGroupProcessor.-initWithParsers:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBParserGroupProcessorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBParserGroupProcessorResult.h", "line": 21, "symbol": "MBParserGroupProcessorResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBParserGroupProcessorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBParserGroupProcessorResult.h", "line": 23, "symbol": "MBParserGroupProcessorResult.ocrLayout", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBParserResult.h", "line": 41, "symbol": "MBParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBParserResult.h", "line": 43, "symbol": "MBParserResult.resultState", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBPdf417Recognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBPdf417Recognizer.h", "line": 23, "symbol": "MBPdf417Recognizer.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBPdf417RecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBPdf417RecognizerResult.h", "line": 22, "symbol": "MBPdf417RecognizerResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBProcessorGroup.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBProcessorGroup.h", "line": 23, "symbol": "MBProcessorGroup.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBProcessorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBProcessorResult.h", "line": 41, "symbol": "MBProcessorResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBProcessorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBProcessorResult.h", "line": 43, "symbol": "MBProcessorResult.resultState", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBQuadDetector.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBQuadDetector.h", "line": 22, "symbol": "MBQuadDetector.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBQuadDetectorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBQuadDetectorResult.h", "line": 21, "symbol": "MBQuadDetectorResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBQuadWithSizeDetector.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBQuadWithSizeDetector.h", "line": 24, "symbol": "MBQuadWithSizeDetector.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBQuadWithSizeDetectorResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBQuadWithSizeDetectorResult.h", "line": 24, "symbol": "MBQuadWithSizeDetectorResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRawParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRawParser.h", "line": 24, "symbol": "MBRawParser.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRawParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRawParserResult.h", "line": 21, "symbol": "MBRawParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizer.h", - "line": 35, + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizer.h", + "line": 26, "symbol": "MBRecognizer.-getOptimalHudOrientation", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerCollection.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerCollection.h", "line": 51, "symbol": "MBRecognizerCollection.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerCollection.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerCollection.h", "line": 53, "symbol": "MBRecognizerCollection.-initWithRecognizers:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerResult.h", "line": 41, "symbol": "MBRecognizerResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerResult.h", "line": 43, "symbol": "MBRecognizerResult.resultState", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunner.h", - "line": 28, + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunner.h", + "line": 29, "symbol": "MBRecognizerRunner.metadataDelegates", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunner.h", - "line": 29, + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunner.h", + "line": 30, "symbol": "MBRecognizerRunner.scanningRecognizerRunnerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunner.h", - "line": 30, + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunner.h", + "line": 31, "symbol": "MBRecognizerRunner.imageProcessingRecognizerRunnerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunner.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunner.h", "line": 32, - "symbol": "MBRecognizerRunner.coordinator", + "symbol": "MBRecognizerRunner.stringProcessingRecognizerRunnerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunner.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunner.h", "line": 34, + "symbol": "MBRecognizerRunner.coordinator", + "symbol_kind": "sourcekitten.source.lang.objc.decl.property", + "warning": "undocumented" + }, + { + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunner.h", + "line": 36, "symbol": "MBRecognizerRunner.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunner.h", - "line": 39, + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunner.h", + "line": 41, "symbol": "MBRecognizerRunner.-resetState", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunner.h", - "line": 41, + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunner.h", + "line": 43, "symbol": "MBRecognizerRunner.-resetState:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h", "line": 21, "symbol": "MBRecognizerRunnerMetadataDelegates.debugRecognizerRunnerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h", "line": 22, "symbol": "MBRecognizerRunnerMetadataDelegates.detectionRecognizerRunnerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h", "line": 23, "symbol": "MBRecognizerRunnerMetadataDelegates.ocrRecognizerRunnerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunnerMetadataDelegates.h", "line": 24, "symbol": "MBRecognizerRunnerMetadataDelegates.glareRecognizerRunnerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h", "line": 21, "symbol": "MBRecognizerRunnerViewControllerMetadataDelegates.debugRecognizerRunnerViewControllerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h", "line": 22, "symbol": "MBRecognizerRunnerViewControllerMetadataDelegates.detectionRecognizerRunnerViewControllerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h", "line": 23, "symbol": "MBRecognizerRunnerViewControllerMetadataDelegates.ocrRecognizerRunnerViewControllerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRecognizerRunnerViewControllerMetadataDelegates.h", "line": 24, "symbol": "MBRecognizerRunnerViewControllerMetadataDelegates.glareRecognizerRunnerViewControllerDelegate", "symbol_kind": "sourcekitten.source.lang.objc.decl.property", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRegexParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRegexParser.h", "line": 29, "symbol": "MBRegexParser.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBRegexParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBRegexParserResult.h", "line": 21, "symbol": "MBRegexParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBScanElement.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBScanElement.h", "line": 38, "symbol": "MBScanElement.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBSimNumberRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBSimNumberRecognizer.h", "line": 22, "symbol": "MBSimNumberRecognizer.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBSimNumberRecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBSimNumberRecognizerResult.h", "line": 20, "symbol": "MBSimNumberRecognizerResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBStringProcessingRecognizerRunnerDelegate.h", + "line": 10, + "symbol": "MBStringProcessingRecognizerRunnerDelegate", + "symbol_kind": "sourcekitten.source.lang.objc.decl.protocol", + "warning": "undocumented" + }, + { + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBSuccessFrameGrabberRecognizer.h", "line": 21, "symbol": "MBSuccessFrameGrabberRecognizer.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBSuccessFrameGrabberRecognizer.h", "line": 22, "symbol": "MBSuccessFrameGrabberRecognizer.-initWithRecognizer:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBSuccessFrameGrabberRecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBSuccessFrameGrabberRecognizerResult.h", "line": 23, "symbol": "MBSuccessFrameGrabberRecognizerResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBTapToFocusSubview.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBTapToFocusSubview.h", "line": 25, "symbol": "MBTapToFocusSubview.-initWithCoder:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBTapToFocusSubview.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBTapToFocusSubview.h", "line": 27, "symbol": "MBTapToFocusSubview.-willFocusAtPoint:", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBTemplatingClass.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBTemplatingClass.h", "line": 24, "symbol": "MBTemplatingClass.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBTemplatingClass.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBTemplatingClass.h", "line": 60, "symbol": "MBTemplatingClassifier", "symbol_kind": "sourcekitten.source.lang.objc.decl.protocol", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBTemplatingClass.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBTemplatingClass.h", "line": 63, "symbol": "MBTemplatingClassifier.-classify", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBTemplatingRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBTemplatingRecognizer.h", "line": 24, "symbol": "MBTemplatingRecognizer.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBTemplatingRecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBTemplatingRecognizerResult.h", "line": 24, "symbol": "MBTemplatingRecognizerResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBTopUpParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBTopUpParser.h", "line": 41, "symbol": "MBTopUpParser.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBTopUpParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBTopUpParserResult.h", "line": 20, "symbol": "MBTopUpParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBVinParser.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBVinParser.h", "line": 22, "symbol": "MBVinParser.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBVinParserResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBVinParserResult.h", "line": 20, "symbol": "MBVinParserResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBVinRecognizer.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBVinRecognizer.h", "line": 22, "symbol": "MBVinRecognizer.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" }, { - "file": "/opt/jenkins/Executor1/blinkocr-ios-framework/blinkinput-ios/MicroBlink.framework/Headers/MBVinRecognizerResult.h", + "file": "/opt/jenkins-ios/E0/blinkocr-ios-framework/blinkinput-ios/Microblink.framework/Headers/MBVinRecognizerResult.h", "line": 20, "symbol": "MBVinRecognizerResult.-init", "symbol_kind": "sourcekitten.source.lang.objc.decl.method.instance", "warning": "undocumented" } ], - "source_directory": "/opt/jenkins/Executor1/blinkocr-ios-framework/xcode-build/production" + "source_directory": "/opt/jenkins-ios/E0/blinkocr-ios-framework/xcode-build/production" } \ No newline at end of file