Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
17b8f97c
Commit
17b8f97c
authored
Feb 09, 2014
by
Davis King
Browse files
Added face detection python example
parent
a20f1544
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
python_examples/face_detector.py
python_examples/face_detector.py
+31
-0
No files found.
python_examples/face_detector.py
0 → 100755
View file @
17b8f97c
#!/usr/bin/python
# The contents of this file are in the public domain. See LICENSE_FOR_EXAMPLE_PROGRAMS.txt
#
# COMPILING THE DLIB PYTHON INTERFACE
# Dlib comes with a compiled python interface for python 2.7 on MS Windows. If
# you are using another python version or operating system then you need to
# compile the dlib python interface before you can use this file. To do this,
# run compile_dlib_python_module.bat. This should work on any operating system
# so long as you have CMake and boost-python installed. On Ubuntu, this can be
# done easily by running the command: sudo apt-get install libboost-python-dev cmake
import
dlib
,
sys
from
skimage
import
io
detector
=
dlib
.
get_frontal_face_detector
()
win
=
dlib
.
image_window
()
for
f
in
sys
.
argv
[
1
:]:
print
"processing file: "
,
f
img
=
io
.
imread
(
f
)
dets
=
detector
(
img
,
1
)
print
"number of faces detected: "
,
len
(
dets
)
win
.
clear_overlay
()
win
.
set_image
(
img
)
win
.
add_overlay
(
dets
)
raw_input
(
"Hit enter to continue"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment