Builder

class Builder

Properties

Link copied to clipboard

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

Link copied to clipboard

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

Link copied to clipboard

The number of columns that a table cell spans. ColumnSpan isn't returned by DetectDocumentText and GetDocumentTextDetection.

Link copied to clipboard

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.

Link copied to clipboard

The type of entity.

Link copied to clipboard

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.

Link copied to clipboard
var id: String?

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

Link copied to clipboard
var page: Int?

The page on which a block was detected. Page is returned by synchronous and 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) provided to an asynchronous operation, even if it contains multiple document pages, is considered a single-page document. This means that for scanned images the value of Page is always 1.

Link copied to clipboard
var query: Query?
Link copied to clipboard

A list of relationship objects that describe how blocks are related to each other. For example, a LINE block object contains a CHILD relationship type with the WORD blocks that make up 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.

Link copied to clipboard

The row in which a table cell is located. The first row position is 1. RowIndex isn't returned by DetectDocumentText and GetDocumentTextDetection.

Link copied to clipboard
var rowSpan: Int?

The number of rows that a table cell spans. RowSpan isn't returned by DetectDocumentText and GetDocumentTextDetection.

Link copied to clipboard

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

Link copied to clipboard
var text: String?

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

Link copied to clipboard

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

Functions

Link copied to clipboard
Link copied to clipboard
fun query(block: Query.Builder.() -> Unit)