-
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 #313 from BlinkID/jenkins/stable-build
Jenkins/stable build
- Loading branch information
Showing
801 changed files
with
32,007 additions
and
2,682 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 not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file renamed
BIN
+16.8 KB
...ndle/BlinkID_Analyzer_general_6.3.0.strop → ...work/BlinkID_Analyzer_general_6.3.0.strop
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+7.38 KB
...nkID_MoireClassifier_malaysia_6.0.0.strop → ...nkID_MoireClassifier_malaysia_6.0.0.strop
Binary file not shown.
Binary file renamed
BIN
+7.31 KB
..._MonochromeClassifier_general_6.0.0.strop → ..._MonochromeClassifier_general_6.0.0.strop
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+357 KB
...oblink.bundle/BlinkID_Ocr_mrz_6.2.0.strop → ...ink.framework/BlinkID_Ocr_mrz_6.2.0.strop
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
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,38 @@ | ||
// | ||
// MBAnonymizationMode.h | ||
// MicroblinkDev | ||
// | ||
// Created by Jura Skrlec on 06/07/2020. | ||
// | ||
|
||
#ifndef MBAnonymizationMode_h | ||
#define MBAnonymizationMode_h | ||
|
||
/** | ||
* MBAnonymizationMode is used to define level of anonymization performed on recognizer result. | ||
*/ | ||
typedef NS_ENUM(NSInteger, MBAnonymizationMode) { | ||
|
||
/** | ||
* Anonymization will not be performed. | ||
*/ | ||
MBAnonymizationModeNone = 0, | ||
|
||
/** | ||
* FullDocumentImage is anonymized with black boxes covering sensitive data. | ||
*/ | ||
MBAnonymizationModeImageOnly, | ||
|
||
/** | ||
* Result fields containing sensitive data are removed from result. | ||
*/ | ||
MBAnonymizationModeResultFieldsOnly, | ||
|
||
/** | ||
* This mode is combination of ImageOnly and ResultFieldsOnly modes. | ||
*/ | ||
MBAnonymizationModeFullResult | ||
}; | ||
|
||
|
||
#endif /* MBAnonymizationMode_h */ |
Oops, something went wrong.