Interface IOCRWord
Represents a single recognized word with its text, bounding box, and confidence score.
Namespace: Zaya.Primitives.OCR
Assembly: Zaya.Primitives.dll
Syntax
public interface IOCRWord
Properties
| Edit this page View SourceBounds
Gets the oriented bounding box of the word in the image.
Declaration
BoundingBox Bounds { get; }
Property Value
| Type | Description |
|---|---|
| BoundingBox |
Confidence
Gets the confidence of the word recognition (0.0 to 1.0).
Declaration
double Confidence { get; }
Property Value
| Type | Description |
|---|---|
| double |
Text
Gets the recognized text of the word.
Declaration
string Text { get; }
Property Value
| Type | Description |
|---|---|
| string |