找不到dlib的load_rgb_image()

问题描述 投票:0回答:1

所以我已经成功安装了与

dlib
兼容的
18.17.0
版本
Python 2
。诸如
simple_object_detector
之类的类可以被实例化并返回对象的实例。但是无法识别名为
load_rgb_image
的函数,当我调用以下代码时:

import dlib
img = dlib.load_rgb_image(filename)

我收到错误:

AttributeError: 'module' object has no attribute 'load_rgb_image'

具体如何调用这个函数呢?它是静态函数吗?

python python-2.x attributeerror dlib
1个回答
0
投票

dlib 18.17 于 2015 年发布。

dlib.load_rgb_image
已添加到 2018 年 4 月 18 日的提交
e8faced
中,并在 dlib 19.11 中发布。

© www.soinside.com 2019 - 2024. All rights reserved.