IRekognitionRegionOfInterest
Interface in AWS.Rekognition
Interface for RegionOfInterest.
Properties
BoundingBox
property BoundingBox: IRekognitionBoundingBox
Type: IRekognitionBoundingBox
A bounding box around the area of interest.
Polygon
property Polygon: TList<IRekognitionPoint>
Type: IRekognitionPoint
A shape made up of up to 10 points defining the area of interest.
Methods
AddPoint
function AddPoint(const APoint: IRekognitionPoint): NativeInt; overload;
Specify a point to add to Polygon.
Parameters
| Name | Description |
|---|---|
APoint | Specify a point to add to Polygon. |
Returns
The index of the point added to Polygon.
function AddPoint(const AX, AY: Single): NativeInt; overload;
Specify an X and Y coordinate for a point to add to Polygon.
Parameters
| Name | Description |
|---|---|
AX | Specify the X coordinate of the point to add to Polygon. |
AY | Specify the Y coordinate of the point to add to Polygon. |
Returns
The index of the point added to Polygon.