Property Languages
- Namespace
- LMKit.Extraction.Ocr
- Assembly
- LM-Kit.NET.dll
Languages
Gets an optional list of Language values specifying which languages the OCR engine should recognize.
public IList<Language> Languages { get; }
Property Value
Examples
var parameters = new OcrParameters(
imageBuffer,
languages: new[] { Language.English, Language.French });
Remarks
When null (the default), the engine uses its configured default language.
Supply one or more values to override the default for this request only.
Multi-language OCR is supported (e.g., a document mixing English and French).