Table of Contents

Class TableRegion<T>

Namespace
AiDotNet.Document
Assembly
AiDotNet.dll

Represents a detected table region in a document.

public class TableRegion<T>

Type Parameters

T

The 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

int

TableIndex

Gets the table index on the page.

public int TableIndex { get; init; }

Property Value

int