-
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 #153 from BlinkID/feature/v2.17.0
Feature/v2.17.0
- Loading branch information
Showing
33 changed files
with
841 additions
and
38 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
26 changes: 26 additions & 0 deletions
26
MicroBlink.framework/Headers/PPEgyptIDFrontRecognizerResult.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,26 @@ | ||
// | ||
// PPEgyptIDFrontRecognizerResult.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 27/03/2018. | ||
// | ||
|
||
#import "PPDetectorRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning front side of Egypt ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPEgyptIDFrontRecognizerResult : PPDetectorRecognizerResult | ||
|
||
/** | ||
* The National Number of the Egypt ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *nationalNumber; | ||
|
||
/** | ||
* The document number of the Egypt ID. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *documentNumber; | ||
|
||
@end |
63 changes: 63 additions & 0 deletions
63
MicroBlink.framework/Headers/PPEgyptIDFrontRecognizerSettings.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,63 @@ | ||
// | ||
// PPEgyptIDFrontRecognizerSettings.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 27/03/2018. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
/** | ||
* Settings class for configuring Egypt ID Front Recognizer. | ||
* | ||
* Egypt ID Front recognizer is used for scanning front side of Egypt ID. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPEgyptIDFrontRecognizerSettings : 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; | ||
|
||
/** | ||
* Defines if owner's national number should be extracted from Egypt ID | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractNationalNumber; | ||
|
||
/** | ||
* Sets whether full document image from Egypt ID 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 Egypt ID 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; | ||
|
||
|
||
/** | ||
* Defines if glare detection should be turned on/off for front side of Egypt ID. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL detectGlare; | ||
|
||
@end |
16 changes: 16 additions & 0 deletions
16
MicroBlink.framework/Headers/PPJordanIDBackRecognizerResult.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,16 @@ | ||
// | ||
// PPJordanIDBackRecognizerResult.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 23/03/2018. | ||
// | ||
|
||
#import "PPMrtdRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning back side of Jordan ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPJordanIDBackRecognizerResult : PPMrtdRecognizerResult | ||
|
||
@end |
41 changes: 41 additions & 0 deletions
41
MicroBlink.framework/Headers/PPJordanIDBackRecognizerSettings.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 @@ | ||
// | ||
// PPJordanIDBackRecognizerSettings.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 23/03/2018. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
/** | ||
* Settings class for configuring Jordan ID Back Recognizer. | ||
* | ||
* Jordan ID Back recognizer is used for scanning back side of Jordan ID. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPJordanIDBackRecognizerSettings : 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; | ||
|
||
/** | ||
* Sets whether full document image from Jordan ID 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; | ||
|
||
|
||
/** | ||
* Defines if glare detection should be turned on/off for back side of Jordan ID. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL detectGlare; | ||
|
||
@end |
Oops, something went wrong.