2019-12-08 07:03:58 -06:00
# Frigate - Realtime Object Detection for IP Cameras
Uses OpenCV and Tensorflow to perform realtime object detection locally for IP cameras. Designed for integration with HomeAssistant or others via MQTT.
2019-03-03 10:04:27 -06:00
2020-02-22 08:59:16 -06:00
Use of a [Google Coral USB Accelerator ](https://coral.withgoogle.com/products/accelerator/ ) is optional, but highly recommended. On my Intel i7 processor, I can process 2-3 FPS with the CPU. The Coral can process 100+ FPS with very low CPU load.
- Leverages multiprocessing heavily with an emphasis on realtime over processing every frame
- Uses a very low overhead motion detection to determine where to run object detection
- Object detection with Tensorflow runs in a separate process
2019-03-30 07:58:31 -05:00
- Object info is published over MQTT for integration into HomeAssistant as a binary sensor
2020-02-22 08:59:16 -06:00
- An endpoint is available to view an MJPEG stream for debugging, but should not be used continuously
2019-03-03 10:04:27 -06:00

2019-03-30 07:58:31 -05:00
## Example video (from older version)
2019-03-03 10:04:27 -06:00
You see multiple bounding boxes because it draws bounding boxes from all frames in the past 1 second where a person was detected. Not all of the bounding boxes were from the current frame.
[](http://www.youtube.com/watch?v=nqHbCtyo4dY "Frigate")
2019-01-26 08:02:59 -06:00
## Getting Started
Run the container with
2020-02-22 08:59:16 -06:00
```bash
2019-02-10 14:25:30 -06:00
docker run --rm \
2019-03-30 07:58:31 -05:00
--privileged \
2020-02-22 08:59:16 -06:00
--shm-size=512m \ # should work for a 2-3 cameras
2019-03-30 07:58:31 -05:00
-v /dev/bus/usb:/dev/bus/usb \
2019-03-05 21:42:09 -06:00
-v <path_to_config_dir>:/config:ro \
2019-12-08 08:55:19 -06:00
-v /etc/localtime:/etc/localtime:ro \
2019-01-26 08:02:59 -06:00
-p 5000:5000 \
2019-12-08 07:03:58 -06:00
-e FRIGATE_RTSP_PASSWORD='password' \
2020-03-01 07:47:22 -06:00
blakeblackshear/frigate:stable
2019-01-26 08:02:59 -06:00
```
2019-03-03 10:04:27 -06:00
Example docker-compose:
2020-02-22 08:59:16 -06:00
```yaml
2019-02-28 06:49:27 -06:00
frigate:
container_name: frigate
restart: unless-stopped
2019-03-30 07:58:31 -05:00
privileged: true
2020-02-22 08:59:16 -06:00
shm_size: '1g' # should work for 5-7 cameras
2020-03-01 07:47:22 -06:00
image: blakeblackshear/frigate:stable
2019-02-28 06:49:27 -06:00
volumes:
2019-03-30 07:58:31 -05:00
- /dev/bus/usb:/dev/bus/usb
2019-12-08 08:55:19 -06:00
- /etc/localtime:/etc/localtime:ro
2019-02-28 06:49:27 -06:00
- <path_to_config>:/config
ports:
2019-03-30 07:58:31 -05:00
- "5000:5000"
2019-02-28 06:49:27 -06:00
environment:
2019-12-08 07:03:58 -06:00
FRIGATE_RTSP_PASSWORD: "password"
2019-02-28 06:49:27 -06:00
```
2019-12-09 08:51:42 +01:00
A `config.yml` file must exist in the `config` directory. See example [here ](config/config.example.yml ) and device specific info can be found [here ](docs/DEVICES.md ).
2019-03-05 21:42:09 -06:00
2019-12-14 15:18:21 -06:00
Access the mjpeg stream at `http://localhost:5000/<camera_name>` and the best snapshot for any object type with at `http://localhost:5000/<camera_name>/<object_name>/best.jpg`
2019-01-26 08:02:59 -06:00
2020-02-22 08:59:16 -06:00
Debug info is available at `http://localhost:5000/debug/stats`
2019-03-03 10:04:27 -06:00
## Integration with HomeAssistant
```
camera:
- name: Camera Last Person
2019-07-14 08:31:21 -05:00
platform: mqtt
2019-12-14 15:18:21 -06:00
topic: frigate/<camera_name>/person/snapshot
- name: Camera Last Car
platform: mqtt
topic: frigate/<camera_name>/car/snapshot
2019-03-03 10:04:27 -06:00
2019-05-10 16:47:40 +02:00
binary_sensor:
2019-03-30 07:58:31 -05:00
- name: Camera Person
2019-03-03 10:04:27 -06:00
platform: mqtt
2019-12-14 15:18:21 -06:00
state_topic: "frigate/<camera_name>/person"
2019-05-10 16:47:40 +02:00
device_class: motion
2019-03-30 07:58:31 -05:00
availability_topic: "frigate/available"
2019-07-14 08:31:21 -05:00
automation:
- alias: Alert me if a person is detected while armed away
trigger:
platform: state
entity_id: binary_sensor.camera_person
from: 'off'
to: 'on'
condition:
- condition: state
entity_id: alarm_control_panel.home_alarm
state: armed_away
action:
- service: notify.user_telegram
data:
message: "A person was detected."
data:
photo:
2019-12-14 15:18:21 -06:00
- url: http://<ip>:5000/<camera_name>/person/best.jpg
2019-07-14 08:31:21 -05:00
caption: A person was detected.
2020-02-22 08:59:16 -06:00
sensor:
- platform: rest
name: Frigate Debug
resource: http://localhost:5000/debug/stats
scan_interval: 5
json_attributes:
- back
- coral
value_template: 'OK'
- platform: template
sensors:
back_fps:
value_template: '{{ states.sensor.frigate_debug.attributes["back"]["fps"] }}'
unit_of_measurement: 'FPS'
back_skipped_fps:
value_template: '{{ states.sensor.frigate_debug.attributes["back"]["skipped_fps"] }}'
unit_of_measurement: 'FPS'
back_detection_fps:
value_template: '{{ states.sensor.frigate_debug.attributes["back"]["detection_fps"] }}'
unit_of_measurement: 'FPS'
frigate_coral_fps:
value_template: '{{ states.sensor.frigate_debug.attributes["coral"]["fps"] }}'
unit_of_measurement: 'FPS'
frigate_coral_inference:
value_template: '{{ states.sensor.frigate_debug.attributes["coral"]["inference_speed"] }}'
unit_of_measurement: 'ms'
2019-03-03 10:04:27 -06:00
```
2020-03-01 07:47:22 -06:00
## Using a custom model
Models for both CPU and EdgeTPU (Coral) are bundled in the image. You can use your own models with volume mounts:
- CPU Model: `/cpu_model.tflite`
- EdgeTPU Model: `/edgetpu_model.tflite`
- Labels: `/labelmap.txt`
2019-03-03 10:04:27 -06:00
2019-02-04 07:10:42 -06:00
## Tips
2019-12-08 07:03:58 -06:00
- Lower the framerate of the video feed on the camera to reduce the CPU usage for capturing the feed