-
Notifications
You must be signed in to change notification settings - Fork 89
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 #209 from BlinkID/jenkins/master-build
Jenkins/master build
- Loading branch information
Showing
834 changed files
with
97,301 additions
and
2,203 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.0 | ||
4.2 |
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 removed
BIN
-1020 KB
MicroBlink.bundle/nn_model_BlinkCreditCardOcr_production_4.1.2.zzip
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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,96 @@ | ||
// | ||
// MBAustriaDlFrontRecognizer.h | ||
// MicroBlinkDev | ||
// | ||
// Created by juraskrlec on 09/10/2018. | ||
// | ||
|
||
#import "MBRecognizer.h" | ||
#import "MBAustriaDlFrontRecognizerResult.h" | ||
|
||
#import "MBFaceImage.h" | ||
#import "MBEncodeFaceImage.h" | ||
#import "MBFaceImageDpi.h" | ||
#import "MBFullDocumentImage.h" | ||
#import "MBEncodeFullDocumentImage.h" | ||
#import "MBFullDocumentImageDpi.h" | ||
#import "MBSignatureImage.h" | ||
#import "MBEncodeSignatureImage.h" | ||
#import "MBSignatureImageDpi.h" | ||
#import "MBGlareDetection.h" | ||
#import "MBFullDocumentImageExtensionFactors.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Recognizer which can scan front side of Austrian national DL cards. | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) | ||
@interface MBAustriaDlFrontRecognizer : MBRecognizer <NSCopying, MBFaceImage, MBEncodeFaceImage, MBFaceImageDpi, MBFullDocumentImage, MBEncodeFullDocumentImage, MBFullDocumentImageDpi, MBSignatureImage, MBEncodeSignatureImage, MBSignatureImageDpi, MBGlareDetection, MBFullDocumentImageExtensionFactors> | ||
|
||
MB_INIT | ||
|
||
/** | ||
* Result of scanning Austria Dl Front Recognizer | ||
*/ | ||
@property (nonatomic, strong, readonly) MBAustriaDlFrontRecognizerResult *result; | ||
|
||
/** | ||
* Defines if date of birth of Austrian DL owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfBirth; | ||
|
||
/** | ||
* Defines if date of expiry of Austrian DL should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfExpiry; | ||
|
||
/** | ||
* Defines if date of issue of Austrian DL should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfIssue; | ||
|
||
/** | ||
* Defines if first name of Austrian DL owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractFirstName; | ||
|
||
/** | ||
* Defines if issuing authority of Austrian DL should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractIssuingAuthority; | ||
|
||
/** | ||
* Defines if name of Austrian DL owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractName; | ||
|
||
/** | ||
* Defines if place of birth of Austrian DL owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractPlaceOfBirth; | ||
|
||
/** | ||
* Defines if vehicle categories of Austrian DL should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractVehicleCategories; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
75 changes: 75 additions & 0 deletions
75
MicroBlink.framework/Headers/MBAustriaDlFrontRecognizerResult.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,75 @@ | ||
// | ||
// MBAustriaDlFrontRecognizerResult.h | ||
// MicroBlinkDev | ||
// | ||
// Created by juraskrlec on 09/10/2018. | ||
// | ||
|
||
#import "MBRecognizerResult.h" | ||
#import "MBDateResult.h" | ||
|
||
#import "MBFaceImageResult.h" | ||
#import "MBEncodedFaceImageResult.h" | ||
#import "MBFullDocumentImageResult.h" | ||
#import "MBEncodedFullDocumentImageResult.h" | ||
#import "MBSignatureImageResult.h" | ||
#import "MBEncodedSignatureImageResult.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Class representing values obtained when scanning front side of the Austria Dl | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) | ||
@interface MBAustriaDlFrontRecognizerResult : MBRecognizerResult<NSCopying, MBFaceImageResult, MBEncodedFaceImageResult, MBFullDocumentImageResult, MBEncodedFullDocumentImageResult, MBSignatureImageResult, MBEncodedSignatureImageResult> | ||
|
||
MB_INIT_UNAVAILABLE | ||
|
||
/** | ||
* The date Of Birth of the front side of the Austria Dl owner. | ||
*/ | ||
@property (nonatomic, readonly) MBDateResult *dateOfBirth; | ||
|
||
/** | ||
* The date Of Expiry of the front side of the Austria Dl owner. | ||
*/ | ||
@property (nonatomic, readonly) MBDateResult *dateOfExpiry; | ||
|
||
/** | ||
* The date Of Issue of the front side of the Austria Dl owner. | ||
*/ | ||
@property (nonatomic, readonly) MBDateResult *dateOfIssue; | ||
|
||
/** | ||
* The first Name of the front side of the Austria Dl owner. | ||
*/ | ||
@property (nonatomic, readonly) NSString *firstName; | ||
|
||
/** | ||
* The issuing Authority of the front side of the Austria Dl owner. | ||
*/ | ||
@property (nonatomic, readonly) NSString *issuingAuthority; | ||
|
||
/** | ||
* The licence Number of the front side of the Austria Dl owner. | ||
*/ | ||
@property (nonatomic, readonly) NSString *licenceNumber; | ||
|
||
/** | ||
* The name of the front side of the Austria Dl owner. | ||
*/ | ||
@property (nonatomic, readonly) NSString *name; | ||
|
||
/** | ||
* The place Of Birth of the front side of the Austria Dl owner. | ||
*/ | ||
@property (nonatomic, readonly) NSString *placeOfBirth; | ||
|
||
/** | ||
* The vehicle Categories of the front side of the Austria Dl owner. | ||
*/ | ||
@property (nonatomic, readonly) NSString *vehicleCategories; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_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
Oops, something went wrong.