ObjectDetectionResult
Wrapper for the native object detection result buffer.
Declaration
class ObjectDetectionResultProperties
| Name | Type | Summary |
|---|---|---|
| awarenessParams | AwarenessImageParams | Inference meta-data. |
| boundingBoxLocations | FloatArray? | Corner points of the bounding box. Length: numDetections * 4 |
| imageParams | ObjectDetectionImageParams | Dimensions of the source image and models input dimensions. |
| numClasses | Int | The number of possible classifications per object. |
| numDetections | Int | The number of detected objects. |
| probabilities | FloatArray? | The probabilities (detection confidence) buffer. Length: numDetections * numClasses |
| trackingIds | IntArray? | [Optional] Ids for tracking the same object through inference frames. Length = numDetections |