Table of Contents

Property Image

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

Image

Gets the ImageBuffer containing the raw pixel data to be used for OCR.

public ImageBuffer Image { get; }

Property Value

ImageBuffer

Examples

ImageBuffer img = parameters.Image;
Console.WriteLine($"Resolution: {img.Width}x{img.Height}");

Remarks

The ImageBuffer holds the decoded image and provides direct access to scan-line pointers, stride, and other metadata required by downstream OCR routines.

Share