Table of Contents

Class ExtractedEntity<T>

Namespace
AiDotNet.Document.GraphBased
Assembly
AiDotNet.dll

An extracted entity from a document.

public class ExtractedEntity<T>

Type Parameters

T

The 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

double

EntityType

Gets or sets the entity type.

public string EntityType { get; set; }

Property Value

string

Label

Gets or sets the entity label.

public string Label { get; set; }

Property Value

string

Text

Gets or sets the extracted text.

public string Text { get; set; }

Property Value

string