Does the latest version of your component require an updated version of Deepstack to be installed?
I’m getting the following error in HA logs:
Your configuration contains extra keys that the platform does not support.
Please remove [save_file_folder]. (See /config/configuration.yaml, line 350).
Offending data: {"platform": "deepstack_object", "ip_address": "<redacted>", "port": "<redacted>", "scan_interval": "<redacted>", "save_file_folder": "/config/www/deepstack_car_images", "target": "<redacted>", "source": "<redacted>"}
platform: deepstack_face
ip_address: ip of deepstack server
port: 5000
scan_interval: 5000
source:
entity_id: camera.gartenbaum
name: Garten
entity_id: camera.hoteleingang2
name: Hotel
in the state ui it looks like
What does work ?
service: image_processing.deepstack_teach_face via home assistant. I was able to teach faces and the API responces succesful that my faces are registered.
What does not work:
Any sort of facial regocnition it does not count at all. In the API logs I dont see any access from home assistant except for my image_processing.deepstack_teach_face request.
@apt be sure to remove any cached files from within the custom_components subdirectories - sounds like HA is not loading the updated files
@realfire you have set a scan interval of 5000 seconds, is that intentional? You should call the image_processing.scan service to trigger the processing manually
As general advice, if you suspect the problem is on the deepstack end, you can check for errors using cURL
Pulling down the version from Github resolved the issue. Think I may need to let @ludeeus know there may be an updating issue in HACS.
Out of interest are there any plans to limit the number of files saved? I can see the folder getting larger pretty quick. Would be good to have the option of an upper limit (10 for example) and also the ability to save the last 1 so you can refer to the last saved file within HA if needed.
@robmarkcole I am running into an issue where I believe I have the custom component setup right, and the docker container running on another device. I see the image_processing.camera devices being created, but it seems like I am not getting a connection between the Hass.iO and the deepstack container.
This sounds like a docker issue, check the port mappings, host network etc. I’m really just learning docker myself and encountering similar issues where there are gaps in my understanding