Detection Event
Encapsulates output data that described objects or events detected by EyesOnIt.
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 |
---|---|---|
stream_url | string | the RTSP URL for the stream including credentials required to connect to the stream |
region | string | the name of the region where the detection occurred |
time | string | the time when the detection occurred |
class_name | string | the class of the detected object, or null if no class applies |
condition | DetectionCondition | The detection condition that triggered the detection |