Skip to content

Commit 017a77b

Browse files
authored
Update README.md
1 parent 64cb085 commit 017a77b

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,18 @@ unknown_encoding = face_recognition.face_encodings(unknown_image)[0]
6363
results = face_recognition.compare_faces([biden_encoding], unknown_encoding)
6464
```
6565

66+
You can even use this library with other Python libraries to do real-time face recognition:
67+
68+
![](https://cloud.githubusercontent.com/assets/896692/24430398/36f0e3f0-13cb-11e7-8258-4d0c9ce1e419.gif)
69+
70+
See [this example](https://github.com/ageitgey/face_recognition/blob/master/examples/facerec_from_webcam_faster.py) for the code.
71+
6672
## Installation
6773

6874
Python 3 / Python 2 are fully supported. Only macOS and
69-
Linux are tested. I have no idea if this will work on Windows.
75+
Linux are tested. I have no idea if this will work on Windows. A
76+
[pre-configured VM](https://medium.com/@ageitgey/try-deep-learning-in-python-now-with-a-fully-pre-configured-vm-1d97d4c3e9b)
77+
is also available.
7078

7179
Install this module from pypi using `pip3` (or `pip2` for Python 2):
7280

@@ -83,6 +91,9 @@ dlib from source (instead of from pip) to fix the error:
8391
After manually installing `dlib`, try running `pip3 install face_recognition`
8492
again to complete your installation.
8593

94+
If you are still having trouble installing this, you can also try out this
95+
[pre-configured VM](https://medium.com/@ageitgey/try-deep-learning-in-python-now-with-a-fully-pre-configured-vm-1d97d4c3e9b).
96+
8697
## Usage
8798

8899
#### Command-Line Interface
@@ -191,7 +202,6 @@ else:
191202
See [this example](https://github.com/ageitgey/face_recognition/blob/master/examples/recognize_faces_in_pictures.py)
192203
to try it out.
193204

194-
195205
## Python Code Examples
196206

197207
All the examples are available [here](https://github.com/ageitgey/face_recognition/tree/master/examples).

0 commit comments

Comments
 (0)