-
Notifications
You must be signed in to change notification settings - Fork 91
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 #219 from BlinkID/jenkins/master-build
Jenkins/master build
- Loading branch information
Showing
850 changed files
with
80,573 additions
and
2,600 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.
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 not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-1.09 MB
MicroBlink.bundle/nn_model_BlinkCreditCardOcr_production_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.
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
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
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,35 @@ | ||
// | ||
// MBGermanyDlBackRecognizer.h | ||
// | ||
// Created by juraskrlec on 13/11/2018 | ||
// Copyright © Microblink Ltd. All rights reserved. | ||
// | ||
|
||
#import "MBRecognizer.h" | ||
#import "MBGermanyDlBackRecognizerResult.h" | ||
|
||
#import "MBGlareDetection.h" | ||
#import "MBFullDocumentImage.h" | ||
#import "MBEncodeFullDocumentImage.h" | ||
#import "MBFullDocumentImageDpi.h" | ||
#import "MBFullDocumentImageExtensionFactors.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Recognizer which can scan back side of German DL cards. | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) MB_FINAL | ||
@interface MBGermanyDlBackRecognizer : MBRecognizer <NSCopying, MBGlareDetection, MBFullDocumentImage, MBEncodeFullDocumentImage, MBFullDocumentImageDpi, MBFullDocumentImageExtensionFactors> | ||
|
||
MB_INIT | ||
|
||
/** | ||
* Result of scanning GermanyDlBackRecognizer | ||
*/ | ||
@property (nonatomic, strong, readonly) MBGermanyDlBackRecognizerResult *result; | ||
|
||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
37 changes: 37 additions & 0 deletions
37
MicroBlink.framework/Headers/MBGermanyDlBackRecognizerResult.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,37 @@ | ||
// | ||
// MBGermanyDlBackRecognizerResult.h | ||
// | ||
// Created by juraskrlec on 13/11/2018 | ||
// Copyright © Microblink Ltd. All rights reserved. | ||
// | ||
|
||
#import "MBRecognizerResult.h" | ||
#import "MBDateResult.h" | ||
|
||
#import "MBFullDocumentImageResult.h" | ||
#import "MBEncodedFullDocumentImageResult.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Recognizer which can scan back side of German DL cards. | ||
*/ | ||
MB_CLASS_AVAILABLE_IOS(8.0) | ||
@interface MBGermanyDlBackRecognizerResult : MBRecognizerResult<NSCopying, MBFullDocumentImageResult, MBEncodedFullDocumentImageResult> | ||
|
||
MB_INIT_UNAVAILABLE | ||
|
||
/** | ||
* The date of issue for B category of German DL card. | ||
*/ | ||
@property (nonatomic, readonly) MBDateResult *dateOfIssueB10; | ||
|
||
/** | ||
* The date of issue for B category of German DL card is not specified. | ||
*/ | ||
@property (nonatomic, readonly) BOOL dateOfIssueB10NotSpecified; | ||
|
||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.