-
Notifications
You must be signed in to change notification settings - Fork 91
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 #169 from BlinkID/feature/v2.18.0
Feature/v2.18.0
- Loading branch information
Showing
24 changed files
with
323 additions
and
34 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.
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
61 changes: 61 additions & 0 deletions
61
MicroBlink.framework/Headers/PPSwedenDLFrontRecognizerResult.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,61 @@ | ||
// | ||
// PPSwedenDLFrontRecognizerResult.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 29/05/2018. | ||
// | ||
|
||
#import "PPDetectorRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning front side of Sweden DL | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPSwedenDLFrontRecognizerResult : PPDetectorRecognizerResult | ||
|
||
/** | ||
* The Surname of the Sweden DL owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *surname; | ||
|
||
/** | ||
* The Name of the Sweden DL owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *name; | ||
|
||
/** | ||
* The Date Of Birth of the Sweden DL owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSDate *dateOfBirth; | ||
|
||
/** | ||
* The Date Of Issue of the Sweden DL. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSDate *dateOfIssue; | ||
|
||
/** | ||
* The Date Of Expiry of the Sweden DL. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSDate *dateOfExpiry; | ||
|
||
/** | ||
* The Issuing Agency of the Sweden DL. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *issuingAgency; | ||
|
||
/** | ||
* The Reference Number of the Sweden DL. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *referenceNumber; | ||
|
||
/** | ||
* The Licence Categories of the Sweden DL. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *licenceCategories; | ||
|
||
/** | ||
* The Licence Numer of the Sweden DL. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *licenceNumber; | ||
|
||
@end |
127 changes: 127 additions & 0 deletions
127
MicroBlink.framework/Headers/PPSwedenDLFrontRecognizerSettings.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,127 @@ | ||
// | ||
// PPSwedenDLFrontRecognizerSettings.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 29/05/2018. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
/** | ||
* Settings class for configuring Sweden DL Front Recognizer. | ||
* | ||
* Sweden DL Front recognizer is used for scanning front side of Sweden DL. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPSwedenDLFrontRecognizerSettings : 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; | ||
|
||
/** | ||
* Name of the image sent to didOutputMetadata method of scanDelegate object that contains face. | ||
* This image will be sent to scan delegate during recognition process if displaying of face image | ||
* is enabled via displayFaceImage property and receiving of dewarpedImage in MetadataSettings is enabled. | ||
*/ | ||
+ (NSString *)ID_FACE; | ||
|
||
/** | ||
* Name of the image sent to didOutputMetadata method of scanDelegate object that contains signature. | ||
* This image will be sent to scan delegate during recognition process if displaying of signature image | ||
* is enabled via displaySignatureImage property and receiving of dewarpedImage in MetadataSettings is enabled. | ||
*/ | ||
+ (NSString *)ID_SIGNATURE; | ||
|
||
/** | ||
* Defines if owner's surname should be extracted from Sweden DL | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractSurname; | ||
|
||
/** | ||
* Defines if owner's name should be extracted from Sweden DL | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractName; | ||
|
||
/** | ||
* Defines if owner's date of birth should be extracted from Sweden DL | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfBirth; | ||
|
||
/** | ||
* Defines if date of issue should be extracted from Sweden DL | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfIssue; | ||
|
||
/** | ||
* Defines if date of expiry should be extracted from Sweden DL | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfExpiry; | ||
|
||
/** | ||
* Defines if issuing agency should be extracted from Sweden DL | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractIssuingAgency; | ||
|
||
/** | ||
* Defines if reference number should be extracted from Sweden DL | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractReferenceNumber; | ||
|
||
/** | ||
* Defines iflicence categories should be extracted from Sweden DL | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractLicenceCategories; | ||
|
||
/** | ||
* Sets whether full document image from Sweden DL 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) BOOL displayFullDocumentImage; | ||
|
||
/** | ||
* Sets whether face image from Sweden DL 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) BOOL displayFaceImage; | ||
|
||
/** | ||
* Sets whether signature image from Sweden DL 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) BOOL displaySignatureImage; | ||
|
||
|
||
/** | ||
* Defines if glare detection should be turned on/off for front side of Sweden DL. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL detectGlare; | ||
|
||
@end |
Binary file not shown.
Git LFS 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
Oops, something went wrong.