Table of Contents

Class ReadingOrderResult<T>

Namespace
AiDotNet.Document
Assembly
AiDotNet.dll

Result of reading order detection.

public class ReadingOrderResult<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
ReadingOrderResult<T>
Inherited Members

Properties

Confidence

Gets or sets the confidence score as generic type.

public T Confidence { get; init; }

Property Value

T

ConfidenceValue

Gets or sets the confidence score as double.

public double ConfidenceValue { get; init; }

Property Value

double

OrderedElements

Gets or sets the ordered elements.

public IList<OrderedElement<T>> OrderedElements { get; init; }

Property Value

IList<OrderedElement<T>>

ProcessingTimeMs

Gets or sets the processing time in milliseconds.

public double ProcessingTimeMs { get; init; }

Property Value

double