-
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 #197 from BlinkID/jenkins/master-build
Jenkins/master build
- Loading branch information
Showing
763 changed files
with
61,795 additions
and
8,489 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 modified
BIN
-2 Bytes
(100%)
MicroBlink.bundle/nn_model_BlinkIDOcr_production_4.1.2.zzip
Binary file not shown.
Binary file modified
BIN
-11 Bytes
(100%)
MicroBlink.bundle/nn_model_BlinkInputOcr_production_4.1.0.zzip
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
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,40 @@ | ||
// | ||
// MBCyprusIdBackRecognizer.h | ||
// MicroBlinkDev | ||
// | ||
// Created by juraskrlec on 21/08/2018. | ||
// | ||
|
||
#import "MBRecognizer.h" | ||
#import "MBCyprusIdBackRecognizerResult.h" | ||
|
||
#import "MBFullDocumentImage.h" | ||
#import "MBEncodeFullDocumentImage.h" | ||
#import "MBFullDocumentImageDpi.h" | ||
#import "MBGlareDetection.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Recognizer which can scan back side of Cyprus national ID cards. | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) | ||
@interface MBCyprusIdBackRecognizer : MBRecognizer <NSCopying, MBFullDocumentImage, MBEncodeFullDocumentImage, MBFullDocumentImageDpi, MBGlareDetection> | ||
|
||
MB_INIT | ||
|
||
/** | ||
* Result of scanning Cyprus Id Back Recognizer | ||
*/ | ||
@property (nonatomic, strong, readonly) MBCyprusIdBackRecognizerResult *result; | ||
|
||
/** | ||
* Defines if sex of Cyprus ID card owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractSex; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
36 changes: 36 additions & 0 deletions
36
MicroBlink.framework/Headers/MBCyprusIdBackRecognizerResult.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,36 @@ | ||
// | ||
// MBCyprusIdBackRecognizerResult.h | ||
// MicroBlinkDev | ||
// | ||
// Created by juraskrlec on 21/08/2018. | ||
// | ||
|
||
#import "MBRecognizerResult.h" | ||
#import "MBDateResult.h" | ||
|
||
#import "MBFullDocumentImageResult.h" | ||
#import "MBEncodedFullDocumentImageResult.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Class representing values obtained when scanning back side of the Cyprus Id | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) | ||
@interface MBCyprusIdBackRecognizerResult : MBRecognizerResult<NSCopying, MBFullDocumentImageResult, MBEncodedFullDocumentImageResult> | ||
|
||
MB_INIT_UNAVAILABLE | ||
|
||
/** | ||
* The date Of Birth of the back side of the Cyprus Id owner. | ||
*/ | ||
@property (nonatomic, readonly) MBDateResult *dateOfBirth; | ||
|
||
/** | ||
* The sex of the back side of the Cyprus Id owner. | ||
*/ | ||
@property (nonatomic, readonly) NSString *sex; | ||
|
||
@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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// | ||
// MBCyprusIdFrontRecognizer.h | ||
// MicroBlinkDev | ||
// | ||
// Created by juraskrlec on 21/08/2018. | ||
// | ||
|
||
#import "MBRecognizer.h" | ||
#import "MBCyprusIdFrontRecognizerResult.h" | ||
|
||
#import "MBFaceImage.h" | ||
#import "MBEncodeFaceImage.h" | ||
#import "MBFaceImageDpi.h" | ||
#import "MBFullDocumentImage.h" | ||
#import "MBEncodeFullDocumentImage.h" | ||
#import "MBFullDocumentImageDpi.h" | ||
#import "MBGlareDetection.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Recognizer which can scan front side of Cyprus national ID cards. | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) | ||
@interface MBCyprusIdFrontRecognizer : MBRecognizer <NSCopying, MBFaceImage, MBEncodeFaceImage, MBFaceImageDpi, MBFullDocumentImage, MBEncodeFullDocumentImage, MBFullDocumentImageDpi, MBGlareDetection> | ||
|
||
MB_INIT | ||
|
||
/** | ||
* Result of scanning Cyprus Id Front Recognizer | ||
*/ | ||
@property (nonatomic, strong, readonly) MBCyprusIdFrontRecognizerResult *result; | ||
|
||
/** | ||
* Defines if document number of Cyprus ID card should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDocumentNumber; | ||
|
||
/** | ||
* Defines if name of Cyprus ID card owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractName; | ||
|
||
/** | ||
* Defines if surname of Cyprus ID card owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractSurname; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.