-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from BlinkID/feature/v2.14.0
Feature/v2.14.0
- Loading branch information
Showing
35 changed files
with
699 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
MicroBlink.framework/Headers/PPAustraliaDLBackRecognizerResult.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// | ||
// PPAustraliaDLBackRecognizerResult.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Jura Skrlec on 30/11/2017. | ||
// | ||
|
||
#import "PPDetectorRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning back side of Australian DL | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPAustraliaDLBackRecognizerResult : PPDetectorRecognizerResult | ||
|
||
/** | ||
* The last name of the Australian DL owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *lastName; | ||
|
||
/** | ||
* The licence number of the Australian DL owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *licenceNumber; | ||
|
||
/** | ||
* The address of the Australian DL owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *address; | ||
|
||
/** | ||
* The document date of expiry of the Australian DL in DD.MM.yyyy format. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *rawDocumentDateOfExpiry; | ||
|
||
/** | ||
* The document date of expiry of the Australian DL | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSDate *documentDateOfExpiry; | ||
|
||
@end |
67 changes: 67 additions & 0 deletions
67
MicroBlink.framework/Headers/PPAustraliaDLBackRecognizerSettings.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// | ||
// PPAustraliaDLBackRecognizerSettings.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Jura Skrlec on 30/11/2017. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Settings class for configuring Asutralian Front DL Recognizer. | ||
* | ||
* Australian Back ID recognizer is used for scanning front side of Australian DL. It always extracts | ||
* identity card number, first and last name of ID holder while extracting other elements is optional. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPAustraliaDLBackRecognizerSettings : PPRecognizerSettings | ||
|
||
/** | ||
* Name of the image sent to didOutputMetadata method of scanDelegate object that contains full document. | ||
* This image will be sent to scan delegate during recognition process if displaying of full document image | ||
* is enabled via displayFullDocumentImage property and receiving of dewarpedImage in MetadataSettings is enabled. | ||
*/ | ||
+ (NSString *)FULL_DOCUMENT_IMAGE; | ||
|
||
/** | ||
* Defines if last name of Australian DL owner should be extracted | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractLastName; | ||
|
||
/** | ||
* Defines if sex of Australian DL owner should be extracted | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractAddress; | ||
|
||
/** | ||
* Defines if date of expiry should be extracted from Australian DL | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfExpiry; | ||
|
||
/** | ||
* Sets whether full document image of ID card should be sent to didOutputMetadata method of scanDelegate object. | ||
* If you want to recieve this image, be sure to enable dewarpedImage in MetadataSettings. | ||
* | ||
* Default: NO | ||
*/ | ||
@property (nonatomic, assign) BOOL displayFullDocumentImage; | ||
|
||
/** | ||
* Property got setting DPI for full document images | ||
* | ||
* Default: 250.0 | ||
*/ | ||
@property (nonatomic, assign) NSUInteger fullDocumentImageDPI; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.