Table of Contents

Class OcrResultBlock

Namespace
ScanbotSDK.MAUI.Common
Assembly
DocumentSDK.MAUI.dll

Represents a single OCR block - a word, line or paragraph

public sealed class OcrResultBlock
Inheritance
OcrResultBlock
Inherited Members

Properties

BoundingBox

The bounding box of the block in normalized coordinates - (0,0) is the top-left corner, (1,1) is the bottom-right corner.

public RectF BoundingBox { get; set; }

Property Value

RectF

Confidence

The recognition confidence as reported by the OCR engine. Higher is better.

public double Confidence { get; set; }

Property Value

double

Text

The text of the block.

public string Text { get; set; }

Property Value

string

Type

The type of the block - word, line or paragraph.

public OcrResultBlockType Type { get; set; }

Property Value

OcrResultBlockType