我经常在Python3.4中使用Dlib,但现在我需要使用dlib.get_face_chip()方法(参见documentation),并继续使用以下方法:
AttributeError: module 'dlib' has no attribute 'get_face_chip'有什么建议吗?
谢谢。
发布于 2018-02-07 03:17:09
在安装时,Dlib会根据您的系统进行配置。事后更新你的系统可能会破坏一些东西。
我会卸载并重新安装Dlib:pip3 uninstall dlib、pip3 install dlib
https://stackoverflow.com/questions/48649747
复制相似问题