public sealed class TableExtractionParams : IMessage<TableExtractionParams>, IEquatable<TableExtractionParams>, IDeepCloneable<TableExtractionParams>, IBufferMessage, IMessage
Parameters to control table extraction behavior.
Implements
IMessage<TableExtractionParams>, IEquatable<TableExtractionParams>, IDeepCloneable<TableExtractionParams>, IBufferMessage, IMessageNamespace
Google.Cloud.DocumentAI.V1Beta2Assembly
Google.Cloud.DocumentAI.V1Beta2.dll
Constructors
TableExtractionParams()
public TableExtractionParams()
TableExtractionParams(TableExtractionParams)
public TableExtractionParams(TableExtractionParams other)
Name | Description |
other | TableExtractionParams |
Properties
Enabled
public bool Enabled { get; set; }
Whether to enable table extraction.
Type | Description |
Boolean |
HeaderHints
public RepeatedField<string> HeaderHints { get; }
Optional. Table header hints. The extraction will bias towards producing these terms as table headers, which may improve accuracy.
Type | Description |
RepeatedField<String> |
ModelVersion
public string ModelVersion { get; set; }
Model version of the table extraction system. Default is "builtin/stable". Specify "builtin/latest" for the latest model.
Type | Description |
String |
TableBoundHints
public RepeatedField<TableBoundHint> TableBoundHints { get; }
Optional. Table bounding box hints that can be provided to complex cases which our algorithm cannot locate the table(s) in.
Type | Description |
RepeatedField<TableBoundHint> |