Class: Aws::Textract::Types::Block

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

Overview

A ‘Block` represents items that are recognized in a document within a group of pixels close to each other. The information returned in a `Block` object depends on the type of operation. In text detection for documents (for example DetectDocumentText), you get information about the detected words and lines of text. In text analysis (for example AnalyzeDocument), you can also get information about the fields, tables, and selection elements that are detected in the document.

An array of ‘Block` objects is returned by both synchronous and asynchronous operations. In synchronous operations, such as DetectDocumentText, the array of `Block` objects is the entire set of results. In asynchronous operations, such as GetDocumentAnalysis, the array is returned over one or more responses.

For more information, see [How Amazon Textract Works].

[1]: docs.aws.amazon.com/textract/latest/dg/how-it-works.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#block_typeString

The type of text item that’s recognized. In operations for text detection, the following types are returned:

  • PAGE - Contains a list of the LINE ‘Block` objects that are detected on a document page.

  • WORD - A word detected on a document page. A word is one or more ISO basic Latin script characters that aren’t separated by spaces.

  • LINE - A string of tab-delimited, contiguous words that are detected on a document page.

In text analysis operations, the following types are returned:

  • PAGE - Contains a list of child ‘Block` objects that are detected on a document page.

  • KEY_VALUE_SET - Stores the KEY and VALUE ‘Block` objects for linked text that’s detected on a document page. Use the ‘EntityType` field to determine if a KEY_VALUE_SET object is a KEY `Block` object or a VALUE `Block` object.

  • WORD - A word that’s detected on a document page. A word is one or more ISO basic Latin script characters that aren’t separated by spaces.

  • LINE - A string of tab-delimited, contiguous words that are detected on a document page.

  • TABLE - A table that’s detected on a document page. A table is grid-based information with two or more rows or columns, with a cell span of one row and one column each.

  • CELL - A cell within a detected table. The cell is the parent of the block that contains the text in the cell.

  • SELECTION_ELEMENT - A selection element such as an option button (radio button) or a check box that’s detected on a document page. Use the value of ‘SelectionStatus` to determine the status of the selection element.

  • QUERY - A question asked during the call of AnalyzeDocument. Contains an alias and an ID that attachs it to its answer.

  • QUERY_RESULT - A response to a question asked during the call of analyze document. Comes with an alias and ID for ease of locating in a response. Also contains location and confidence score.

Returns:

  • (String)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#column_indexInteger

The column in which a table cell appears. The first column position is 1. ‘ColumnIndex` isn’t returned by ‘DetectDocumentText` and `GetDocumentTextDetection`.

Returns:

  • (Integer)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#column_spanInteger

The number of columns that a table cell spans. Currently this value is always 1, even if the number of columns spanned is greater than

  1. ‘ColumnSpan` isn’t returned by ‘DetectDocumentText` and

‘GetDocumentTextDetection`.

Returns:

  • (Integer)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#confidenceFloat

The confidence score that Amazon Textract has in the accuracy of the recognized text and the accuracy of the geometry points around the recognized text.

Returns:

  • (Float)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#entity_typesArray<String>

The type of entity. The following can be returned:

  • KEY - An identifier for a field on the document.

  • VALUE - The field text.

‘EntityTypes` isn’t returned by ‘DetectDocumentText` and `GetDocumentTextDetection`.

Returns:

  • (Array<String>)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#geometryTypes::Geometry

The location of the recognized text on the image. It includes an axis-aligned, coarse bounding box that surrounds the text, and a finer-grain polygon for more accurate spatial information.

Returns:



439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The identifier for the recognized text. The identifier is only unique for a single operation.

Returns:

  • (String)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#pageInteger

The page on which a block was detected. ‘Page` is returned by asynchronous operations. Page values greater than 1 are only returned for multipage documents that are in PDF or TIFF format. A scanned image (JPEG/PNG), even if it contains multiple document pages, is considered to be a single-page document. The value of `Page` is always 1. Synchronous operations don’t return ‘Page` because every input document is considered to be a single-page document.

Returns:

  • (Integer)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#queryTypes::Query

Returns:



439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#relationshipsArray<Types::Relationship>

A list of child blocks of the current block. For example, a LINE object has child blocks for each WORD block that’s part of the line of text. There aren’t Relationship objects in the list for relationships that don’t exist, such as when the current block has no child blocks. The list size can be the following:

  • 0 - The block has no child blocks.

  • 1 - The block has child blocks.

Returns:



439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#row_indexInteger

The row in which a table cell is located. The first row position is

  1. ‘RowIndex` isn’t returned by ‘DetectDocumentText` and

‘GetDocumentTextDetection`.

Returns:

  • (Integer)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#row_spanInteger

The number of rows that a table cell spans. Currently this value is always 1, even if the number of rows spanned is greater than 1. ‘RowSpan` isn’t returned by ‘DetectDocumentText` and `GetDocumentTextDetection`.

Returns:

  • (Integer)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#selection_statusString

The selection status of a selection element, such as an option button or check box.

Returns:

  • (String)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#textString

The word or line of text that’s recognized by Amazon Textract.

Returns:

  • (String)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end

#text_typeString

The kind of text that Amazon Textract has detected. Can check for handwritten text and printed text.

Returns:

  • (String)


439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/aws-sdk-textract/types.rb', line 439

class Block < Struct.new(
  :block_type,
  :confidence,
  :text,
  :text_type,
  :row_index,
  :column_index,
  :row_span,
  :column_span,
  :geometry,
  :id,
  :relationships,
  :entity_types,
  :selection_status,
  :page,
  :query)
  SENSITIVE = []
  include Aws::Structure
end