#Frigate Detection doesn't exist?

5 messages · Page 1 of 1 (latest)

atomic crow
#

I am struggling to get my frigate card working (topic for a different thread). BUT, it is working well enough that I saw a preview card this morning of myself standing in front of the camera and identified as a PERSON in frigate.

When I go into Frigate to find the clip, I can't find any detections, alerts, motion, anything.

What am I missing?? I recently updated my HA and all components after a period of letting it run out of date, so the interfaces are new to me and I'm not sure if I need to change a setting or smthg like that.

loud badger
#

if recordings are disabled then a review item won't be created

#

other than that, maybe you have required_zones set for alerts / detections and didn't enter that zone

atomic crow
#

here's the parts I thnk are relevant

cameras:
  Front_Walk: # <------ Name the camera
    ffmpeg:
      inputs:
        - path: rtsp://stream:easton44@192.168.1.41:554/cam/realmonitor?channel=1&subtype=1 # <----- The stream you want to use for detection
          roles:
            - detect
        - path: rtsp://stream:easton44@192.168.1.41:554/cam/realmonitor?channel=1&subtype=0 # <----- The stream you want to use for recording
          roles:
            - record
    detect:
      enabled: true # <---- disable detection until you have a working camera feed
      width: 1920 # <---- update for your camera's resolution
      height: 1080 # <---- update for your camera's resolution
    motion: #remove tree leaves from triggering motion sensor
      mask:
        - 1920,0,1920,262,1525,111,1545,445,647,655,338,336,615,0
    zones:
      zone_front_yard:
        coordinates: 
          0,1080,1920,1080,1920,352,1709,282,1376,198,811,131,485,125,338,155,336,84,267,87,0,136
      sidewalk:
        coordinates: 569,111,1920,351,1920,330,1768,270,1551,208,1360,170,1231,136,1084,127,541,94
    review:
      alerts:
        required_zones:
          - zone_front_yard
  Backyard: # <------ Name the camera
    ffmpeg:
      inputs:
        - path: rtsp://stream:easton44@192.168.1.42:554/cam/realmonitor?channel=1&subtype=1 # <----- The stream you want to use for detection
          roles:
            - detect
        - path: rtsp://stream:easton44@192.168.1.42:554/cam/realmonitor?channel=1&subtype=0 # <----- The stream you want to use for recording
          roles:
            - record
    detect:
      enabled: true # <---- disable detection until you have a working camera feed
      width: 1920 # <---- update for your camera's resolution
      height: 1080 # <---- update for your camera's resolution
    record:
      enabled: true

objects:
  track:
    - person
   
snapshots:
  enabled: true
  retain:
    default: 30

birdseye:
  enabled: true
atomic crow
#

@loud badger any idea what I'm missing in this config?