Interface IOCRResult
Represents the result of an OCR recognition operation.
Namespace: Zaya.Primitives.OCR
Assembly: Zaya.Primitives.dll
Syntax
public interface IOCRResult
Properties
| Edit this page View SourceConfidence
Gets the overall confidence of the recognition (0.0 to 1.0).
Declaration
double Confidence { get; }
Property Value
| Type | Description |
|---|---|
| double |
Words
Gets the list of recognized words with their bounding boxes and confidence.
Declaration
IReadOnlyList<IOCRWord> Words { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<IOCRWord> |