Class CheckboxResult<T>
- Namespace
- AiDotNet.Document.Interfaces
- Assembly
- AiDotNet.dll
Result of checkbox detection.
public class CheckboxResult<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
CheckboxResult<T>
- Inherited Members
Properties
BoundingBox
Gets or sets the bounding box [x1, y1, x2, y2].
public Vector<T> BoundingBox { get; set; }
Property Value
- Vector<T>
Confidence
Gets or sets the confidence score as generic type.
public T Confidence { get; set; }
Property Value
- T
ConfidenceValue
Gets or sets the confidence score as double.
public double ConfidenceValue { get; set; }
Property Value
IsChecked
Gets or sets whether the checkbox is checked.
public bool IsChecked { get; set; }
Property Value
Label
Gets or sets the label associated with the checkbox.
public string Label { get; set; }