本文最后更新于:2024年5月7日 下午
python图像处理中会调用一些开源库,PCV是其中之一,由于该库比较古老,本文记录安装使用方法。
下载
- https://github.com/jesolem/PCV
- https://codechina.csdn.net/mirrors/jesolem/pcv?utm_source=csdn_github_accelerator
第二个是国内镜像,速度会快一些
- git clone到任意目录,或者直接下载zip文件.
安装
- 进入下载根目录运行命令:
1 |
|
- 如果你使用 python3 你就会发现很多 print 错误
- 这是由于库过于古老,仍沿用了python2 的print语法
- 需要逐个将print ‘hello’ 改为 print (‘hello’)
修改文件
- 报错信息包含的文件都在PCV子文件夹中,具体需要修改的文件列表如下:
在列表文件中搜索 print 并安装python3格式修改即可
1 |
|
重新安装
1 |
|
验证
- 执行
1 |
|
没有报错既说明安装成功。
参考资料
文章链接:
https://www.zywvvd.com/notes/coding/python/PCV-install-for-python/PCV-install-for-python/
“觉得不错的话,给点打赏吧 ୧(๑•̀⌄•́๑)૭”
微信支付
支付宝支付
python PCV 库的安装与使用
https://www.zywvvd.com/notes/coding/python/PCV-install-for-python/PCV-install-for-python/