-
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 #39 from BlinkID/feature/v2.3.0
Updated BlinkID to v2.3.0
- Loading branch information
Showing
38 changed files
with
687 additions
and
13 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
62 changes: 62 additions & 0 deletions
62
MicroBlink.framework/Headers/PPGermanIdFrontRecognizerResult.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,62 @@ | ||
// | ||
// PPGermanIdFrontRecognizerResult.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 22/08/16. | ||
// Copyright © 2016 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPBlinkOcrRecognizerResult.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Class representing values obtained when scanning front side of German ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPGermanIdFrontRecognizerResult : PPBlinkOcrRecognizerResult | ||
|
||
/** | ||
* Returns the first name of the German ID owner. | ||
* @return the first name of the German ID owner. | ||
*/ | ||
- (NSString *)firstName; | ||
|
||
/** | ||
* Returns the last name of the German ID owner. | ||
* @return the last name of the German ID owner. | ||
*/ | ||
- (NSString *)lastName; | ||
|
||
/** | ||
* Returns nationality of the German ID owner. | ||
* @return nationality of the German ID owner | ||
*/ | ||
- (NSString *)nationality; | ||
|
||
/** | ||
* Returns the date of birth of German ID owner | ||
* @return the date of birth of German ID owner | ||
*/ | ||
- (NSString *)dateOfBirth; | ||
|
||
/** | ||
* Returns the place of birth of the German ID | ||
* @return the place of birth of the German ID | ||
*/ | ||
- (NSString *)placeOfBirth; | ||
|
||
/** | ||
* Returns the document date of expiry of the German ID | ||
* @return the document date of expiry of the German ID | ||
*/ | ||
- (NSString *)dateOfExpiry; | ||
|
||
/** | ||
* Returns the document number of the German ID | ||
* @return the document number of the German ID | ||
*/ | ||
- (NSString *)documentNumber; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
109 changes: 109 additions & 0 deletions
109
MicroBlink.framework/Headers/PPGermanIdFrontRecognizerSettings.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,109 @@ | ||
// | ||
// PPGermanIdFrontRecognizerSettings.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 22/08/16. | ||
// Copyright © 2016 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Settings class for configuring German ID Front Recognizer | ||
* | ||
* CroIDFront recognizer is used for scanning front side of German ID. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPGermanIdFrontRecognizerSettings : 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. | ||
*/ | ||
@property (nonatomic, readonly) 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. | ||
*/ | ||
@property (nonatomic, readonly) 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. | ||
*/ | ||
@property (nonatomic, readonly) NSString* FULL_DOCUMENT_IMAGE; | ||
|
||
/** | ||
* Defines if owner's first name should be extracted from German ID | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractFirstName; | ||
|
||
/** | ||
* Defines if owner's last name should be extracted from German ID | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractLastName; | ||
|
||
/** | ||
* Defines if owner's place of birth should be extracted from German ID | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractPlaceOfBirth; | ||
|
||
/** | ||
* Defines if owner's nationality should be extracted from German ID | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractNationality; | ||
|
||
/** | ||
* Defines if owner's date of birth should be extracted from German ID | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfBirth; | ||
|
||
/** | ||
* Defines if date of expiry should be extracted from German ID | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfExpiry; | ||
|
||
/** | ||
* Sets whether face image 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, assign) BOOL displayFaceImage; | ||
|
||
/** | ||
* Sets whether signature image 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, assign) BOOL displaySignatureImage; | ||
|
||
/** | ||
* 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; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
50 changes: 50 additions & 0 deletions
50
MicroBlink.framework/Headers/PPGermanIdMrzRecognizerResult.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,50 @@ | ||
// | ||
// PPGermanIdMrzRecognizerResult.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 22/08/16. | ||
// Copyright © 2016 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPBlinkOcrRecognizerResult.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Class representing values obtained when scanning MRZ of German ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPGermanIdMrzRecognizerResult : PPBlinkOcrRecognizerResult | ||
|
||
/** | ||
* Returns the eye color of the German ID owner. | ||
* @return the eye color of the German ID owner. | ||
*/ | ||
- (NSString *)eyeColor; | ||
|
||
/** | ||
* Returns the height of the German ID owner. | ||
* @return the height of the German ID owner. | ||
*/ | ||
- (NSString *)height; | ||
|
||
/** | ||
* Returns the date of issue of the ID. | ||
* @return the date of issue of the ID. | ||
*/ | ||
- (NSString *)dateOfIssue; | ||
|
||
/** | ||
* Returns the issuing authority of the German ID. | ||
* @return the issuing authority of the German ID. | ||
*/ | ||
- (NSString *)authority; | ||
|
||
/** | ||
* Returns the address of the German ID owner. | ||
* @return the address of the German ID owner. | ||
*/ | ||
- (NSString *)address; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.