I’m trying to add Double Take/Deepstack to my already working Frigate.
Frigate is on a dedicated container in Proxmox, while Double Take and Deepstack are HA addon
I see that Double Take can use OpenCV, but I don’t know what OpenCV is or how to use. Any starter guides or readme’s on the benefits of using opencv or what it does for Double Take?
Can someone point me out in making an automation
So i have Frigate, Double take with Deepstack trained on me, a door lock and a camera.
I make an automation in Node Red like this
When sensor.double_take_denis is door then fire door open.
But the thing is that sensor.double_take_denis remembers its previous state until changed, i have only one camera detection so it is always “DOOR”
How do i get it changed to none (like occupancy sensors)
Frigate has a very limited set of objects based on the coco set currently and may actually get MORE limited but more accurate geared toward surveillance with frigate plus. For example face detection is being added to frigate which would be more efficient that triggering double take on a person that may not be facing the camera.
But I guess Face detection will be added to Frigate Plus, right?
I really was hoping to have a reliable face detection method. I have been experimenting with Compreface, DeepStack and Codeproject.ai but all lack in reliable and effective responses. Lot’s and lot’s of false positives.
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: 85
# hours to keep match images until they are deleted
purge: 24
# minimum area in pixels to consider a result a match
min_area: 2500
#when using substream image, 3600
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: 85
# hours to keep unknown images until they are deleted
purge: 8
# minimum area in pixels to keep an unknown result
min_area: 64
Thanks a lot for that config! Still finding my way around Double Take. And trying to prevent my girlfriend finding out my home automation confuses her for my ex
Can I just copy the yaml config for double take, delete the add-on, install the error-free version and paste the config back in? Or is it more complex than that?