-
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 #226 from BlinkID/jenkins/master-build
Jenkins/master build
- Loading branch information
Showing
853 changed files
with
30,661 additions
and
7,305 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 not shown.
Binary file not shown.
Binary file modified
BIN
+2 Bytes
(100%)
MicroBlink.bundle/nn_model_BlinkInputOcr_general_5.1.0.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.
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,65 @@ | ||
// | ||
// MBBruneiIdYellowFrontRecognizer.h | ||
// | ||
// Created by juraskrlec on 17/12/2018 | ||
// Copyright © Microblink Ltd. All rights reserved. | ||
// | ||
|
||
#import "MBRecognizer.h" | ||
#import "MBBruneiIdFrontRecognizerResult.h" | ||
|
||
#import "MBGlareDetection.h" | ||
#import "MBFaceImage.h" | ||
#import "MBEncodeFaceImage.h" | ||
#import "MBFaceImageDpi.h" | ||
#import "MBFullDocumentImage.h" | ||
#import "MBEncodeFullDocumentImage.h" | ||
#import "MBFullDocumentImageDpi.h" | ||
#import "MBFullDocumentImageExtensionFactors.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Recognizer which can scan front side of yellow version of Brunei ID. | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) MB_FINAL | ||
@interface MBBruneiIdFrontRecognizer : MBRecognizer<NSCopying, MBGlareDetection, MBFaceImage, MBEncodeFaceImage, MBFaceImageDpi, MBFullDocumentImage, MBEncodeFullDocumentImage, MBFullDocumentImageDpi, MBFullDocumentImageExtensionFactors> | ||
|
||
MB_INIT | ||
|
||
/** | ||
* Result of scanning BruneiIdYellowFrontRecognizer | ||
*/ | ||
@property (nonatomic, strong, readonly) MBBruneiIdFrontRecognizerResult *result; | ||
|
||
/** | ||
* Defines if date of birth of Brunei ID owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractDateOfBirth; | ||
|
||
/** | ||
* Defines if full name of Brunei ID owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractFullName; | ||
|
||
/** | ||
* Defines if place of birth of Brunei ID owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractPlaceOfBirth; | ||
|
||
/** | ||
* Defines if sex of Brunei ID owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractSex; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
53 changes: 53 additions & 0 deletions
53
MicroBlink.framework/Headers/MBBruneiIdFrontRecognizerResult.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,53 @@ | ||
// | ||
// MBBruneiIdYellowFrontRecognizerResult.h | ||
// | ||
// Created by juraskrlec on 17/12/2018 | ||
// Copyright © Microblink Ltd. All rights reserved. | ||
// | ||
|
||
#import "MBRecognizerResult.h" | ||
#import "MBDateResult.h" | ||
|
||
#import "MBFaceImageResult.h" | ||
#import "MBEncodedFaceImageResult.h" | ||
#import "MBFullDocumentImageResult.h" | ||
#import "MBEncodedFullDocumentImageResult.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Recognizer which can scan front side of yellow version of Brunei ID. | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) | ||
@interface MBBruneiIdFrontRecognizerResult : MBRecognizerResult<NSCopying, MBFaceImageResult, MBEncodedFaceImageResult, MBFullDocumentImageResult, MBEncodedFullDocumentImageResult> | ||
|
||
MB_INIT_UNAVAILABLE | ||
|
||
/** | ||
* The date of birth of Brunei ID owner. | ||
*/ | ||
@property (nonatomic, readonly) MBDateResult *dateOfBirth; | ||
|
||
/** | ||
* The document number of Brunei ID. | ||
*/ | ||
@property (nonatomic, readonly) NSString *documentNumber; | ||
|
||
/** | ||
* The full name of Brunei ID owner. | ||
*/ | ||
@property (nonatomic, readonly) NSString *fullName; | ||
|
||
/** | ||
* The place of birth of Brunei ID owner. | ||
*/ | ||
@property (nonatomic, readonly) NSString *placeOfBirth; | ||
|
||
/** | ||
* The sex of Brunei 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
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,48 +1,34 @@ | ||
// | ||
// MBCyprusIdBackRecognizer.h | ||
// MicroBlinkDev | ||
// MBCyprusIdBackRecognizer.h | ||
// | ||
// Created by juraskrlec on 21/08/2018. | ||
// Created by juraskrlec on 17/12/2018 | ||
// Copyright © Microblink Ltd. All rights reserved. | ||
// | ||
|
||
#import "MBRecognizer.h" | ||
#import "MBCyprusIdBackRecognizerResult.h" | ||
|
||
#import "MBGlareDetection.h" | ||
#import "MBFullDocumentImage.h" | ||
#import "MBEncodeFullDocumentImage.h" | ||
#import "MBFullDocumentImageDpi.h" | ||
#import "MBGlareDetection.h" | ||
#import "MBFullDocumentImageExtensionFactors.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, MBFullDocumentImageExtensionFactors> | ||
* Recognizer which can scan back side of Cyprus ID cards. | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) MB_FINAL | ||
@interface MBCyprusIdBackRecognizer : MBRecognizer<NSCopying, MBGlareDetection, MBFullDocumentImage, MBEncodeFullDocumentImage, MBFullDocumentImageDpi, MBFullDocumentImageExtensionFactors> | ||
|
||
MB_INIT | ||
|
||
/** | ||
* Result of scanning Cyprus Id Back Recognizer | ||
* Result of scanning CyprusIdBackRecognizer | ||
*/ | ||
@property (nonatomic, strong, readonly) MBCyprusIdBackRecognizerResult *result; | ||
|
||
/** | ||
* Defines if the expiry date of Cryprus ID card should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractExpiresOn; | ||
|
||
/** | ||
* Defines if sex of Cyprus ID card owner should be extracted. | ||
* | ||
* Default: YES | ||
*/ | ||
@property (nonatomic, assign) BOOL extractSex; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
28 changes: 9 additions & 19 deletions
28
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
Oops, something went wrong.