AWSTextractGeometry

Objective-C

@interface AWSTextractGeometry

Swift

class AWSTextractGeometry

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

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

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTextractBoundingBox *_Nullable boundingBox;

    Swift

    var boundingBox: AWSTextractBoundingBox? { get set }
  • Within the bounding box, a fine-grained polygon around the recognized item.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSTextractPoint *> *_Nullable polygon;

    Swift

    var polygon: [AWSTextractPoint]? { get set }