Setup Accura Barcode with PDF417

To initialize sdk on app start:

RecogEngine recogEngine = new RecogEngine();
RecogEngine.SDKModel sdkModel = recogEngine.initEngine(your activity context);

if (sdkModel.i > 0) { // if license is valid
     
     if (sdkModel.isAllBarcodeEnable) // RecogType.BARCODE

}

Optional: Load License File Dynamically

If you prefer to place the license file dynamically, you can use the following method. This allows you to specify the license file path at runtime. For a demo of dynamic licensing, please refer to the dynamic_license_demo branch.

RecogEngine.SDKModel sdkModel = recogEngine.initEngine(activity, "your license filepath");

Update filters like below.

Call this function after initialize sdk if license is valid(sdkModel.i > 0)

  • Set Blur Percentage to allow blur on document

  • Set Face blur Percentage to allow blur on detected Face

  • Set Glare Percentage to detect Glare on document

  • Set Hologram detection to verify the hologram on the face

  • Set light tolerance to detect light on document

  • Set motion threshold to detect motion on camera document


Set CameraView

Last updated