Property Result
- Namespace
- LMKit.Extraction.Ocr
- Assembly
- LM-Kit.NET.dll
Result
The OCR result, if the operation succeeded. Null if OCR failed or was canceled.
public OcrResult Result { get; }
Property Value
Examples
ocrEngine.OcrCompleted += (sender, e) =>
{
if (e.Result != null)
Console.WriteLine($"Recognized text: {e.Result.PageText}");
};