Class: Aws::Textract::Types::Geometry

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb

Overview

Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bounding_boxTypes::BoundingBox

An axis-aligned coarse representation of the location of the recognized item on the document page.

Returns:



1320
1321
1322
1323
1324
1325
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 1320

class Geometry < Struct.new(
  :bounding_box,
  :polygon)
  SENSITIVE = []
  include Aws::Structure
end

#polygonArray<Types::Point>

Within the bounding box, a fine-grained polygon around the recognized item.

Returns:



1320
1321
1322
1323
1324
1325
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 1320

class Geometry < Struct.new(
  :bounding_box,
  :polygon)
  SENSITIVE = []
  include Aws::Structure
end