run on telling example

pull/10/head
Jack Culpepper 10 years ago
parent 9b78932ab1
commit f2f4e9d0bf

@ -0,0 +1,13 @@
from PIL import Image
import numpy as np
import dlib
img = np.array(Image.open('../examples/faces/2008_002506.jpg'))
detector = dlib.get_frontal_face_detector()
dets, scores, idx = detector.run(img, 1)
for i, d in enumerate(dets):
print d, scores[i], idx[i]
Loading…
Cancel
Save