Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
205b26f8
Commit
205b26f8
authored
Sep 11, 2017
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved citations
parent
04e034a7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
face_landmark_detection.py
python_examples/face_landmark_detection.py
+12
-4
No files found.
python_examples/face_landmark_detection.py
View file @
205b26f8
...
@@ -6,19 +6,27 @@
...
@@ -6,19 +6,27 @@
# points on the face such as the corners of the mouth, along the eyebrows, on
# points on the face such as the corners of the mouth, along the eyebrows, on
# the eyes, and so forth.
# the eyes, and so forth.
#
#
# Th
is face detector
is made using the classic Histogram of Oriented
# Th
e face detector we use
is made using the classic Histogram of Oriented
# Gradients (HOG) feature combined with a linear classifier, an image pyramid,
# Gradients (HOG) feature combined with a linear classifier, an image pyramid,
# and sliding window detection scheme. The pose estimator was created by
# and sliding window detection scheme. The pose estimator was created by
# using dlib's implementation of the paper:
# using dlib's implementation of the paper:
# One Millisecond Face Alignment with an Ensemble of Regression Trees by
# One Millisecond Face Alignment with an Ensemble of Regression Trees by
# Vahid Kazemi and Josephine Sullivan, CVPR 2014
# Vahid Kazemi and Josephine Sullivan, CVPR 2014
# and was trained on the iBUG 300-W face landmark dataset.
# and was trained on the iBUG 300-W face landmark dataset (see
# https://ibug.doc.ic.ac.uk/resources/facial-point-annotations/):
# C. Sagonas, E. Antonakos, G, Tzimiropoulos, S. Zafeiriou, M. Pantic.
# 300 faces In-the-wild challenge: Database and results.
# Image and Vision Computing (IMAVIS), Special Issue on Facial Landmark Localisation "In-The-Wild". 2016.
# You can get the trained model file from:
# http://dlib.net/files/shape_predictor_68_face_landmarks.dat.bz2.
# Note that the license for the iBUG 300-W dataset excludes commercial use.
# So you should contact Imperial College London to find out if it's OK for
# you use use this model in a commercial product.
#
#
#
# Also, note that you can train your own models using dlib's machine learning
# Also, note that you can train your own models using dlib's machine learning
# tools. See train_shape_predictor.py to see an example.
# tools. See train_shape_predictor.py to see an example.
#
#
# You can get the shape_predictor_68_face_landmarks.dat file from:
# http://dlib.net/files/shape_predictor_68_face_landmarks.dat.bz2
#
#
# COMPILING/INSTALLING THE DLIB PYTHON INTERFACE
# COMPILING/INSTALLING THE DLIB PYTHON INTERFACE
# You can install dlib using the command:
# You can install dlib using the command:
...
...
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