Commit 067e36b5 authored by Vinh Khuc's avatar Vinh Khuc

Added a Python example for find_candidate_object_locations

parent bf06ce71
#!/usr/bin/python
# This example shows how to use find_candidate_object_locations()
import dlib
from skimage import io
image_file = '../examples/faces/2009_004587.jpg'
img = io.imread(image_file)
# Locations of candidate objects will be saved into rects
rects = []
dlib.find_candidate_object_locations(img, rects, min_size=500)
windows = []
for d in rects:
windows.append([d.top(), d.left(), d.bottom(), d.right()])
print len(windows)
print (image_file, windows)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment