Python安装OpenCV的示例代码


Posted in Python onMarch 05, 2020

Python安装OpenCV的示例代码

OpenCV介绍

OpenCV是一个基于BSD许可(开源)发行的跨平台计算机视觉库,可以运行在Linux、Windows、Android和Mac OS操作系统上。它轻量级而且高效——由一系列 C 函数和少量 C++ 类构成,同时提供了Python、Ruby、MATLAB等语言的接口,实现了图像处理和计算机视觉方面的很多通用算法。

OpenCV用C++语言编写,它的主要接口也是C++语言,但是依然保留了大量的C语言接口。该库也有大量的Python、Java and MATLAB/OCTAVE(版本2.5)的接口。这些语言的API接口函数可以通过在线文档获得。如今也提供对于C#、Ch、Ruby,GO的支持。

OpenCV 拥有包括 500 多个C函数的跨平台的中、高层 API。它不依赖于其它的外部库——尽管也可以使用某些外部库。

所有新的开发和算法都是用C++接口。一个使用CUDA的GPU接口也于2010年9月开始实现。

OpenCV 为Intel Integrated Performance Primitives(IPP)提供了透明接口。这意味着如果有为特定处理器优化的 IPP 库,OpenCV 将在运行时自动加载这些库。

注:OpenCV 2.0版的代码已显著优化,无需IPP来提升性能,故2.0版不再提供IPP接口。

好了,下面开始今天的正文。

安装python-3.7.3-amd64.exe

命令行进入到你Python的安装目录中的Scripts下:D:\Program Files\Python37\Scripts

安装pip

进入Python安装目录下的Scripts路径,执行 easy_install.exe pip

安装wheel

进入Python安装目录下的Scripts路径,执行 pip install wheel

安装numpy

进入Python安装目录下的Scripts路径,执行 pip install numpy

安装opencv

进入Python安装目录下的Scripts路径,执行 pip install opencv-python

Microsoft Windows [版本 10.0.17134.706]
(c) 2018 Microsoft Corporation。保留所有权利。

C:\Users\LiuJing>D:

D:\>cd D:\Program Files\Python37\Scripts

D:\Program Files\Python37\Scripts>easy_install.exe pip
Searching for pip
Best match: pip 19.0.3
Adding pip 19.0.3 to easy-install.pth file
Installing pip-script.py script to d:\program files\python37\Scripts
Installing pip.exe script to d:\program files\python37\Scripts
Installing pip3-script.py script to d:\program files\python37\Scripts
Installing pip3.exe script to d:\program files\python37\Scripts
Installing pip3.7-script.py script to d:\program files\python37\Scripts
Installing pip3.7.exe script to d:\program files\python37\Scripts

Using d:\program files\python37\lib\site-packages
Processing dependencies for pip
Finished processing dependencies for pip

D:\Program Files\Python37\Scripts>pip install wheel
Collecting wheel
 Downloading https://files.pythonhosted.org/packages/96/ba/a4702cbb6a3a485239fbe9525443446203f00771af9ac000fa3ef2788201/wheel-0.33.1-py2.py3-none-any.whl
Installing collected packages: wheel
Successfully installed wheel-0.33.1
You are using pip version 19.0.3, however version 19.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

D:\Program Files\Python37\Scripts>pip install numpy
Collecting numpy
 Downloading https://files.pythonhosted.org/packages/4e/9d/c129d78e6b942303b762ccfdf1f8339de80c5e6021b14ef0c99ec5bdc6aa/numpy-1.16.3-cp37-cp37m-win_amd64.whl (11.9MB)
  100% |????????????????????????????????| 11.9MB 197kB/s
Installing collected packages: numpy
Successfully installed numpy-1.16.3
You are using pip version 19.0.3, however version 19.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

D:\Program Files\Python37\Scripts>pip install opencv-python
Collecting opencv-python
 Downloading https://files.pythonhosted.org/packages/a3/50/04d0669afe884f137c2f490642756e8c4a658254300a9eaf253d1e643085/opencv_python-4.1.0.25-cp37-cp37m-win_amd64.whl (37.3MB)
  100% |????????????????????????????????| 37.4MB 150kB/s
Requirement already satisfied: numpy>=1.14.5 in d:\program files\python37\lib\site-packages (from opencv-python) (1.16.3)
Installing collected packages: opencv-python
Successfully installed opencv-python-4.1.0.25
You are using pip version 19.0.3, however version 19.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

D:\Program Files\Python37\Scripts>
import cv2

img = cv2.imread("01.jpg")
cv2.imshow("1", img)
cv2.waitKey(10000)

如果能导入并显示图片则成功

总结

到此这篇关于Python安装OpenCV的示例代码的文章就介绍到这了,更多相关Python安装OpenCV内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
python开发的小球完全弹性碰撞游戏代码
Oct 15 Python
python解决Fedora解压zip时中文乱码的方法
Sep 18 Python
基于Python对象引用、可变性和垃圾回收详解
Aug 21 Python
利用Python如何制作好玩的GIF动图详解
Jul 11 Python
python中数组和矩阵乘法及使用总结(推荐)
May 18 Python
Python学习笔记之集合的概念和简单使用示例
Aug 22 Python
Pytorch的mean和std调查实例
Jan 02 Python
python3中确保枚举值代码分析
Dec 02 Python
python实现双人五子棋(终端版)
Dec 30 Python
Python网络编程之ZeroMQ知识总结
Apr 25 Python
python 定义函数 返回值只取其中一个的实现
May 21 Python
pandas取dataframe特定行列的实现方法
May 24 Python
opencv python在视屏上截图功能的实现
Mar 05 #Python
谈谈Python:为什么类中的私有属性可以在外部赋值并访问
Mar 05 #Python
python如何将两张图片生成为全景图片
Mar 05 #Python
Python 定义只读属性的实现方式
Mar 05 #Python
Pycharm中import torch报错的快速解决方法
Mar 05 #Python
Python中私有属性的定义方式
Mar 05 #Python
Python实现AI自动抠图实例解析
Mar 05 #Python
You might like
无数据库的详细域名查询程序PHP版(5)
2006/10/09 PHP
用ADODB来让PHP操作ACCESS数据库的方法
2006/12/31 PHP
fleaphp crud操作之findByField函数的使用方法
2011/04/23 PHP
PHP中::、->、self、$this几种操作符的区别介绍
2013/04/24 PHP
PHP错误Allowed memory size of 67108864 bytes exhausted的3种解决办法
2014/07/28 PHP
PHP使用Redis长连接的方法详解
2018/02/12 PHP
Laravel获取所有的数据库表及结构的方法
2019/10/10 PHP
关于hashchangebroker和statehashable的补充文档
2011/08/08 Javascript
基于jquery实现状态限定编辑的代码
2012/02/11 Javascript
javascrip关于继承的小例子
2013/05/10 Javascript
Function.prototype.bind用法示例
2013/09/16 Javascript
JavaScript中使用Substring删除字符串最后一个字符
2013/11/03 Javascript
jQuery验证插件 Validate详解
2014/11/20 Javascript
jQuery中first()方法用法实例
2015/01/06 Javascript
JavaScript事件学习小结(五)js中事件类型之鼠标事件
2016/06/09 Javascript
vue-cli项目中怎么使用mock数据
2017/09/27 Javascript
微信小程序网络请求封装示例
2018/07/24 Javascript
vue实现点击隐藏与显示实例分享
2019/02/13 Javascript
Vue Object 的变化侦测实现代码
2020/04/15 Javascript
vue总线机制(bus)知识点详解
2020/05/10 Javascript
Python实现删除当前目录下除当前脚本以外的文件和文件夹实例
2015/07/27 Python
python 去除二维数组/二维列表中的重复行方法
2019/01/23 Python
django admin.py 外键,反向查询的实例
2019/07/26 Python
PyQt5+Pycharm安装和配置图文教程详解
2020/03/24 Python
pandas使用之宽表变窄表的实现
2020/04/12 Python
Tensorflow实现将标签变为one-hot形式
2020/05/22 Python
利用HTML5 Canvas制作一个简单的打飞机游戏
2015/05/11 HTML / CSS
大学生实习期自我评价范文
2013/10/03 职场文书
竞聘演讲稿精彩开头和结尾
2014/05/14 职场文书
党员承诺书格式
2014/05/21 职场文书
“三支一扶”支教教师思想汇报
2014/09/13 职场文书
上诉状格式
2015/05/23 职场文书
Java tomcat手动配置servlet详解
2021/11/27 Java/Android
Python读写yaml文件
2022/03/20 Python
使用Python通过企业微信应用给企业成员发消息
2022/04/18 Python
Ruby序列化和持久化存储 Marshal和Pstore介绍
2022/04/18 Ruby