Frigate Stationary detection

The motion detection in general has been very active lately, and giving me constant events on 3 small kid bikes parked outside. Tagging them as Person or Motorcycle.

I guess one event per item tracked, since there is 3 events.

mqtt: 
  host: homeassistant.local
  user: homeassistant
  password: 
  
cameras:
  frontdoor:
    ffmpeg: 
      inputs:
        - path: rtsp://
          roles: 
            - detect
            - rtmp
    detect:
      width: 1920
      height: 1080
      stationary:
        interval: 0
        threshold: 50
        max_frames:
          objects:
            car: 100
            person: 100
            bicycle: 100
            cat: 100
            cow: 100
            dog: 100
            
    objects:
      track: 
        - person 
        - bicycle
#        - car
        - motorcycle
        - cow
        - dog 
        - cat
        
  doorbell:
    ffmpeg: 
      inputs:
        - path: rtsp://03cabcc9-ring-mqtt
          roles: 
            - detect
            - rtmp  
    detect:
      width: 1920
      height: 1080  
      
record:
  enabled: True
  events:
    retain:
      default: 7
      mode: active_objects
snapshots:
  # Optional: Enable writing jpg snapshot to /media/frigate/clips (default: shown below)
  # This value can be set via MQTT and will be updated in startup based on retained value
  enabled: True
  # Optional: save a clean PNG copy of the snapshot image (default: shown below)
  clean_copy: True
  # Optional: print a timestamp on the snapshots (default: shown below)
  timestamp: False
  # Optional: draw bounding box on the snapshots (default: shown below)
  bounding_box: False
  # Optional: crop the snapshot (default: shown below)
  crop: False
  # Optional: height to resize the snapshot to (default: original size)    

image