Condition
Encapsulates detection condition data for video processing.
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 |
---|---|---|
type | string | the condition type. Values can be "count_greater_than", "count_less_than", "count_equals" or "line_cross". |
count | number | if type is "count_greater_than", "count_less_than" or "count_equals", this value provides the count for the condition. Count is not used if type is "line_cross" |
line_name | string | if type is "line_cross", this value provides the name of the line for the condition. line_name is not used for count conditions. |
alert_direction | string | if type is "line_cross", this value provides the direction of the line cross that will trigger an alert. Values can be "positive" or "negative" |
objects | list of DetectionObject | The detected objects that caused the condition to be triggered |