Be Counted!
Getting Started | Start counting! | getting-started.md | |
Help & FAQ | Find answers to common issues In addition to discussions, issues, and chat. | ||
Contribute | Contribute back to the open source project |
Frigate > Settings > Debug to see how your object detection settings are working
Properly configured Frigate Zones
Build It! | See our Build your own device (DIY) guide. The software is open source and components are available retail. | Customize to your heart's content. | icon-diy-350x200px-black-bg_grey.png | build-your-own-device-diy |
Buy It! | (coming soon) | Purchase a pre-built traffic monitor or kit from the Roadway Biome Project. | icon-shop-350x200px-black-bg_grey.png |
LED Display showing daily counts capture with the traffic monitor
Attribute | Description | SQLite data type | Valid values |
---|---|---|---|
id | UUID for object detection. Will be generated by `source` Frigate-generated from MQTT event `end`. Radar-generated from flow. | TEXT, PRIMARY KEY | Frigate: Unix timestamp in seconds concatenated to a hyphen and randomly-generated 6-alphanumeric value; e.g. "1721144705.617111-fg3luy" Radar: Unix timestamp in seconds concatenated to a hyphen and randomly-generated 8-alphanumeric value concatenated with a hypen r '-r'; e.g. "1721144705.617111-fg3luy4x-r" |
camera | Name of camera for object detection (defined in Frigate config). Frigate-generated from MQTT event `end`. | TEXT | Free-text |
label | Object label assigned by Frigate. Frigate-generated from MQTT event `end`. | TEXT | Assigned by model, based on Frigate available objects |
sub_label | Additional informatoin assigned to Frigate event. Frigate-generated from MQTT event `end`. | TEXT | Assigned via Frigate HTTP API |
top_score | Model inference score for object label. This is the highest score as object moved through field of view. Frigate-generated from MQTT event `end`. | REAL | 0-1 value |
frame_time | Unix timestamp in seconds for when the object was optimally identified by Frigate for the field of view. Frigate-generated from MQTT event `end`. | REAL | Unix timestamp in Seconds |
start_time | Unix timestamp in seconds for when the object first entered the field of view. Frigate-generated from MQTT event `end`. | REAL | Unix timestamp in Seconds |
end_time | Unix timestamp in seconds for when the object exited the field of view. Frigate-generated from MQTT event `end`. | REAL | Unix timestamp in Seconds |
entered_zones | JSON array list of zones in order the object entered each zone. Specified zones are used for various calculations. Frigate-generated from MQTT event `end`. | TEXT | Free-text via Frigate; expected: - "zone_capture" - region for counting objects - "zone_radar" - radar detection field of view (FOV) - "zone_near" - area closest to radar, for determining visual direction - "zone_far" - area furthest from radar, for determining visual direction |
score | Model inference score for the object to initiate tracking. Computed score as object moves through field of view. Frigate-generated from MQTT event `end`. | REAL | 0-1 value |
area | Width*height of the bounding box for the detected object Frigate-generated from MQTT event `end`. | REAL | 0-24000000 |
ratio | Width/height of the bounding box for the detected object; e.g. 0.5 is tall (twice as high as wide box) Frigate-generated from MQTT event `end`. | REAL | 0-24000000 |
motionless_count | Number of frames the object has been motionless Frigate-generated from MQTT event `end`. | REAL | Integer count; e.g. 0 |
position_changes | Number of times the object has changed position Frigate-generated from MQTT event `end`. | REAL | Integer count; e.g. 2 |
attributes | Attributes with top score that have been identified on the object at any point Frigate-generated from MQTT event `end`. | TEXT, JSON | JSON object with key:value pairs; e.g. {"face": 0.86} |
direction_calc | Assigned object moving direction relative to device placement; i.e. "outbound" is moving away from device. | TEXT | "outbound" or "inbound" |
speed_calc | Assigned speed/velocity calculated for entire time object was in the camera's field of view. | REAL | Positive, Negative corresponding to inbound and outbound direction, respectively |
provenance | Source(s) of event detection. List any sensor on the device that captured or created this event. The first item in the array is considered the primary source. | TEXT, JSON | JSON Array with every sensor that confirms the same event. e.g. Camera sensor: frigate, Radar sensor: radar |
radarName | Radar sensor name that is associated (via config) with the camera during the event, regardless if event was confirmed by radar (see provenance). | TEXT | Free-text, defined from configs |
deployment_id | Each ID represents a unique deployment configuration and/or location for the device. This acts a foreign key link to the `deployment` table, `id` column. | TEXT, FOREIGN KEY | `deployment`.`id` foreign key, may be null |
Maximum speed/velocity calculated for all measurements object was detected in the radar zone.
`DetectedObjectVelocity` from API
Properly configured Frigate Zones