Skip to content

Commit e59a4ec

Browse files
committed
Add dlib doc
1 parent 7287d31 commit e59a4ec

File tree

4 files changed

+72
-1
lines changed

4 files changed

+72
-1
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: page
3+
title: "Dlib Face Detect"
4+
description: "Instructions how to integrate Dlib Face Detect into Home Assistant."
5+
date: 2017-05-05 00:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: dlib.png
11+
ha_category: Image Processing
12+
featured: false
13+
ha_release: 0.44
14+
---
15+
16+
The `dlib_face_detect` image processing platform allows you to use the [Dlib](http://www.dlib.net/) through Home Assistant. This platform enables you do detect face on camera and fire a event with attributes.
17+
18+
For using the result inside an automation rule, take a look at the [component](/components/image_processing/) page.
19+
20+
### {% linkable_title Configuration Home Assistant %}
21+
22+
```yaml
23+
# Example configuration.yaml entry
24+
image_processing:
25+
- platform: dlib_face_detect
26+
source:
27+
- entity_id: camera.door
28+
```
29+
30+
Configuration variables:
31+
32+
- **source** array (*Required*): List of image sources.
33+
- **entity_id** (*Required*): A camera entity id to get picture from.
34+
- **name** (*Optional*): This parameter allows you to override the name of your `image_processing` entity.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
layout: page
3+
title: "Dlib Face Identify"
4+
description: "Instructions how to integrate Dlib Face Identify into Home Assistant."
5+
date: 2017-01-25 00:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: dlib.png
11+
ha_category: Image Processing
12+
featured: false
13+
ha_release: 0.44
14+
---
15+
16+
The `dlib_face_identify` image processing platform allows you to use the [Dlib](http://www.dlib.net/) through Home Assistant. This platform allow you do identify persons on camera and fire a event with identify persons.
17+
18+
For using the result inside an automation rule, take a look at the [component](/components/image_processing/) page.
19+
20+
### {% linkable_title Configuration Home Assistant %}
21+
22+
```yaml
23+
# Example configuration.yaml entry
24+
image_processing:
25+
- platform: dlib_face_identify
26+
source:
27+
- entity_id: camera.door
28+
faces:
29+
Jon: /home/hass/jon.jpg
30+
Bob: /home/hass/bob.jpg
31+
```
32+
33+
Configuration variables:
34+
35+
- **source** array (*Required*): List of image sources.
36+
- **entity_id** (*Required*): A camera entity id to get picture from.
37+
- **name** (*Optional*): This parameter allows you to override the name of your `image_processing` entity.
38+
- **faces** array (*Required*): List of faces sources.

source/_components/image_processing.microsoft_face_detect.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ image_processing:
3131
3232
Configuration variables:
3333
34-
- **group** (*Required*): Microsoft Face group used to detect the person.
3534
- **confidence** (*Optional*): The minimum of confidence in percent to process with Home Assistant. Defaults to 80.
3635
- **source** array (*Required*): List of image sources.
3736
- **entity_id** (*Required*): A camera entity id to get picture from.
7.71 KB
Loading

0 commit comments

Comments
 (0)