Frigate bird and dog identification

Hello, after seeing this post about identifiying bird species using Frigate, I wanted to see if i could expand on that and also identity dog breeds. So i created FrigateClassifier which does exactly that.

You can get started with docker compose with:

services:
  frigate_classifier:
    image: lmerza/frigate_classifier:latest
    container_name: frigate_classifier
    volumes:
      - /path/to/config:/config
    restart: unless-stopped
    environment:
      - TZ=America/New_York

and make a config.yml file in the config folder:

frigate:
  frigate_url: http://127.0.0.1:5000
  mqtt_server: 127.0.0.1
  mqtt_auth: false
  mqtt_username: username
  mqtt_password: password
  main_topic: frigate
  camera:
    - birdcam
bird_classification:
  threshold: 0.7
dog_classification:
  threshold: 0.7
logger_level: INFO

see more details at GitHub - ljmerza/FrigateClassifier: Classify dog breeds and bird species through frigate mqtt events

1 Like