• This repository has been archived on 19/Mar/2023
  • Stars
    star
    202
  • Rank 189,840 (Top 4 %)
  • Language
    Jupyter Notebook
  • License
    MIT License
  • Created almost 5 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Home Assistant custom component for using Deepstack face recognition

HASS-Deepstack-face

Home Assistant custom components for using Deepstack face detection and recognition. Deepstack is a service which runs in a docker container and exposes various computer vision models via a REST API.

On you machine with docker, run Deepstack with the face recognition service active on port 80 with:

docker run -e VISION-FACE=True -v localstorage:/datastore -p 80:5000 --name deepstack deepquestai/deepstack

Home Assistant setup

Place the custom_components folder in your configuration directory (or add its contents to an existing custom_components folder). Then configure face recognition.

Note that by default the component will not automatically scan images, but requires you to call the image_processing.scan service e.g. using an automation.

Deepstack face recognition counts faces (detection) and (optionally) will recognize them if you have trained your Deepstack using the deepstack_teach_face service (takes extra time). Configuring detect_only = True results in faster processing than recognition mode, but any trained faces will not be listed in the matched_faces attribute. An event image_processing.detect_face is fired for each detected face.

The deepstack_face component adds an image_processing entity where the state of the entity is the total number of faces that are found in the camera image. Recognized faces are listed in the entity matched faces attribute. The component can optionally save snapshots of the processed images. If you would like to use this option, you need to create a folder where the snapshots will be stored. The folder should be in the same folder where your configuration.yaml file is located. In the example below, we have named the folder snapshots.

Add to your Home-Assistant config:

image_processing:
  - platform: deepstack_face
    ip_address: localhost
    port: 5000
    api_key: mysecretkey
    timeout: 5
    detect_only: False
    save_file_folder: /config/snapshots/
    save_timestamped_file: True
    save_faces: True
    save_faces_folder: /config/faces/
    show_boxes: True
    source:
      - entity_id: camera.local_file
        name: face_counter

Configuration variables:

  • ip_address: the ip address of your deepstack instance.
  • port: the port of your deepstack instance.
  • api_key: (Optional) Any API key you have set.
  • timeout: (Optional, default 10 seconds) The timout for requests to deepstack.
  • detect_only: (Optional, boolean, default False) If True, only detection is performed. If False then recognition is performed.
  • save_file_folder: (Optional) The folder to save processed images to. Note that folder path should be added to whitelist_external_dirs
  • save_timestamped_file: (Optional, default False, requires save_file_folder to be configured) Save the processed image with the time of detection in the filename.
  • save_faces: (Optional, default False, requires save_faces_folder to be configured and detect_only to be set to False) Save every recognized face to a file inside the save_faces_folder directory.
  • save_faces_folder: (Optional) The folder to save cut out faces to. Note that folder path should be added to whitelist_external_dirs
  • show_boxes: (optional, default True), if False bounding boxes are not shown on saved images
  • source: Must be a camera.
  • name: (Optional) A custom name for the the entity.

Service deepstack_teach_face

This service is for teaching (or registering) faces with deepstack, so that they can be recognized.

Example valid service data:

{
  "name": "Adele",
  "file_path": "/config/www/adele.jpeg"
}

Event image_processing.detect_face

For each face that is detected, an image_processing.detect_face event is fired. The event payload includes the following data:

  • entity_id : the entity id responsible for the event
  • name : the name of the face if recognised, otherwise unknown
  • confidence: the confidence in % of the recognition, 0 if unknown

Remember face recognition is not performed if you have configured detect_only: True.

EVENT deepstack_face.teach_face

When a face is taugh to deepstack face, an deepstack_face.teach_face event is fired. The event payload includes the following data:

  • name: the name of the face learned
  • file_path: the file path of the file used

To monitor these events from the HA UI you can use Developer tools -> EVENTS -> :Listen to events.

Object recognition

For object (e.g. person) recognition with Deepstack use https://github.com/robmarkcole/HASS-Deepstack-object

Support

For code related issues such as suspected bugs, please open an issue on this repo. For general chat or to discuss Home Assistant specific issues related to configuration or use cases, please use this thread on the Home Assistant forums.

Docker tips

Add the -d flag to run the container in background, thanks @arsaboo.

FAQ

Q1: I get the following warning, is this normal?

2019-01-15 06:37:52 WARNING (MainThread) [homeassistant.loader] You are using a custom component for image_processing.deepstack_face which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you do experience issues with Home Assistant.

A1: Yes this is normal


Q2: I hear Deepstack is open source?

A2: Yes, see https://github.com/johnolafenwa/DeepStack


Q3: What are the minimum hardware requirements for running Deepstack?

A3. Based on my experience, I would allow 0.5 GB RAM per model.


Q4: If I teach (register) a face do I need to re-teach if I restart the container?

A4: So long as you have run the container including -v localstorage:/datastore then you do not need to re-teach, as data is persisted between restarts.


Q5: I am getting an error from Home Assistant: Platform error: image_processing - Integration deepstack_object not found

A5: This can happen when you are running in Docker, and indicates that one of the dependencies isn't installed. It is necessary to reboot your device, or rebuild your Docker container. Note that just restarting Home Assistant will not resolve this.


Video of usage

Checkout this excellent video of usage from Everything Smart Home

More Repositories

1

HASS-Deepstack-object

Home Assistant custom component for using Deepstack object detection
Python
411
star
2

Hue-sensors-HASS

Support for Hue motion sensors and device tracker
Python
347
star
3

fire-detection-from-images

Detect fire in images using neural nets
Jupyter Notebook
284
star
4

mqtt-camera-streamer

Stream images from a connected camera over MQTT, view using Streamlit, record to file and sqlite
Python
194
star
5

HASS-data-detective

Explore and analyse your Home Assistant data
Python
181
star
6

deepstack-ui

UI for working with Deepstack
Python
121
star
7

HASS-plate-recognizer

Read number plates with https://platerecognizer.com/
Python
86
star
8

HASS-amazon-rekognition

Home Assistant Object detection with Amazon Rekognition
Jupyter Notebook
84
star
9

Useful-python

Python code and notebooks for reference
Jupyter Notebook
76
star
10

object-detection-app

Simple object detection app with streamlit
Python
73
star
11

tensorflow-lite-rest-server

Expose tensorflow-lite models via a rest API using FastAPI
Jupyter Notebook
73
star
12

coral-pi-rest-server

Perform inferencing of tensorflow-lite models on an RPi with acceleration from Coral USB stick
Jupyter Notebook
61
star
13

rpi-enviro-mqtt

Send air quality data from a Pimoroni RPi Enviro+ over MQTT
Jupyter Notebook
43
star
14

streamlit-image-juxtapose

A simple Streamlit Component to compare images in Streamlit apps. It integrates Knightlab's JuxtaposeJS
Python
33
star
15

HASS-Sighthound

Beta features for Home Assistant Sighthound integration
Python
33
star
16

Hue-remotes-HASS

PLEASE READ THE README
Python
31
star
17

Useful-python-for-medical-physics

Scripts that have been useful. Includes some analysis of EGSnrc 3ddose files
Jupyter Notebook
24
star
18

HASS-Machinebox-Facebox

Home Assistant face detection using Machinebox.io
Jupyter Notebook
24
star
19

HASS-Google-Vision

Instead use https://github.com/robmarkcole/HASS-amazon-rekognition
Jupyter Notebook
21
star
20

HASS-Machinebox-Classificationbox

Home-Assistant image classification using Machinebox.io
Jupyter Notebook
21
star
21

HASS-Google-Coral

RETIRED - instead use https://github.com/robmarkcole/HASS-Deepstack-object
Jupyter Notebook
18
star
22

text-insights-app

Upload an image of a document and extract text, names, facts and figures
Python
18
star
23

HASS-S3

Home Assistant integration for S3
Python
16
star
24

kaggle-ships-in-Google-Earth-with-YOLOv8

Applying YOLOv8 to Kaggle Ships in Google Earth dataset
Jupyter Notebook
16
star
25

streamlit-segmentation-app

streamlit app for binary segmentation
Python
16
star
26

HASS-Google-Cloud-SQL

Guide on using Google Cloud SQL as a database recorder for Home-assistant
Jupyter Notebook
15
star
27

bme680-mqtt

Publish bme680 data via MQTT
Python
14
star
28

bme680-mqtt-micropython

Publish data from the bme680 sensor over MQTT using micropython
Python
14
star
29

HASS-amazon-rekognition-text

Home Assistant integration to extract text from digital and mechanical displays using AWS rekognition
Python
14
star
30

HASS-Deepstack-scene

Home Assistant custom integration for using Deepstack scene recognition
Python
13
star
31

HASS-data-science

Data science with Home-assistant
Jupyter Notebook
13
star
32

robins-homeassistant-config

My Home-assistant config
Python
13
star
33

python-scripts-for-home-assistant

Python scripts for use with the home-assistant python_scripts component
Python
11
star
34

TrasportAPI-HASS

UK bus & train status TransportAPI Home-assistant component ADDED TO HA
Jupyter Notebook
11
star
35

deepstack-python

Unofficial python API for DeepStack
Jupyter Notebook
11
star
36

hassio-addons

Addons for Home Assistant
Dockerfile
10
star
37

robins-hassio-config

My home-assistant config from my experimental hassio instance
10
star
38

satellite-imagery-projects

Jupyter Notebook
10
star
39

HASS-filesize-sensor

Custom component for displaying the size (in MB) of files - ADDED TO HA 0.64
Jupyter Notebook
10
star
40

yolov5-fastapi

FastAPI app exposing yolov5 object detection
Python
10
star
41

simple-fastAPI-webapp

Use fastAPI to generate html web app that will serve a local directory or S3 bucket of images
Python
10
star
42

HASS-Clarifai

Home-Assistant image tagging with Clarifai https://clarifai.com/developer/guide/
Jupyter Notebook
9
star
43

HASS-BBC-envirobit

Stream sensor readings from the BBC micropython envirobit to Home-Assistant
Python
9
star
44

Medical_physics_imageJ

Scripts and plugins for performing analysis of images in imageJ
Python
9
star
45

deepstack-analytics

Analytics with deepstack
Jupyter Notebook
9
star
46

HASS-hammerspoon

hammerspoon script to toggle a Home-assistant switch on wake/sleep of my MacBook
Lua
8
star
47

HASS-circuitpython-air-quality-sensor-node

A circuitpython board with various air quality sensors, data processed by Home Assistant
Jupyter Notebook
8
star
48

HASS-kalman-filter

Home-Assistant custom integration adding a 1D Kalman filter
Jupyter Notebook
8
star
49

pan-tilt-hat-HASS

Custom component adding the pimoroni pan-tilt-hat to Home-assistant: tested in HA 0.94 ok
Python
7
star
50

tensorflow_files_for_home_assistant_component

All the files you need for the Home-Assistant tensorflow component
Python
7
star
51

London-tube-status

Fetch the tube status in a python dictionary
Jupyter Notebook
5
star
52

arxiv-github-scanner

Streamlit app for querying the arxiv api
Python
5
star
53

HASS-folder-sensor

Home-assistant custom component for monitoring the contents of a folder - ADDED TO HA 0.64
Jupyter Notebook
5
star
54

circuitpython-on-home-assistant

Programming and managing circuitpython boards from Home-Assistant
Python
5
star
55

HASS-Machinebox-Tagbox

Home-Assistant custom integration for image tag detection using Tagbox
Python
5
star
56

aerotech

Class to enable control of the Ensemble controllers by Aerotech using TCP
Jupyter Notebook
5
star
57

HASS-rest-image-process

Home-assistant component for image processing via local REST API machinebox.io
Python
4
star
58

aws-lambda-pytorch-image-classification-example

Example of implementing a pytorch image classifier service using AWS lambda
Python
4
star
59

streamlit-codespace

tryout Streamlit in a Github Codespace
4
star
60

wildlife-camera-trap-data-visualsation-app

Visualise wildlife camera trap data
4
star
61

robmarkcole

3
star
62

HASS-Yolo

Object detection in Home-Assistant using Yolo
3
star
63

Hue-sensors

Standalone package for parsing the Hue API data for Hue sensors
Jupyter Notebook
3
star
64

streamlit-image-table-pandas-app

Place images in a table using pandas and generate a shareable report
HTML
3
star
65

RF-doorbell-serial

Using an Arduino with RF receiver to detect when my doorbell has been pressed
Arduino
3
star
66

arduino-tensorflow-example

Code and results from https://medium.com/p/7daf95b4157
C
3
star
67

HASS-data-detective-analysis

Analysis using the HASS-data-detective package
Jupyter Notebook
3
star
68

tagbox_python

A python script to teach Machinebox/Tagbox
Python
2
star
69

fastpages-blog

My blog
Jupyter Notebook
2
star
70

fastAPI-chatGPT-experiment

Use chatGPT to create a simple fastAPI app
Python
2
star
71

quickstart-with-geotiffs

A quickstart guide to working with geotiffs
Jupyter Notebook
2
star
72

rpi-rf-mqtt

Monitor a 433 MHz signal and post to an MQTT topic - WIP - do not use
Python
2
star
73

jupyter-codespace

Tryout running jupyter notebooks in a Github Codespace
Jupyter Notebook
2
star
74

yolov5-ui

Web ui for yolov5 using Streamlit
Python
2
star
75

jupyterlite-playground

Jupyter Notebook
2
star
76

London-Air-Quality

Queries the London air quality data feed provided by Kings College London
Jupyter Notebook
2
star
77

HASS-Photo-browser

Instead use media_dirs: local: /config/images/
Jupyter Notebook
2
star
78

classificationbox_python

Python script for teaching Classificationbox image classes
Jupyter Notebook
2
star
79

simplehound

Unofficial python API for Sighthound Cloud
Jupyter Notebook
1
star
80

HASS-mqtt-camera-forwarder

Custom integration which forwards a camera feed onto an MQTT topic
Python
1
star
81

Hue-sensors-phue

Identical to Hue-sensors but using the phue package
Jupyter Notebook
1
star
82

robins-google-colaboratory

My Google CoLaboratory notebooks
Jupyter Notebook
1
star
83

artist-classification-with-ML

Train an "off-the-shelf" deep image network with color images of Impressionist paintings from the web (Seurat, Signac, Monet, Degas, Renoir, ...) for classification of both artist and simple subject matter
Jupyter Notebook
1
star
84

google-app-engine-flask-example

Working through Building a Python 3 App on App Engine tutorial
Dockerfile
1
star
85

HASS-SigFox

SigFox component for Home-Assistant
Jupyter Notebook
1
star
86

reproducible-satellite-image-analysis

Use Binder for reproducible satellite image analysis
Jupyter Notebook
1
star
87

water-sensor-micropython

Simple micropython script to detect water using a dirt cheap sensor
Python
1
star
88

HASS-rest-camera

Custom component for a camera which displays images served by a REST API
Python
1
star
89

umap-image-embedding-streamlit-app

App to explore umap image embeddings for MNIST class datasets
Jupyter Notebook
1
star