@@ -63,10 +63,18 @@ unknown_encoding = face_recognition.face_encodings(unknown_image)[0]
63
63
results = face_recognition.compare_faces([biden_encoding], unknown_encoding)
64
64
```
65
65
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
+
66
72
## Installation
67
73
68
74
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.
70
78
71
79
Install this module from pypi using ` pip3 ` (or ` pip2 ` for Python 2):
72
80
@@ -83,6 +91,9 @@ dlib from source (instead of from pip) to fix the error:
83
91
After manually installing ` dlib ` , try running ` pip3 install face_recognition `
84
92
again to complete your installation.
85
93
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
+
86
97
## Usage
87
98
88
99
#### Command-Line Interface
@@ -191,7 +202,6 @@ else:
191
202
See [ this example] ( https://github.com/ageitgey/face_recognition/blob/master/examples/recognize_faces_in_pictures.py )
192
203
to try it out.
193
204
194
-
195
205
## Python Code Examples
196
206
197
207
All the examples are available [ here] ( https://github.com/ageitgey/face_recognition/tree/master/examples ) .
0 commit comments