From 2243f2e0a17dc364be84fdb4fa155aedcb562d37 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Wed, 25 Feb 2026 20:45:07 -0800 Subject: [PATCH] Filter driveway zone to person/dog/cat only in Frigate Parked car was being re-detected every few minutes at night due to IR illumination noise triggering motion detection. Restrict the driveway zone to [person, dog, cat] so cars and birds no longer create events there. Cars still alert via the driveway_entrance zone. Co-Authored-By: Claude Opus 4.6 --- argocd/manifests/frigate/frigate-config.yml | 1 + docs/changelog.d/main.bugfix.md | 1 + 2 files changed, 2 insertions(+) create mode 100644 docs/changelog.d/main.bugfix.md diff --git a/argocd/manifests/frigate/frigate-config.yml b/argocd/manifests/frigate/frigate-config.yml index 8f6bff4..48e0c7a 100644 --- a/argocd/manifests/frigate/frigate-config.yml +++ b/argocd/manifests/frigate/frigate-config.yml @@ -38,6 +38,7 @@ cameras: loitering_time: 0 driveway: coordinates: 0.767,0.25,0.58,0.2,0.218,0.25,0.128,0.296,0.003,0.565,0.001,0.992,0.826,0.992,0.897,0.665,0.869,0.608,0.788,0.354 + objects: [person, dog, cat] review: alerts: labels: [person, car] diff --git a/docs/changelog.d/main.bugfix.md b/docs/changelog.d/main.bugfix.md new file mode 100644 index 0000000..9f314b4 --- /dev/null +++ b/docs/changelog.d/main.bugfix.md @@ -0,0 +1 @@ +Filter car and bird detections from Frigate driveway zone to stop repeated alerts on parked cars at night