Does anyone know of a URL endpoint I can test to see if deepstack is running? I’ve been able to setup with blueiris and I would like to monitor the deepstack container by testing a deepstack endpoint. The API doco on the deepstack website doesn’t have any details at all.
I have setup deepstack on the cameras around my house. I have them scanning every five seconds when I’m not home and also when I go to sleep. Problem is that the one camera that points to the road picks up parked cars. Then I get the same parked car that does not move stored as a image every five seconds. Is there a way to disregard the next scan if the image is the same as the last one?
Need some help with deepstack_face, what ever i try it remains with status ‘unknow’
Can someone explain or give some input how-to do it the right way?
object_detection is working like it should.
After a night sleep my brain seems to work much better
I have now also got my old cameras to work with deepstack.
I have them in motionEye and save a snapshot when motion. Then deepstack takes the file and analyze it for persons and cars.
Imaging what a good night sleep can do
I’ve found that 3 scans waiting 3 seconds between scans is about right. I am using a 2nd pi and Coral stick to do the processing as I’ve got my home assistant setup running on a NUC and haven’t found a way to use the Coral stick on the NUC yet.
i have my coral in my mini desktop PC, and did work with Frigate so i hope it works also with deepstack.
How can i check if deepstack is using my coral?
Hi @robmarkcole. I’m having problems reading the annotations boxes. I’m red-green color blind, so that is probably some of the reason.
I tested out another application that has similar functionalities as this app. It had great boxes that was easy to read and looked great. Might be worth taking a look
So I never have any luck upgrading. I held off upgrading for a while and finning bit the bullet. Well after the upgrade it is no longer detecting objects.
The only thing in my log is:
2020-09-28 09:32:01 WARNING (MainThread) [homeassistant.loader] You are using a custom integration for deepstack_object which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant.
Hello all, and thanks @robmarkcole for this extension!
I wanted to set up a HTML5 notification push to my phone. The best way is to trigger based on the event but catching the filename of the image was not that easy. My solution is the current automation where I store the current filename-url into the new variable function of Home Assistant. This is then used to trigger the notification:
- id: '1601385011168'
alias: Person Detected
description: ''
trigger:
platform: event
event_type: deepstack.object_detected
variables:
url: >
{% set time = trigger.event.time_fired %}
{% set timestamp_custom = as_timestamp(time) | timestamp_custom("%Y-%m-%d_%H-%M-%S") %}
{% set entity_id = trigger.event.data.entity_id | regex_findall_index("\.(.*)") %}
{{ "/local/snapshots/" + entity_id + "_" + timestamp_custom + ".jpg" }}
action:
- service: notify.html5
data:
title: Person detected!
message: A {{ trigger.event.data.name }} is detected with {{ trigger.event.data.confidence }} confidence
data:
url: '{{ url }}'
image: '{{ url }}'
Hey man I know this is a bit old but I’m having the same issue. After configuring all my cams to work with motionEye I’ve been having this UnidentifiedImageError issue.
And in addition I can’t manage to install Shinobi, it breaks in the middle of installation and corrupts my SD cards, I had twice to reformat and restore my backup.
Can you update on whether Shinobi is working and you are managing to use deepstack with Home Assistant?
Thanks
Is it totally impossible to run Deepstack on a RPi 3B+ without a Coral or Intel Movidius stick? I’m currently running TFlite and would like to test first if Deepstack gives significantly better results before buying additional hardware. Do I need a RPi with 8 GB memory? I need object detection only and (currently) only for 1 camera.
I cannot answer 100% for you, but I will say I run this on an i3 NUC with 8GB without any extra hardware, and it take 8 seconds on average for an image to be processed. Sometimes longer, rarely quicker.
About use of RPi3 or RPi4, I think that the best thing will be to try. And I’m ready to do it. … So my question is: “Is there a Rpi -only (without external accelerators) dockerized version of Deepstack?” Thank you very much in advance for the answer