Class OcrDocAdvancedResult
Result from ReadDocumentAdvanced(OcrInputBase)
Give an access to: Text, Confidence, Tables, and NoOutlineRegions
Inheritance
System.Object
OcrDocAdvancedResult
Implements
IronSoftware.IOcrResult
Namespace: IronOcr
Assembly: IronOcr.dll
Syntax
public class OcrDocAdvancedResult : Object, IOcrResult
Properties
Confidence
Ocr statistical accuracy confidence as an average of every character.
1 = 100%, 0 = 0%.
Declaration
public double Confidence { get; }
Property Value
Type | Description |
---|---|
System.Double |
NoOutlineRegions
Collection of Ocr region without outlines from OcrInput
Declaration
public IEnumerable<NoOutlineRegion> NoOutlineRegions { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<NoOutlineRegion> |
Tables
Collection of recognized tables and their informations from OcrInput
Declaration
public Tables Tables { get; }
Property Value
Type | Description |
---|---|
Tables |
Remarks
Only tables with clarity outlines can be reconized.
Text
All Ocr texts from OcrInput.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String |
Implements
IronSoftware.IOcrResult