jakowenko / double-take

Unified UI and API for processing and training images for facial recognition.
https://hub.docker.com/r/jakowenko/double-take
MIT License
1.25k stars 99 forks source link

[BUG] Zones not working #333

Open timknowlden opened 1 year ago

timknowlden commented 1 year ago
  # only process images from specific cameras
  cameras:
    # - front-door
    # - garage

  # only process images from specific zones
  zones:
    # - camera: garage
    #   zone: driveway

Sample config from gitub page above, mine below, camera only working with config, but not zones (still processing all zones on that one camera).


  host: !secret mqttip
  username: !secret mqttuser
  password: !secret mqttpass
detect:
  match:
    # save match images
    save: true
    # include base64 encoded string in api results and mqtt messages
    # options: true, false, box
    base64: false
    # minimum confidence needed to consider a result a match
    confidence: 80
    # hours to keep match images until they are deleted
    purge: 168
    # minimum area in pixels to consider a result a match
    min_area: 10000

  unknown:
    # save unknown images
    save: true
    # include base64 encoded string in api results and mqtt messages
    # options: true, false, box
    base64: false
    # minimum confidence needed before classifying a name as unknown
    confidence: 60
    # hours to keep unknown images until they are deleted
    purge: 8
    # minimum area in pixels to keep an unknown result
    min_area: 0
frigate:
  url: !secret frigateip
  attempts:
    latest: 10
    snapshot: 10  
    mqtt: true
    update_sub_labels: true
    stop_on_match: false
    min_area: 5625
  image:
    height: 1920
  cameras:
  - front_door
  zones:
    - camera: front_door
      zone: doorbell
detectors:
  compreface:
    url: !secret faceip
    key: !secret facekey```
pipip commented 7 months ago

I have the same issue