Edit

class ImageAnalysis::DetectedObject

Represents a physical object detected in an image.

Members

Name

Syntax: public std::string Name;

A label that briefly describes the detected object.

Confidence

Syntax: public double Confidence;

A score that represents the likelihood that this detection was accurate.

Confidence scores span the range of 0.0 to 1.0 (inclusive), with higher values indicating higher probability.

BoundingBox

Syntax: public Rectangle BoundingBox;

A rectangular boundary within which the object was detected.

Coordinates are are in pixels, with (0,0) being the top-left of the source image.