This package is for digital user verification system powered by Accura Scan.
Installation of package into project
-
- Step: 1
- Add accura service file into your main project directory. Right click on forms project -> Add -> Existing file -> Choose bellow file.
- IAccuraScanService.cs
- Step: 2
- Add following NewGet packages into xamarin project.
- Newtonsoft.Json
- Xamarin.Essentials
- Step: 1
-
- Step: 1
- Add bellow two projects into app. -> Right click on main app -> Add -> Existing project.
- AccuraAndroidBinding.csproj
- AccuraAndroidFinalBinding.csproj
- Step: 2
- Add both projects into yout project.Android as reference project.
- Go to project.Android -> References -> right click -> Add reference -> select both projetcs -> tap on Add button.
- Step: 3
- Add accura service file into your project.Android directory. Right click on project.Android -> Add -> Existing file -> Choose bellow file.
- AccuraScanService.cs
- Step: 1
-
- Step: 1
- Add bellow project into app. -> Right click on main app -> Add -> Existing project.
- AccuraiOSBinding.csproj
- Step: 2
- Add projects into yout project.iOS as reference project.
- Go to project.iOS -> References -> right click -> Add reference -> select projetc -> tap on Add button.
- Step: 3
- Add accura service file into your project.iOS directory. Right click on project.iOS -> Add -> Existing file -> Choose bellow file.
- AccuraScanService.cs
- Step: 4
- Download required framework AccuraKYC.framework.zip from here then export it and add it as Native Reference into "AccuraiOSBinding.csproj".
- Go to "AccuraiOSBinding.csproj" -> Native References -> right click -> Add -> choose AccuraKYC.framework
- Step: 1
- Right click on project.Android -> Options -> Android Application -> Required permissions -> choose bellow permissions into that list.
- Camera
- ReadExternalStorage
- WriteExternalStorage
- RecordAudio
- Go to project.Android -> Packages -> right click on packages -> Manage NewGet packages.
- GoogleGson
- Karamunting.AndroidX.BumpTech.Glide
- Microsoft.ML.Vision
- Square.OkHttp3
- Xamarin.Android.Support.Constraint.Layout
- Xamarin.AndroidX.AppCompat
- Xamarin.AndroidX.ConstraintLayout
- Xamarin.AndroidX.ConstraintLayout.Solver
- Xamarin.AndroidX.Core
- Xamarin.AndroidX.Lifecycle.LiveData
- Xamarin.GooglePlayServices.MLKit.FaceDetection
- Xamarin.GooglePlayServices.MLKit.Text.Recognition
- Xamarin.GooglePlayServices.Vision
- Xamarin.GooglePlayServices.Vision.Common
- Xamarin.RootBeer
- Xamarin.AndroidX.ConstraintLayout.Solver
<key>NSCameraUsageDescription</key>
<string>App usage camera for scan documents.</string>
<key>NSMicrophoneUsageDescription</key>
<string>App usage microphone for oral verification.</string>
<key>NSSpeechRecognitionUsageDescription</key>
<string>App usage speech recognition for oral verification.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>App usage photos for get document picture.</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>App usage photos for save document picture.</string>Accura has three license require for use full functionality of this library. Generate your own Accura license from here
-
- This license is compulsory for this library to work. it will get all setup of accura SDK.
-
- This license is use for get face match percentages between two face pictures.
-
- This license is use for check active liveness between face picture and selfi camera.
Note:- You have to create license of your own bundle id for iOS and app id for Android. You can not use any other app license. If you use other app license then it will return error.
1. Setup license into project.Android
- Go to project.Android -> Assets -> right click on it -> Add -> Existing files -> choose all three .license files and add it into project.
2. Setup license into iOS
- Go to project.iOS -> Resources -> right click on it -> Add -> Existing files -> choose all three .license files & gifs and add it into project.
Import Accura service into using xaml.cs file.
IAccuraScanService accuraService = DependencyService.Get<IAccuraScanService>();public partial class MainPage : ContentPage
{
public MainPage()
{
accuraService.InitSDK(new AccuraScanResultCallBack());
}
}
public class AccuraScanResultCallBack : AccuraServiceCallBack {
public void InvokeResult(string error, string result) {
if (error != null) {
// Error block.
}
else {
var resultJSON = JObject.Parse(result);
// Success block JSON response.
}
}
}-
Error: String
-
Success: JSON String Response = {
- countries: Array[<CountryModels>],
- barcodes: Array[],
- isValid: boolean,
- isOCREnable: boolean,
- isBarcode: boolean,
- isBankCard: boolean,
- isMRZ: boolean,
- sdk_version: String
}
public partial class MainPage : ContentPage
{
public MainPage()
{
JObject configObj = JObject.Parse(@"{
'ACCURA_ERROR_CODE_MOTION':'Keep Document Steady',
'ACCURA_ERROR_CODE_DOCUMENT_IN_FRAME' : 'Keep document in frame',
'ACCURA_ERROR_CODE_BRING_DOCUMENT_IN_FRAME' : 'Bring card near to frame',
'ACCURA_ERROR_CODE_PROCESSING' : 'Processing...',
'ACCURA_ERROR_CODE_BLUR_DOCUMENT' : 'Blur detect in document',
'ACCURA_ERROR_CODE_FACE_BLUR' : 'Blur detected over face',
'ACCURA_ERROR_CODE_GLARE_DOCUMENT' : 'Glare detect in document',
'ACCURA_ERROR_CODE_HOLOGRAM' : 'Hologram Detected',
'ACCURA_ERROR_CODE_DARK_DOCUMENT' : 'Low lighting detected',
'ACCURA_ERROR_CODE_PHOTO_COPY_DOCUMENT' : 'Can not accept Photo Copy Document',
'ACCURA_ERROR_CODE_FACE' : 'Face not detected',
'ACCURA_ERROR_CODE_MRZ' : 'MRZ not detected',
'ACCURA_ERROR_CODE_PASSPORT_MRZ' : 'Passport MRZ not detected',
'ACCURA_ERROR_CODE_ID_MRZ' : 'ID card MRZ not detected',
'ACCURA_ERROR_CODE_VISA_MRZ' : 'Visa MRZ not detected',
'ACCURA_ERROR_CODE_WRONG_SIDE' : 'Scanning wrong side of document',
'ACCURA_ERROR_CODE_UPSIDE_DOWN_SIDE' : 'Document is upside down. Place it properly',
'IS_SHOW_LOGO' : true,
'SCAN_TITLE_OCR_FRONT' : 'Scan Front Side of',
'SCAN_TITLE_OCR_BACK' : 'Scan Back Side of',
'SCAN_TITLE_OCR' : 'Scan',
'SCAN_TITLE_BANKCARD' : 'Scan Bank Card',
'SCAN_TITLE_BARCODE' : 'Scan Barcode',
'SCAN_TITLE_MRZ_PDF417_FRONT' : 'Scan Front Side of Document',
'SCAN_TITLE_MRZ_PDF417_BACK' : 'Now Scan Back Side of Document',
'SCAN_TITLE_DLPLATE' : 'Scan Number Plate',
}");
//Setup scanning messages & logo for OCR, MRZ, Barcode & Bankcard.
accuraService.SetupAccuraConfig(configObj.ToString(), new AccuraScanResultCallBack());
}
}
public class AccuraScanResultCallBack : AccuraServiceCallBack {
public void InvokeResult(string error, string result) {
if (error != null) {
// Error block.
}
else {
var resultJSON = JObject.Parse(result);
// Success block JSON response.
}
}
}-
config: JSON Object
- ACCURA_ERROR_CODE_MOTION: String
- ACCURA_ERROR_CODE_DOCUMENT_IN_FRAME: String
- ACCURA_ERROR_CODE_BRING_DOCUMENT_IN_FRAME: String
- ACCURA_ERROR_CODE_PROCESSING: String
- ACCURA_ERROR_CODE_BLUR_DOCUMENT: String
- ACCURA_ERROR_CODE_FACE_BLUR: String
- ACCURA_ERROR_CODE_GLARE_DOCUMENT: String
- ACCURA_ERROR_CODE_HOLOGRAM: String
- ACCURA_ERROR_CODE_DARK_DOCUMENT: String
- ACCURA_ERROR_CODE_PHOTO_COPY_DOCUMENT: String
- ACCURA_ERROR_CODE_FACE: String
- ACCURA_ERROR_CODE_MRZ: String
- ACCURA_ERROR_CODE_PASSPORT_MRZ: String
- ACCURA_ERROR_CODE_ID_MRZ: String
- ACCURA_ERROR_CODE_VISA_MRZ: String
- ACCURA_ERROR_CODE_WRONG_SIDE: String
- ACCURA_ERROR_CODE_UPSIDE_DOWN_SIDE: String
- IS_SHOW_LOGO: Boolean
- SCAN_TITLE_OCR_FRONT: String
- SCAN_TITLE_OCR_BACK: String
- SCAN_TITLE_OCR: String
- SCAN_TITLE_BANKCARD: String
- SCAN_TITLE_BARCODE: String
- SCAN_TITLE_MRZ_PDF417_FRONT: String
- SCAN_TITLE_MRZ_PDF417_BACK: String
- SCAN_TITLE_DLPLATE: String
-
Success: JSON Response { String }
-
Error: String
public partial class MainPage : ContentPage
{
public MainPage()
{
JObject configObj = JObject.Parse(@"{
'enableLogs' : false
}");
String mrz_type = "passport_mrz";
accuraService.StartMRZ(configObj.ToString(), mrz_type, "all", appOriantation, new AccuraScanResultCallBack());
}
}
public class AccuraScanResultCallBack : AccuraServiceCallBack {
public void InvokeResult(string error, string result) {
if (error != null) {
// Error block.
}
else {
var resultJSON = JObject.Parse(result);
// Success block JSON response.
}
}
}-
MRZType: String
- value: 'other_mrz' or 'passport_mrz' or 'id_mrz' or 'visa_mrz'
-
CountryList: String
- value: all or 'IND','USA'
-
Oriantation: String (Optional) (Default portrait)
- value: 'portrait' or 'landscape'
-
Success: JSON Response {
- front_data: JSONObjects?,
- back_data: JSONObjects?,
- type: Recognition Type,
- face: URI?
- front_img: URI?
- back_img: URI? }
-
Error: String
public partial class MainPage : ContentPage
{
public MainPage()
{
JObject configObj = JObject.Parse(@"{
'enableLogs' : false
}");
//Start OCR scanning.
accuraService.StartOCR(configObj.ToString(), (string)selected_country["id"], (string)selected_card["id"], (string)selected_card["name"], (string)selected_card["type"], appOriantation, new AccuraScanResultCallBack());
}
}
public class AccuraScanResultCallBack : AccuraServiceCallBack {
public void InvokeResult(string error, string result) {
if (error != null) {
// Error block.
}
else {
var resultJSON = JObject.Parse(result);
// Success block JSON response.
}
}
}-
CountryId: integer
- value: Id of selected country.
-
CardId: integer
- value: Id of selected card.
-
CardName: String
- value: Name of selected card.
-
CardType: integer
- value: Type of selected card.
-
Oriantation: String (Optional) (Default portrait)
- value: 'portrait' or 'landscape'
-
Success: JSON Response {
}
-
Error: String
public partial class MainPage : ContentPage
{
public MainPage()
{
JObject configObj = JObject.Parse(@"{
'enableLogs' : false
}");
accuraService.StartBarcode(configObj.ToString(), barcode_type, appOriantation, new AccuraScanResultCallBack());
}
}
public class AccuraScanResultCallBack : AccuraServiceCallBack {
public void InvokeResult(string error, string result) {
if (error != null) {
// Error block.
}
else {
var resultJSON = JObject.Parse(result);
// Success block JSON response.
}
}
}-
BarcodeType: String
- value: Type of barcode documents.
-
Oriantation: String (Optional) (Default portrait)
- value: 'portrait' or 'landscape'
-
Success: JSON Response {
}
-
Error: String
public partial class MainPage : ContentPage
{
public MainPage()
{
JObject configObj = JObject.Parse(@"{
'enableLogs' : false
}");
accuraService.StartBankCard(configObj.ToString(), appOriantation, new AccuraScanResultCallBack());
}
}
public class AccuraScanResultCallBack : AccuraServiceCallBack {
public void InvokeResult(string error, string result) {
if (error != null) {
// Error block.
}
else {
var resultJSON = JObject.Parse(result);
// Success block JSON response.
}
}
}-
Oriantation: String (Optional) (Default portrait)
- value: 'portrait' or 'landscape'
-
Success: JSON Response {
}
-
Error: String
public partial class MainPage : ContentPage
{
public MainPage()
{
JObject accuraConfigObj = JObject.Parse(@"{
'enableLogs' : false,
'with_face' : true,
'face_uri' : 'your face uri'
}");
JObject configObj = JObject.Parse(@"{
'feedbackTextSize' : 18,
'feedBackframeMessage' : 'Frame Your Face',
'feedBackLowLightMessage' : 'Low light detected',
'feedBackStartMessage' : 'Put your face inside the oval',
'feedBackAwayMessage' : 'Move Phone Away',
'feedBackOpenEyesMessage' : 'Keep Your Eyes Open',
'feedBackCloserMessage' : 'Move Phone Closer',
'feedBackCenterMessage' : 'Move Phone Center',
'feedBackMultipleFaceMessage' : 'Multiple Face Detected',
'feedBackHeadStraightMessage' : 'Keep Your Head Straight',
'feedBackBlurFaceMessage' : 'Blur Detected Over Face',
'feedBackGlareFaceMessage' : 'Glare Detected',
'feedBackProcessingMessage' : 'Processing...',
'setBlurPercentage' : 99,
'setGlarePercentage_0' : -1,
'setGlarePercentage_1' : -1,
'isShowLogo' : true
}");
accuraService.StartFaceMatch(accuraConfigObj.ToString(), configObj.ToString(), appOriantation, new AccuraScanResultCallBack());
}
}
public class AccuraScanResultCallBack : AccuraServiceCallBack {
public void InvokeResult(string error, string result) {
if (error != null) {
// Error block.
}
else {
var resultJSON = JObject.Parse(result);
// Success block JSON response.
}
}
}-
accuraConfs: JSON Object
- enableLogs: Boolean
- with_face: Boolean
- face_uri: URI
-
config: JSON Object
- feedbackTextSize: integer
- feedBackframeMessage: String
- feedBackAwayMessage: String
- feedBackOpenEyesMessage: String
- feedBackCloserMessage: String
- feedBackCenterMessage: String
- feedBackMultipleFaceMessage: String
- feedBackHeadStraightMessage: String
- feedBackBlurFaceMessage: String
- feedBackGlareFaceMessage: String
- setBlurPercentage: integer
- setGlarePercentage_0: integer
- setGlarePercentage_1: integer
-
Oriantation: String (Optional) (Default portrait)
- value: 'portrait' or 'landscape'
-
Success: JSON Response {
- with_face: Boolean
- status: Boolean
- detect: URI?
- score: Float
}
-
Error: String
public partial class MainPage : ContentPage
{
public MainPage()
{
JObject accuraConfigObj = JObject.Parse(@"{
'enableLogs' : false,
'with_face' : false,
'face_uri' : 'your face uri'}");
JObject configObj = JObject.Parse(@"{
'feedbackTextSize' : 18,
'feedBackframeMessage' : 'Frame Your Face',
'feedBackAwayMessage' : 'Move Phone Away',
'feedBackOpenEyesMessage' : 'Keep Your Eyes Open',
'feedBackCloserMessage' : 'Move Phone Closer',
'feedBackCenterMessage' : 'Move Phone Center',
'feedBackMultipleFaceMessage' : 'Multiple Face Detected',
'feedBackHeadStraightMessage' : 'Keep Your Head Straight',
'feedBackBlurFaceMessage' : 'Blur Detected Over Face',
'feedBackGlareFaceMessage' : 'Glare Detected',
'setBlurPercentage' : 99,
'setGlarePercentage_0' : -1,
'setGlarePercentage_1' : -1,
'isSaveImage' : true,
'liveness_url' : 'your liveness url',
'contentType' : 'form_data',
'feedBackLowLightMessage' : 'Low light detected',
'feedbackLowLightTolerence' : 39,
'feedBackStartMessage' : 'Put your face inside the oval',
'feedBackLookLeftMessage' : 'Look over your left shoulder',
'feedBackLookRightMessage' : 'Look over your right shoulder',
'feedBackOralInfoMessage' : 'Say each digits out loud',
'feedBackProcessingMessage' : 'Processing...',
'enableOralVerification' : false,
'codeTextColor' : 'white',
'isShowLogo' : true
}");
accuraService.StartLiveness(accuraConfigObj.ToString(), configObj.ToString(), appOriantation, new AccuraScanResultCallBack());
}
}
public class AccuraScanResultCallBack : AccuraServiceCallBack {
public void InvokeResult(string error, string result) {
if (error != null) {
// Error block.
}
else {
var resultJSON = JObject.Parse(result);
// Success block JSON response.
}
}
}-
accuraConfs: JSON Object
- enableLogs: Boolean
- with_face: Boolean
- face_uri: 'uri of face'
-
config: JSON Object
- feedbackTextSize: integer
- feedBackframeMessage: String
- feedBackAwayMessage: String
- feedBackOpenEyesMessage: String
- feedBackCloserMessage: String
- feedBackCenterMessage: String
- feedBackMultipleFaceMessage: String
- feedBackHeadStraightMessage: String
- feedBackBlurFaceMessage: String
- feedBackGlareFaceMessage: String
- setBlurPercentage: integer
- setGlarePercentage_0: integer
- setGlarePercentage_1: integer
- isSaveImage: Boolean
- liveness_url: URL (Require)
- contentType: String
- feedBackLowLightMessage: String
- feedbackLowLightTolerence: integer,
- feedBackStartMessage: String
- feedBackLookLeftMessage: String
- feedBackLookRightMessage: String
- feedBackOralInfoMessage: String
- enableOralVerification: Boolean,
- codeTextColor: String
-
Oriantation: String (Optional) (Default portrait)
- value: 'portrait' or 'landscape'
-
Success: JSON Response {
- with_face: Boolean,
- status: Boolean,
- detect: URI?,
- image_uri: URI?,
- video_uri: URI?,
- fm_score: Float? (when with_face = true),
- score: Float,
}
-
Error: String
| Option | Type | Default | Description |
|---|---|---|---|
| enableLogs | boolean | false | if true logs will be enabled for the app.
|
| with_face | boolean | false | need when using liveness or face match after ocr |
| face_uri | URI Sting | undefined | Required when with_face = true |
| face_base64 | Image base64 Sting | undefined | Required when with_face = true. You have to pass "face_uri" or "face_base64" |
| face1 | boolean | false | need when using facematch with “with_face = false” For Face1 set it to TRUE |
| face2 | boolean | false | need when using facematch with “with_face = false” For Face2 set it to TRUE |
| rg_setBlurPercentage | integer | 62 | 0 for clean document and 100 for Blurry document |
| rg_setFaceBlurPercentage | integer | 70 | 0 for clean face and 100 for Blurry face |
| rg_setGlarePercentage_0 | integer | 6 | Set min percentage for glare |
| rg_setGlarePercentage_1 | integer | 98 | Set max percentage for glare |
| rg_isCheckPhotoCopy | boolean | false | Set Photo Copy to allow photocopy document or not |
| rg_SetHologramDetection | boolean | true | Set Hologram detection to verify the hologram on the face true to check hologram on face |
| rg_setLowLightTolerance | integer | 39 | Set light tolerance to detect light on document |
| rg_setMotionThreshold | integer | 18 | Set motion threshold to detect motion on camera document 1 - allows 1% motion on document and 100 - it can not detect motion and allow documents to scan. |
| rg_setMinFrameForValidate | integer | 3 | Set min frame for qatar ID card for Most validated data. minFrame supports only odd numbers like 3,5... |
| rg_setCameraFacing | integer | 0 | To set the front or back camera. allows 0,1 |
| rg_setBackSide | boolean | false | set true to use backside |
| rg_setEnableMediaPlayer | boolean | true | false to disable default sound and default it is true |
| rg_customMediaURL | string | null | if given a valid URL it will download the file and use it as an alert sound. |
| SCAN_TITLE_OCR_FRONT | string | Scan Front Side of %s | |
| SCAN_TITLE_OCR_BACK | string | Scan Back Side of %s | |
| SCAN_TITLE_OCR | string | Scan %s | |
| SCAN_TITLE_BANKCARD | string | Scan Bank Card | |
| SCAN_TITLE_BARCODE | string | Scan Barcode | |
| SCAN_TITLE_MRZ_PDF417_FRONT | string | Scan Front Side of Document | |
| SCAN_TITLE_MRZ_PDF417_BACK | string | Now Scan Back Side of Document | |
| SCAN_TITLE_DLPLATE | string | Scan Number Plate | |
| ACCURA_ERROR_CODE_MOTION | string | Keep Document Steady | |
| ACCURA_ERROR_CODE_DOCUMENT_IN_FRAME | string | Keep document in frame | |
| ACCURA_ERROR_CODE_BRING_DOCUMENT_IN_FRAME | string | Bring card near to frame. | |
| ACCURA_ERROR_CODE_PROCESSING | string | Processing… | |
| ACCURA_ERROR_CODE_BLUR_DOCUMENT | string | Blur detect in document | |
| ACCURA_ERROR_CODE_FACE_BLUR | string | Blur detected over face | |
| ACCURA_ERROR_CODE_GLARE_DOCUMENT | string | Glare detect in document | |
| ACCURA_ERROR_CODE_HOLOGRAM | string | Hologram Detected | |
| ACCURA_ERROR_CODE_DARK_DOCUMENT | string | Low lighting detected | |
| ACCURA_ERROR_CODE_PHOTO_COPY_DOCUMENT | string | Can not accept Photo Copy Document | |
| ACCURA_ERROR_CODE_FACE | string | Face not detected | |
| ACCURA_ERROR_CODE_MRZ | string | MRZ not detected | |
| ACCURA_ERROR_CODE_PASSPORT_MRZ | string | Passport MRZ not detected | |
| ACCURA_ERROR_CODE_ID_MRZ | string | ID card MRZ not detected | |
| ACCURA_ERROR_CODE_VISA_MRZ | string | Visa MRZ not detected | |
| ACCURA_ERROR_CODE_WRONG_SIDE | string | Scanning wrong side of document | |
| ACCURA_ERROR_CODE_UPSIDE_DOWN_SIDE | string | Document is upside down. Place it properly |
Contact AccuraScan at contact@accurascan.com for Liveness SDK or API
| Option | Type | Default | Description |
|---|---|---|---|
| feedbackTextSize | integer | 18 | |
| feedBackframeMessage | string | Frame Your Face | |
| feedBackAwayMessage | string | Move Phone Away | |
| feedBackOpenEyesMessage | string | Keep Your Eyes Open | |
| feedBackCloserMessage | string | Move Phone Closer | |
| feedBackCenterMessage | string | Move Phone Center | |
| feedBackMultipleFaceMessage | string | Multiple Face Detected | |
| feedBackHeadStraightMessage | string | Keep Your Head Straight | |
| feedBackBlurFaceMessage | string | Blur Detected Over Face | |
| feedBackGlareFaceMessage | string | Glare Detected | |
| setBlurPercentage | integer | 80 | 0 for clean face and 100 for Blurry face or set it -1 to remove blur filter |
| setGlarePercentage_0 | integer | -1 | Set min percentage for glare or set it -1 to remove glare filter |
| setGlarePercentage_1 | integer | -1 | Set max percentage for glare or set it -1 to remove glare filter |
| isSaveImage | boolean | true | |
| liveness_url | URL string | Your liveness url | Required |
| contentType | string | form_data | param type of your liveness API |
| livenessBackground | color string | #FFC4C4C5 | |
| livenessCloseIcon | color string | #FF000000 | |
| livenessfeedbackBg | color string | #00000000 | |
| livenessfeedbackText | color string | #FF000000 | |
| feedBackLowLightMessage | string | Low light detected | |
| feedbackLowLightTolerence | integer | 39 | |
| feedBackStartMessage | string | Put your face inside the oval | |
| feedBackLookLeftMessage | string | Look over your left shoulder | |
| feedBackLookRightMessage | string | Look over your right shoulder | |
| feedBackOralInfoMessage | string | Say each digits out loud | |
| feedBackProcessingMessage | string | "Processing..." | |
| isShowLogo | boolean | true | For display watermark logo images |
| enableOralVerification | boolean | true | |
| codeTextColor | color string | #FF000000 |
| Option | Type | Default | Description |
|---|---|---|---|
| feedbackTextSize | integer | 18 | |
| feedBackframeMessage | string | Frame Your Face | |
| feedBackAwayMessage | string | Move Phone Away | |
| feedBackOpenEyesMessage | string | Keep Your Eyes Open | |
| feedBackCloserMessage | string | Move Phone Closer | |
| feedBackCenterMessage | string | Move Phone Center | |
| feedBackMultipleFaceMessage | string | Multiple Face Detected | |
| feedBackHeadStraightMessage | string | Keep Your Head Straight | |
| feedBackBlurFaceMessage | string | Blur Detected Over Face | |
| feedBackGlareFaceMessage | string | Glare Detected | |
| feedBackProcessingMessage | string | "Processing..." | |
| isShowLogo | boolean | true | For display watermark logo images |
| setBlurPercentage | integer | 80 | 0 for clean face and 100 for Blurry face or set it -1 to remove blur filter |
| setGlarePercentage_0 | integer | -1 | Set min percentage for glare or set it -1 to remove glare filter |
| setGlarePercentage_1 | integer | -1 | Set max percentage for glare or set it -1 to remove glare filter |
| backGroundColor | color string | #FFC4C4C5 | |
| closeIconColor | color string | #FF000000 | |
| feedbackBackGroundColor | color string | #00000000 | |
| feedbackTextColor | color string | #FF000000 |
- type: JSON Array
- contents: CardItems
- properties:
- id: integer
- name: string
- Cards: JSON Array
- type: JSON Array
- contents: JSON Objects
- properties:
- id: integer
- name: string
- type: integer
- type: JSON Array
- contents: JSON Objects
- properties:
- name: string
- type: integer
- MRZ
- OCR
- PDF417
- BARCODE
- DL_PLATE
- passport_mrz
- id_mrz
- visa_mrz
- other_mrz
- all
- IND,USA etc...
MIT