Skip to main content
Version: 10.2.8

Add OCR step to Business Process

OCR Bridge is introduced to improve the following:

  • Performance. The step reduces throughput as it enables processing documents asynchronously without submitting redundant tasks to Control Tower Workers and receiving responses instantly in Control Tower.
  • Usability. Only one step is needed to recognize a document where the output is compatible with a labeling (ToD) Manual Task.

Create Business Process with no-code OCR step

To build a Business Process (BP) with a no-code OCR step, follow the steps:

  1. Create a BP as described in the guide.

  2. Navigate to the Workflow tab. In the step panel on the right, select Bot and click No-Code Bridge to open the list of available no-code steps.

  3. Drag the No-code OCR Bridge from the list to the workflow canvas.

  4. Double-click the step on the canvas. On the Design tab of the Bot step configuration panel, set up the step's configuration.

    If you select Google Vision or Azure as your OCR Provider, check the default configuration. The following parameters must be specified:

    • OCR Type: Enriched
    • OCR Google parameters json:
      • exportFormat: xmlForCorrectedImage,xmlWithoutRecognitionVariants
      • writeRecognitionVariants: true
      • skipPreprocessing: false
      • storePreprocessedDoc: true
      • timeout: 60

    caution

    If any of the settings are not configured as above for Google Vision or Azure, OCR throws an exception with the corresponding message.

    tip

    For more details on the configuration of multiple OCR providers, see Configure OCR provider.

  5. For a schema-based BP, enable and set up input and output contracts on the Input/Output tab as described in the guide. Then, click Save.

    Note that if set up the inputs and outputs, the whole BP becomes a schema-based one, and you will have to configure inputs and outputs for the rest of the steps in the same BP (if those are not configured yet).

  6. Go back to the Design tab and click Save again. The BP is now ready to process incoming documents with OCR.

Alternatively, you can create the same BP using a regular OCR Bridge step. The setup sequence for the step is similar to the one described below.

Set up OCR REST configuration properties

PropertyDefault valueDescription
execution.bridge.task.queueexec.<CT_HOST>.result.ocrName of the OCR Bridge queue
execution.bridge.prefetch.count100Prefetch count of the Bridge queue
execution.bridge.thread.count20Count of threads for consuming messages of the Bridge queue

Configure OCR parameters

Input parameters

ParameterCodeDefault valueDescription
Document URLdocument_urloriginal_document_urlURL of the document to be processed by OCR
OCR Typeocr_typeEnrichedOCR Type values: Standard and Enriched (prepare output for a ToD Manual Task)
S3 bucket names3_bucket_namedoc-uploadS3 bucket to store results
S3 folder names3_folder_nameemptyS3 folder to store results
OCR Providerocr_providerAbbyyOCR provider:
  • ABBYY
  • Google Vision
  • Azure Form Recognition
OCR parameters JSONocr_parametersSee belowSee the parameters in the table below.

OCR JSON default values

{
"exportFormat":"xmlForCorrectedImage,xmlWithoutRecognitionVariants",
"language": "English",
"correctSkew": true,
"correctOrientation": true,
"writeRecognitionVariants": true,
"invertImage": false,
"discardColorImage": false,
"skipPreprocessing": false,
"useOnlyCustomRegions": false,
"useDefaultPattern": false,
"profile": "documentConversion",
"removeGarbageSize": 0,
"lowResolutionMode": false,
"enhanceLocalContrast": false,
"allowedRegionTypes": null,
"changeDPI": 0,
"version": "V_2",
"storePreprocessedDoc": true,
"textTypes": ["normal"],
"timeout": 60
}

OCR parameters

ParameterValuesDescription
exportFormatOCR API export format. You can define multiple export formats using a comma as a separator: xml,xmlForCorrectedImage. Mind that, for correct processing of a ToD Manual Tasks, you cannot use more than three export formats.
txtDefault export format.
xmlContains characters or words along with their location in the original document (coordinates or frames).
xmlWithoutRecognitionVariantsThe same as xml but does not contain character-related data.
xmlForCorrectedImageThe same as xml, except the location is taken from a processed or adjusted document.
pdfSearchable
html
language
  • English
  • German
  • so on
Predefined language. You can also define multiple languages using a comma as a separator: English,German,Polish.
correctSkewbooleanThe page skew is detected and automatically corrected.
correctOrientationbooleanThe page orientation is detected. If it differs from normal, it is rotated automatically.
writeRecognitionVariantsbooleanCauses the xml and xmlForCorrectedImage formats to contain all variants of characters or words that OCR considers a possible recognition result.
invertImagebooleanInverts images.
discardColorImagebooleanLeaves only the black-and-white plane in a prepared image.
skipPreprocessingbooleanDisables all preprocessing steps for a document. The default value is false. If you set to true, the convertTo and changeDPI parameters are disabled.
useOnlyCustomRegionsbooleanSkips the original analyzing stage and extracts information from custom regions only.
useDefaultPatternbooleanIf true, it requires applying the default pattern from the OCR application bundle.
profiledocumentConversionConverts documents into editable formats.
textExtractionExtracts text from documents.
barcodeRecognitionExtracts barcodes.
removeGarbageSizeintegerRemoves garbage from images: excess dots smaller than a specific size. Optional; valid value > 0 and -1 for the automatically detected garbage size.
lowResolutionModebooleanImproves the recognition of images with low resolution.
enhanceLocalContrastbooleanSpecifies whether the local contrast of an image should be increased.
convertTononeAutomatically detects the file type and conversion to TIFF before processing (only conversion to TIFF is supported). Accepts images: PDF, PNG, JPG, JPEG.
changeDPIinteger

[50 : 3200] valid range

null or 0 for disable

Specifies a new value for the resolution, for example, changeDPI=300. The recommended resolution for a source image is 300 DPI for typical texts (10 pt or larger) and 400-600 DPI for texts in smaller fonts (9 pt or smaller).
versionV_2 ABBYY FRE 12
V_1ABBYY FRE 11
storePreprocessedDocbooleanSpecifies whether preprocessed documents should be saved in the data storage.
textTypes
  • normal
  • typewriter
  • matrix
  • ocrA
  • ocrB
  • e13b
Specifies the type of the text in the document. You can define several text types using a comma as a separator: normal,matrix.
timeoutintegerSets the maximum allowed timeout in seconds for a single task execution by an OCR Worker. The timeout countdown starts when an OCR Worker starts executing a task. When the task execution exceeds the given timeout, the task is forcibly killed. If you do not set the value, the default value (0) is used, and your Business Process (BP) does not have time to process a task.

If native_pdf_processing is set to true, the skipPreprocessing and convertTo parameters are disabled. Such parameters as changeDPI and storePreprocessedDoc take effect only on saving pages of an input PDF.

troubleshooting

In case of issues with input data, see Issues related to input data.

Output parameters

  • OCR Result: document processing results in the JSON format

    • Code: ocr_result

    • Example:

      {
      "originalDocument": "https://minio-host/doc-upload/1.pdf",
      "documents": {
      "xmlForCorrectedImage": "https://minio-host/doc-upload/bp-id/task-id/1- xmlForCorrectedImage.xml",
      "xmlWithoutRecognitionVariants": "https://minio-host/doc-upload/bp-id/task-id/1-xmlWithoutRecognitionVariants.xml"
      },
      "pageDetails": "https://minio-host/doc-upload/bp-id/task-id/preprocessed/links.json"
      }
  • Task ID: the ID of an OCR task

    • Code: task_id
    • Example: 066416ed-20e8-4e96-9df1-7f7e133f1211
  • Meta Info JSON extended info for the ToD Manual Task

    • Code: meta_info_json

    • Example:

      {
      "pages": "https://minio-host/doc-upload/bp-id/task-id/preprocessed/links.json",
      "ocrXmlUrl": "https://minio-host/doc-upload/bp-id/task-id/1-xmlWithoutRecognitionVariants.xml",
      "imageUrl": "https://minio-host/doc-upload/1.pdf"
      }
  • Process time: record process time in milliseconds

    • Code: _sys_ocr_process_time
    • Example: 24053

See a JSON example for https://minio-host/doc-upload/bp-id/task-id/preprocessed/links.json below:

[
{
"imgUrl": "https://minio-host/doc-upload/bp-id/task-id/preprocessed/1.png",
"charsUrl": "https://minio-host/doc-upload/bp-id/task-id/preprocessed/1.json",
"height": 3300,
"width": 2550,
"charsCount": 2216
}
]
tip

To set your Java Native Worker to work with OCR Bridge step data, it is recommended to use the respective dependency from the WorkFusion's repository:

<groupId>com.workfusion.spa</groupId>
<artifactId>bridge-step-contracts</artifactId>

Using the library facilitates the implementation and reduces the time to production for such solutions.