-
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 #137 from BlinkID/feature/v2.16.0
Feature/v2.16.0
- Loading branch information
Showing
41 changed files
with
998 additions
and
67 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.
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
51 changes: 51 additions & 0 deletions
51
MicroBlink.framework/Headers/PPColombiaIDBackRecognizerResult.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,51 @@ | ||
// | ||
// PPColombiaIDBackRecognizerResult.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 30/01/2018. | ||
// | ||
|
||
#import "PPRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning back side of Colombia ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPColombiaIDBackRecognizerResult : PPRecognizerResult | ||
|
||
/** | ||
* The first name of the Colombian ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *firstName; | ||
|
||
/** | ||
* The last name of the Colombian ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *lastName; | ||
|
||
/** | ||
* The sex of the Colombian ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *sex; | ||
|
||
/** | ||
* The date of birth of the Colombian ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSDate *dateOfBirth; | ||
|
||
/** | ||
* The blood group of the Colombian ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *bloodGroup; | ||
|
||
/** | ||
* The fingerprint of the Colombian ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSData *fingerprint; | ||
|
||
/** | ||
* The document number of the Colombian ID card. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *documentNumber; | ||
|
||
@end |
37 changes: 37 additions & 0 deletions
37
MicroBlink.framework/Headers/PPColombiaIDBackRecognizerSettings.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,37 @@ | ||
// | ||
// PPColombiaIDBackRecognizerSettings.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 30/01/2018. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
/** | ||
* Settings class for configuring Colombian Back ID Recognizer. | ||
* | ||
* Colombian Back ID recognizer is used for scanning back side of Colombian ID. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPColombiaIDBackRecognizerSettings : PPRecognizerSettings | ||
|
||
/** | ||
* Set this to YES to scan even barcode not compliant with standards | ||
* For example, malformed PDF417 barcodes which were incorrectly encoded | ||
* | ||
* Use only if necessary because it slows down the recognition process | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic) BOOL scanUncertain; | ||
|
||
/** | ||
* Set this to YES to scan barcodes which don't have quiet zone (white area) around it | ||
* | ||
* Use only if necessary because it slows down the recognition process | ||
* | ||
* Default: NO | ||
*/ | ||
@property (nonatomic) BOOL allowNullQuietZone; | ||
|
||
@end |
31 changes: 31 additions & 0 deletions
31
MicroBlink.framework/Headers/PPColombiaIDFrontRecognizerResult.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,31 @@ | ||
// | ||
// PPColombiaIDFrontRecognizerResult.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 30/01/2018. | ||
// | ||
|
||
#import "PPDetectorRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning front side of Colombian ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPColombiaIDFrontRecognizerResult : PPDetectorRecognizerResult | ||
|
||
/** | ||
* The first name of the Colombian ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *firstName; | ||
|
||
/** | ||
* The last name of the Colombian ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *lastName; | ||
|
||
/** | ||
* The document number of the Colombian ID card. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *documentNumber; | ||
|
||
@end |
85 changes: 85 additions & 0 deletions
85
MicroBlink.framework/Headers/PPColombiaIDFrontRecognizerSettings.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,85 @@ | ||
// | ||
// PPColombiaIDFrontRecognizerSettings.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 30/01/2018. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
/** | ||
* Settings class for configuring Colombian Front ID Recognizer. | ||
* | ||
* Colombian Front ID recognizer is used for scanning front side of Colombian ID. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPColombiaIDFrontRecognizerSettings : PPRecognizerSettings | ||
|
||
/** | ||
* 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 face image | ||
* is enabled via displaySignatureImage property and receiving of dewarpedImage in MetadataSettings is enabled. | ||
*/ | ||
+ (NSString *)ID_SIGNATURE; | ||
|
||
/** | ||
* 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 owner's first name should be extracted from Colombian ID | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractFirstName; | ||
|
||
/** | ||
* Defines if owner's last name should be extracted from Colombian ID | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractLastName; | ||
|
||
/** | ||
* Sets whether face photo from 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) BOOL displayFacePhoto; | ||
|
||
/** | ||
* Sets whether signature photo 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) BOOL displaySignaturePhoto; | ||
|
||
/** | ||
* Sets whether full 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) BOOL displayFullDocumentImage; | ||
|
||
/** | ||
* Defines if glare detection should be turned on/off for front side of Colombian IDs. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL detectGlare; | ||
|
||
@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
46 changes: 46 additions & 0 deletions
46
MicroBlink.framework/Headers/PPHongKongIDFrontRecognizerResult.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,46 @@ | ||
// | ||
// PPHongKongIDFrontRecognizerResult.h | ||
// MicroBlinkDev | ||
// | ||
// Created by Dino Gustin on 05/02/2018. | ||
// | ||
|
||
#import "PPDetectorRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning front side of Hong Kong ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) | ||
@interface PPHongKongIDFrontRecognizerResult : PPDetectorRecognizerResult | ||
|
||
/** | ||
* The full name of the Hong Kong ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *fullName; | ||
|
||
/** | ||
* The commerical Code of the Hong Kong ID. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *commercialCode; | ||
|
||
/** | ||
* The date of birth of the Hong Kong ID ownder. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSDate *dateOfBirth; | ||
|
||
/** | ||
* The sex of the Hong Kong ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *sex; | ||
|
||
/** | ||
* The issue date of the Hong Kong ID owner. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSDate *issueDate; | ||
|
||
/** | ||
* The document number of the Hong Kong card. | ||
*/ | ||
@property (nonatomic, readonly, nullable) NSString *documentNumber; | ||
|
||
@end |
Oops, something went wrong.