Class: Aws::Rekognition::Types::Geometry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::Geometry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Information about where an object (DetectCustomLabels) or text (DetectText) is located on an image.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bounding_box ⇒ Types::BoundingBox
An axis-aligned coarse representation of the detected item’s location on the image.
-
#polygon ⇒ Array<Types::Point>
Within the bounding box, a fine-grained polygon around the detected item.
Instance Attribute Details
#bounding_box ⇒ Types::BoundingBox
An axis-aligned coarse representation of the detected item’s location on the image.
3236 3237 3238 3239 3240 3241 |
# File 'lib/aws-sdk-rekognition/types.rb', line 3236 class Geometry < Struct.new( :bounding_box, :polygon) SENSITIVE = [] include Aws::Structure end |
#polygon ⇒ Array<Types::Point>
Within the bounding box, a fine-grained polygon around the detected item.
3236 3237 3238 3239 3240 3241 |
# File 'lib/aws-sdk-rekognition/types.rb', line 3236 class Geometry < Struct.new( :bounding_box, :polygon) SENSITIVE = [] include Aws::Structure end |