Skip to main content

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;

IRekognitionPoint

Specify a point to add to Polygon.

Parameters

NameDescription
APointSpecify 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

NameDescription
AXSpecify the X coordinate of the point to add to Polygon.
AYSpecify the Y coordinate of the point to add to Polygon.

Returns

The index of the point added to Polygon.