我目前正在处理对象识别并决定使用 Dlib,但是 python 包在 MS Windows 机器上找不到 image_window() 函数。
示例代码:
import dlib
from skimage import io
detector = dlib.get_frontal_face_detector()
img = io.imread('obama.jpg')
faces = detector(img)
for d in faces:
print "left,top,right,bottom:", d.left(), d.top(), d.right(), d.bottom()
win = dlib.image_window()
win.set_image(img)
win.add_overlay(faces)
我收到以下错误:
“模块”对象没有属性“图像窗口”
在https://github.com/davisking/dlib/issues/7上提出了一个答案,但是由于我通过 conda 下载了该软件包,因此无法重新编译它。