find_candidate_object_locations.py 1.74 KB
Newer Older
1
#!/usr/bin/python
Davis King's avatar
Davis King committed
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# This example shows how to use find_candidate_object_locations().  The
# function takes an input image and generates a set of candidate rectangles
# which are expected to bound any objects in the image.
# It is based on the paper:
#    Segmentation as Selective Search for Object Recognition by Koen E. A. van de Sande, et al.
#
# Typically, you would use this as part of an object detection pipeline.
# find_candidate_object_locations() nominates boxes that might contain an
# object and you then run some expensive classifier on each one and throw away
# the false alarms.  Since find_candidate_object_locations() will only generate
# a few thousand rectangles it is much faster than scanning all possible
# rectangles inside an image.
15
#
16
17
18
19
20
21
22
23
24
25
#
# COMPILING/INSTALLING THE DLIB PYTHON INTERFACE
#   You can install dlib using the command:
#       pip install dlib
#
#   Alternatively, if you want to compile dlib yourself then go into the dlib
#   root folder and run:
#       python setup.py install
#
#   Compiling dlib should work on any operating system so long as you have
26
27
28
#   CMake installed.  On Ubuntu, this can be done easily by running the
#   command:
#       sudo apt-get install cmake
29
#
30
#   Also note that this example requires Numpy which can be installed
31
#   via the command:
32
#       pip install numpy 
33
34
35
36

import dlib

image_file = '../examples/faces/2009_004587.jpg'
37
img = dlib.load_rgb_image(image_file)
38
39
40
41
42

# Locations of candidate objects will be saved into rects
rects = []
dlib.find_candidate_object_locations(img, rects, min_size=500)

Davis King's avatar
Davis King committed
43
44
45
46
print("number of rectangles found {}".format(len(rects))) 
for k, d in enumerate(rects):
    print("Detection {}: Left: {} Top: {} Right: {} Bottom: {}".format(
        k, d.left(), d.top(), d.right(), d.bottom()))