Show / Hide Table of Contents

Class TableBoundHint

A hint for a table bounding box on the page for table parsing.

Inheritance
System.Object
TableBoundHint
Implements
IMessage<TableBoundHint>
System.IEquatable<TableBoundHint>
IDeepCloneable<TableBoundHint>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DocumentAI.V1Beta2
Assembly: Google.Cloud.DocumentAI.V1Beta2.dll
Syntax
public sealed class TableBoundHint : IMessage<TableBoundHint>, IEquatable<TableBoundHint>, IDeepCloneable<TableBoundHint>, IBufferMessage, IMessage

Constructors

TableBoundHint()

Declaration
public TableBoundHint()

TableBoundHint(TableBoundHint)

Declaration
public TableBoundHint(TableBoundHint other)
Parameters
Type Name Description
TableBoundHint other

Properties

BoundingBox

Bounding box hint for a table on this page. The coordinates must be normalized to [0,1] and the bounding box must be an axis-aligned rectangle.

Declaration
public BoundingPoly BoundingBox { get; set; }
Property Value
Type Description
BoundingPoly

PageNumber

Optional. Page number for multi-paged inputs this hint applies to. If not provided, this hint will apply to all pages by default. This value is 1-based.

Declaration
public int PageNumber { get; set; }
Property Value
Type Description
System.Int32
Back to top