Bounding Box
Provides data for the bounding box of a detected object
Example
"detections": [
{
"stream_url": "rtsp://192.168.1.14/live0",
"region": "Office",
"time": "2025-02-25 16:00:44",
"class_name": "person",
"condition": {
"type": "count_greater_than",
"count": 0,
"line_name": null,
"alert_direction": null,
"objects": [
{
"object_description": "person standing",
"confidence": 93,
"bounds": {
"left": 939,
"top": 305,
"width": 341,
"height": 412
}
}
]
},
}
]
Attributes
Name | Type | Description |
---|---|---|
left | number | the pixel value for the left side of the bounding box |
top | number | the pixel value for the top of the bounding box |
width | number | the width of the bounding box in pixels |
height | number | the height of the bounding box in pixels |