Struct aws_sdk_textract::model::Point [−][src]
Expand description
The X and Y coordinates of a point on a document page. The X and Y values that are returned are ratios of the overall document page size. For example, if the input document is 700 x 200 and the operation returns X=0.5 and Y=0.25, then the point is at the (350,50) pixel coordinate on the document page.
An array of Point
objects, Polygon
, is returned
by DetectDocumentText. Polygon
represents a fine-grained
polygon around detected text. For more information, see Geometry in the Amazon Textract
Developer Guide.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.x: f32
The value of the X coordinate for a point on a Polygon
.
y: f32
The value of the Y coordinate for a point on a Polygon
.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Point
impl UnwindSafe for Point
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more