Newer
Older
.. vim: set fileencoding=utf-8 :
.. Andre Anjos <andre.dos.anjos@gmail.com>
.. Sat 16 Nov 20:52:58 2013
.. testsetup::
def get_file(f):
from os.path import join
from pkg_resources import resource_filename
=============
Users Guide
=============
Flandmark detects 8 coordinates of important keypoints in **frontal** human
faces. To properly work, the keypoint localizer requires the input of an image
(of type ``uint8``, gray-scaled) and of a bounding box describing a rectangle
where the face is supposed to be located in the image (see
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
The keypoints returned are, in this order:
[0]
Face center
[1]
Canthus-rl (inner corner of the right eye).
.. note::
The "right eye" means the right eye at the face w.r.t. the person on the
image. That is the left eye in the image, from the viewer's perspective.
[2]
Canthus-lr (inner corner of the left eye)
[3]
Mouth-corner-r (right corner of the mouth)
[4]
Mouth-corner-l (left corner of the mouth)
[5]
Canthus-rr (outer corner of the right eye)
[6]
Canthus-ll (outer corner of the left eye)
[7]
Nose
Each point is returned as tuple defining the pixel positions in the form
``(y, x)``.
The input bounding box describes the rectangle coordinates using 4 values:
``(y, x, height, width)``. Square bounding boxes, i.e. when ``height ==
width``, will give best results.
If you don't know the bounding box coordinates of faces on the provided image,
you will need to either manually annotate them or use an automatic face
detector. OpenCV_, if compiled with Python support, provides an easy to use
frontal face detector. The code below shall detect most frontal faces in a
provided (gray-scaled) image:
.. doctest::
:options: +NORMALIZE_WHITESPACE, +ELLIPSIS
>>> from bob.io.base import load
>>> import bob.io.image
>>> from bob.ip.color import rgb_to_gray
>>> lena_gray = rgb_to_gray(load(get_file('lena.jpg')))
>>> try:
... from cv2 import CascadeClassifier
... cc = CascadeClassifier(get_file('haarcascade_frontalface_alt.xml'))
... face_bbxs = cc.detectMultiScale(lena_gray, 1.3, 4, 0, (20, 20))
... except ImportError: #if you don't have OpenCV, do it otherwise
... face_bbxs = [[214, 202, 183, 183]] #e.g., manually
>>> print(face_bbxs)
[[...]]
The function ``detectMultiScale`` returns OpenCV_ rectangles as 2D
:py:class:`numpy.ndarray`'s. Each row corresponds to a detected face at the
input image. Notice the format of each bounding box differs from that of Bob_.
Their format is ``(x, y, width, height)``.
Once in possession of bounding boxes for the provided (gray-scaled) image, you
can find the keypoints in the following way:
.. doctest::
:options: +NORMALIZE_WHITESPACE, +ELLIPSIS
>>> x, y, width, height = face_bbxs[0]
>>> localizer = Flandmark()
>>> keypoints = localizer.locate(lena_gray, y, x, height, width)
>>> keypoints
You can use the package ``bob.ip.draw`` to draw the rectangles and keypoints
on the target image. A complete script would be something like:
.. plot:: plot/show_lena.py
:include-source: True
.. include:: links.rst