AWSRekognitionGeometry
Objective-C
@interface AWSRekognitionGeometry
Swift
class AWSRekognitionGeometry
Information about where an object (DetectCustomLabels) or text (DetectText) is located on an image.
-
An axis-aligned coarse representation of the detected item’s location on the image.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionBoundingBox *_Nullable boundingBox;
Swift
var boundingBox: AWSRekognitionBoundingBox? { get set }
-
Within the bounding box, a fine-grained polygon around the detected item.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSRekognitionPoint *> *_Nullable polygon;
Swift
var polygon: [AWSRekognitionPoint]? { get set }