Detection
A detection record returned by image, video, and stream-processing endpoints.
Example
{
"region": "Front Entrance",
"class_name": "person",
"stream_url": "rtsp://camera/live",
"stream_name": "Warehouse Camera 01",
"time": "2025-03-17T22:27:33Z",
"frame_num": 875,
"condition": {
"type": "count_greater_than",
"count": 0,
"objects": []
},
"objects": []
}
Fields
| Field | Type | Description |
|---|---|---|
region | string | Region name where the detection occurred. |
class_name | string | Detected class when class-based detection is used. |
objects | Detection Object[] | Object matches returned for image processing results. |
stream_url | string | Stream URL for stream or video detections. |
stream_name | string | Stream or job name when provided by the server. |
time | string | Detection time in ISO format for stream or video detections. |
frame_num | number | Frame number for stream or video detections. |
event | string | Event label returned with stream or video detections. |
object_description | string | Primary object description when provided by the server. |
condition | Detection Condition | Triggering condition for stream or video detections. |
result_id | string | Search result identifier when available. |
image | string | Base64-encoded detection image when provided. |