Class OcrConfig
- Namespace
 - ScanbotSDK.MAUI.Common
 
- Assembly
 - DocumentSDK.MAUI.dll
 
public class OcrConfig
  - Inheritance
 - 
      
      OcrConfig
 
- Inherited Members
 
Properties
InstalledLanguages
public List<string> InstalledLanguages { get; set; }
  Property Value
LanguageDataPath
public string LanguageDataPath { get; set; }
  Property Value
OcrMode
public OCRMode OcrMode { get; set; }
  Property Value
ScanbotOCR
The new default ML based OCR engine. [OCRMode.ScanbotOCR]. This engine mode doesn't need to set the Langauges array.
public static OcrConfig ScanbotOCR { get; }
  Property Value
Methods
Tesseract(List<string>)
The legacy OCR engine based on Tesseract. [OCRMode.Tesseract] This engine mode needs to set the Langauges array.
public static OcrConfig Tesseract(List<string> withLanguageString)