-
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.
- Loading branch information
dino.gustin
committed
Jun 30, 2016
1 parent
1351bef
commit 0728517
Showing
29 changed files
with
754 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
58 changes: 58 additions & 0 deletions
58
MicroBlink.framework/Headers/PPAusIDBackRecognizerResult.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,58 @@ | ||
// | ||
// PPAusIDBackRecognizerResult.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 30/06/16. | ||
// Copyright © 2016 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPBlinkOcrRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning back side of Austrian ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPAusIDBackRecognizerResult : PPBlinkOcrRecognizerResult | ||
|
||
/** | ||
* Returns the issuing authority of the Austrian ID. | ||
* @return issuing authority of the Austrian ID. | ||
*/ | ||
- (NSString *)issuingAuthority; | ||
|
||
/** | ||
* Returns the place of birth of the Austrian ID owner. | ||
* @return place of birth of the Austrian ID owner. | ||
*/ | ||
- (NSString *)placeOfBirth; | ||
|
||
/** | ||
* Returns the principal residence of the Austrian ID owner. | ||
* @return principal residence of the Austrian ID owner. | ||
*/ | ||
- (NSString *)principalResidence; | ||
|
||
/** | ||
* Returns the height of the Austrian ID owner. | ||
* @return height of the Austrian ID owner. | ||
*/ | ||
- (NSString *)height; | ||
|
||
/** | ||
* Returns the date of issue of the Austrian ID. | ||
* @return date of issue of the Austrian ID. | ||
*/ | ||
- (NSString *)dateOfIssue; | ||
|
||
/** | ||
* Returns the eye color of the Austrian ID owner. | ||
* @return eye color of the Austrian ID owner. | ||
*/ | ||
- (NSString *)eyeColor; | ||
|
||
/** | ||
* Returns the document number of the Austrian ID. | ||
* @return document number of the Austrian ID. | ||
*/ | ||
- (NSString *)documentNumber; | ||
|
||
@end |
33 changes: 33 additions & 0 deletions
33
MicroBlink.framework/Headers/PPAusIDBackRecognizerSettings.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,33 @@ | ||
// | ||
// PPAusIDBackRecognizerSettings.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 30/06/16. | ||
// Copyright © 2016 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
/** | ||
* Settings class for configuring Austrian Back ID Recognizer | ||
* | ||
* Austrian Back ID recognizer is used for scanning back side of Austrian ID. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPAusIDBackRecognizerSettings : 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. | ||
*/ | ||
@property (nonatomic, readonly) NSString* FULL_DOCUMENT_IMAGE; | ||
|
||
/** | ||
* 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; | ||
|
||
@end |
46 changes: 46 additions & 0 deletions
46
MicroBlink.framework/Headers/PPAusIDFrontRecognizerResult.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 @@ | ||
// | ||
// PPAusIDFrontRecognizerResult.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 30/06/16. | ||
// Copyright © 2016 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPBlinkOcrRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning front side of Austrian ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPAusIDFrontRecognizerResult : PPBlinkOcrRecognizerResult | ||
|
||
/** | ||
* Returns the first name of the Austrian ID owner. | ||
* @return first name of the Austrian ID owner. | ||
*/ | ||
- (NSString *)firstName; | ||
|
||
/** | ||
* Returns the last name of the Austrian ID owner. | ||
* @return last name of the Austrian ID owner. | ||
*/ | ||
- (NSString *)lastName; | ||
|
||
/** | ||
* Returns the document number of the Austrian ID. | ||
* @return document number of the Austrian ID. | ||
*/ | ||
- (NSString *)documentNumber; | ||
|
||
/** | ||
* Returns the date of birth of the Austrian ID owner. | ||
* @return date of birth of the Austrian ID owner. | ||
*/ | ||
- (NSString *)dateOfBirth; | ||
|
||
/** | ||
* Returns the sex of the Austrian ID owner. | ||
* @return sex of the Austrian ID owner. | ||
*/ | ||
- (NSString *)sex; | ||
|
||
@end |
63 changes: 63 additions & 0 deletions
63
MicroBlink.framework/Headers/PPAusIDFrontRecognizerSettings.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 @@ | ||
// | ||
// PPAusIDFrontRecognizerSettings.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 30/06/16. | ||
// Copyright © 2016 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
/** | ||
* Settings class for configuring Austrian Front ID Recognizer | ||
* | ||
* Austrian Front ID recognizer is used for scanning front side of Austrian ID. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPAusIDFrontRecognizerSettings : 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; | ||
|
||
/** | ||
* 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; | ||
|
||
@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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// | ||
// PPCzIDBackRecognizerResult.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 30/06/16. | ||
// Copyright © 2016 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPBlinkOcrRecognizerResult.h" | ||
|
||
/** | ||
* Class representing values obtained when scanning back side of Czech ID | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPCzIDBackRecognizerResult : PPBlinkOcrRecognizerResult | ||
|
||
/** | ||
* Returns the issuing authority of the Czech ID. | ||
* @return issuing authority of the Czech ID. | ||
*/ | ||
- (NSString *)authority; | ||
|
||
/** | ||
* Returns the address of the Czech ID owner. | ||
* @return address of the Czech ID owner. | ||
*/ | ||
- (NSString *)address; | ||
|
||
/** | ||
* Returns the personal number of the Czech ID owner. | ||
* @return personal number of the Czech ID owner. | ||
*/ | ||
- (NSString *)personalNumber; | ||
|
||
@end |
33 changes: 33 additions & 0 deletions
33
MicroBlink.framework/Headers/PPCzIDBackRecognizerSettings.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,33 @@ | ||
// | ||
// PPCzIDBackRecognizerSettings.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 30/06/16. | ||
// Copyright © 2016 MicroBlink Ltd. All rights reserved. | ||
// | ||
|
||
#import "PPRecognizerSettings.h" | ||
|
||
/** | ||
* Settings class for configuring Czech Back ID Recognizer | ||
* | ||
* Czech Back ID recognizer is used for scanning back side of Czech ID. | ||
*/ | ||
PP_CLASS_AVAILABLE_IOS(6.0) @interface PPCzIDBackRecognizerSettings : 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. | ||
*/ | ||
@property (nonatomic, readonly) NSString* FULL_DOCUMENT_IMAGE; | ||
|
||
/** | ||
* 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; | ||
|
||
@end |
Oops, something went wrong.