在ubuntu下配置好dlib,运行人脸检测例子时,遇到错误

发布于 2022-09-05 22:57:40 字数 1246 浏览 13 评论 0

错误如下:
Traceback (most recent call last):
File "fr.py", line 10, in <module>
win = dlib.image_window()
AttributeError: 'module' object has no attribute 'image_window'

代码如下:
import sys

import dlib
from skimage import io

detector = dlib.get_frontal_face_detector()
win = dlib.image_window()

for f in sys.argv[1:]:

print("Processing file: {}".format(f))  
img = io.imread(f)  
# The 1 in the second argument indicates that we should upsample the image  
# 1 time.  This will make everything bigger and allow us to detect more  
# faces.  
dets = detector(img, 1)  
print("Number of faces detected: {}".format(len(dets)))  
for i, d in enumerate(dets):  
    print("Detection {}: Left: {} Top: {} Right: {} Bottom: {}".format(  
        i, d.left(), d.top(), d.right(), d.bottom()))  

win.clear_overlay()  
win.set_image(img)  
win.add_overlay(dets)  
dlib.hit_enter_to_continue()  

if (len(sys.argv[1:]) > 0):

img = io.imread(sys.argv[1])  
dets, scores, idx = detector.run(img, 1, -1)  
for i, d in enumerate(dets):  
    print("Detection {}, score: {}, face_type:{}".format(  
        d, scores[i], idx[i]))  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

生生不灭 2022-09-12 22:57:40

请描述你的安装环境

柠檬心 2022-09-12 22:57:40

安装x11
sudo apt-get install libx11-dev
github上的issue都有人提问过,https://github.com/davisking/...
最后请用谷歌搜索

请持续率性 2022-09-12 22:57:40

同有这个问题 我是Ubuntu16.04+dlib19.7+python2.7

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文