Region
Encapsulates data for a detection Region which defines EyesOnIt detection for an image or video stream within a polygon region.
Example
{
"name": "Street Camera",
"stream_url": "rtsp://username:password@192.168.1.13/live0",
"frame_rate": 5,
"regions": [
{
"enabled": true,
"name": "Front Street",
"polygon": [...],
"motion_detection": {...},
"detection_configs": [...]
}
],
"lines": [...],
"notification": {...}
}
Attributes
Name | Type | Description |
---|---|---|
enabled | boolean | true to enable detection for this region. false to disable detection. |
name | string | the friendly name for this region used in the EyesOnIt Web UI and in alert notification |
polygon | array of Vertex | the vertices that form the polygon around the detection region. EyesOnIt will connect the last vertex to the first vertex to close the polygon, so it is not necessary to repeat the first vertex. |
motion_detection | MotionDetect | the motion detection configuration for the detection Region |
detection_configs | array of DetectionConfig | the detection configurations for the detection Region |