Class ReadingOrderResult<T>
Result of reading order detection.
public class ReadingOrderResult<T>
Type Parameters
TThe 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
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; }