Class Entity (0.12.2a0)

Entity(
    documentai_object: google.cloud.documentai_v1.types.document.Document.Entity,
    page_offset: dataclasses.InitVar[typing.Optional[int]] = 0,
)

Represents a wrapped documentai.Document.Entity.

Attributes

NameDescription
documentai_object :noindex: google.cloud.documentai.Document.Entity
Required. The original google.cloud.documentai.Document.Entity object.
page_offset :noindex: InitVar[int]
Optional. The start page of the shard containing the documentai.Document.Entity in the context of the full documentai.Document. page_refs.page is relative to the shard, not the full documentai.Document.
type_ :noindex: str
Required. Entity type from a schema e.g. "Address".
mention_text :noindex: str
Optional. Text value in the document e.g. "1600 Amphitheatre Pkwy". If the entity is not present in the document, this field will be empty.
normalized_text :noindex: str
Optional. Normalized text value in the document e.g. "1970-01-01". If the entity is not present in the document, this field will be empty.
start_page :noindex: int
Required. Page containing the Entity or the first page of the classification (for Splitter/Classifier processors).
end_page :noindex: int
Required. Last page of the classification

Methods

crop_image

crop_image(
    documentai_page: google.cloud.documentai_v1.types.document.Document.Page,
) -> typing.Optional[PIL.Image.Image]

Return image cropped from page image for detected entity.

Parameter
NameDescription
documentai_page documentai.Document

Required. The Document.Page containing the Entity.

Returns
TypeDescription
PIL.Image.ImageImage from Document.Entity. Returns None if there is no image.