Class ExtractedEntity<T>
- Namespace
- AiDotNet.Document.GraphBased
- Assembly
- AiDotNet.dll
An extracted entity from a document.
public class ExtractedEntity<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
ExtractedEntity<T>
- Inherited Members
Properties
BoundingBox
Gets or sets the bounding box.
public Vector<T> BoundingBox { get; set; }
Property Value
- Vector<T>
Confidence
Gets or sets the confidence score.
public T Confidence { get; set; }
Property Value
- T
ConfidenceValue
Gets or sets the confidence as a double.
public double ConfidenceValue { get; set; }
Property Value
EntityType
Gets or sets the entity type.
public string EntityType { get; set; }
Property Value
Label
Gets or sets the entity label.
public string Label { get; set; }
Property Value
Text
Gets or sets the extracted text.
public string Text { get; set; }