Class TableRegion<T>
Represents a detected table region in a document.
public class TableRegion<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
TableRegion<T>
- Inherited Members
Properties
BoundingBox
Gets the bounding box of the table region.
public Vector<T> BoundingBox { get; init; }
Property Value
- Vector<T>
Confidence
Gets the detection confidence.
public T Confidence { get; init; }
Property Value
- T
Image
Gets the cropped table image.
public Tensor<T>? Image { get; init; }
Property Value
- Tensor<T>
PageIndex
Gets the page index where the table was found.
public int PageIndex { get; init; }
Property Value
TableIndex
Gets the table index on the page.
public int TableIndex { get; init; }