报错信息:AttributeError: module ‘cv2‘ has no attribute ‘face‘
Posted 稚皓君
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了报错信息:AttributeError: module ‘cv2‘ has no attribute ‘face‘相关的知识,希望对你有一定的参考价值。
报错信息:AttributeError: module 'cv2' has no attribute 'face'
问题描述
在使用pycharm做人脸识别项目时,调用OpenCV库,也就是cv2库中的face模块时,程序报错,信息如下
解决方法
face模块实际上并不是opencv库的一部分。更确切地说,face是部分的的opencv-contrib库。所以,需要安装opencv-contrib库。
方法一:可以使用cmd进行安装
pip install opencv-contrib-python
方法二:如果使用的是pycharm ,也可以在pycharm中进行安装
以上是关于报错信息:AttributeError: module ‘cv2‘ has no attribute ‘face‘的主要内容,如果未能解决你的问题,请参考以下文章
python3爬取网页,报错AttributeError: 'NoneType' object has no attribute 'xpath'?
解决报错:在pycharm中使用os模块获取当前进程id,出现错误:AttributeError: module ‘os‘ has no attribute ‘getgid‘(图文并茂!!!)(代码片
angular2 ng build --prod 报错:Module not found: Error: Can't resolve './$$_gendir/app/app.modu
Selenium 之 报错AttributeError: 'list' object has no attribute 'click'
Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法