Table of Contents

Property Parameters

Namespace
LMKit.Extraction.Ocr
Assembly
LM-Kit.NET.dll

Parameters

The parameters that will be passed into OCR (image buffer, attachment, etc.).

public OcrParameters Parameters { get; }

Property Value

OcrParameters

Examples

ocrEngine.OcrStarting += (sender, e) =>
{
    Console.WriteLine($"Image size: {e.Parameters.ImageData.Length} bytes");
};
Share