黑马程序员技术交流社区

标题: python ubuntu dlib 8- 输出人脸坐标 [打印本页]

作者: 梦缠绕的时候    时间: 2018-12-17 09:39
标题: python ubuntu dlib 8- 输出人脸坐标
输入图片检测人脸,输出人脸坐标

import sys
import dlib
if len(sys.argv) < 1:
        print("need specify the image file")
        exit()

image_file = sys.argv[1]
img = dlib.load_rgb_image(image_file)

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

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()))

---------------------
作者:_iorilan
来源:CSDN
原文:https://blog.csdn.net/lan_liang/article/details/84715418
版权声明:本文为博主原创文章,转载请附上博文链接!






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2