We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6499d31 + f102577 commit 316fb30Copy full SHA for 316fb30
README.md
@@ -5,3 +5,5 @@ Run the code like this:
5
If you want to understand how the code works, the details are here:
6
7
https://realpython.com/blog/python/face-recognition-with-python/
8
+
9
+EDIT: now works with OpenCV3.
face_detect.py
@@ -17,8 +17,8 @@
17
gray,
18
scaleFactor=1.1,
19
minNeighbors=5,
20
- minSize=(30, 30),
21
- flags = cv2.cv.CV_HAAR_SCALE_IMAGE
+ minSize=(30, 30)
+ #flags = cv2.CV_HAAR_SCALE_IMAGE
22
)
23
24
print "Found {0} faces!".format(len(faces))
0 commit comments