Table of Contents

Field PageElement

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

Gets the page representation constructed from the model’s completion.

public readonly PageElement PageElement

Returns

PageElement
Gets the page representation constructed from the model’s completion.

Examples

VlmOcr.VlmOcrResult result = ocr.Run(image);
Console.WriteLine($"Recognized: {result.PageElement.Text}");

Remarks

The PageElement encapsulates the recognized textual content in a layout-friendly form that can be consumed by higher-level extraction or document-processing components.

Share