随笔分类 -  Python_OpenCV

摘要:pip install 安装指定版本的包 要用 pip 安装指定版本的 Python 包,只需通过 == 操作符 指定 pip install robotframework==2.8.7 将安装robotframework 2.8.7 版本。 要用 pip 安装指定版本的 Python 包,只需通过 阅读全文
posted @ 2018-03-28 11:35 liushunqing 阅读(36930) 评论(1) 推荐(3)
摘要:现在大家常用的桌面操作系统有:Windows、Mac OS、ubuntu,其中Mac OS 和 ubuntu上都会自带python。这里我们只介绍下Windows(我用的Win10)环境下的python2.x 和 python3.x 的安装,以及python2.x 与 python3.x 共存时的配 阅读全文
posted @ 2018-03-26 09:55 liushunqing 阅读(716) 评论(0) 推荐(0)
摘要:解决:python2.7升级到python3后,用pip进行安装时报Fatal error in launcher:Unbale to create process using`"" 通过查资料查到:http://www.scriptscoop2.com/t/9cebc32c6ebc/python- 阅读全文
posted @ 2018-03-26 09:52 liushunqing 阅读(167) 评论(0) 推荐(0)
摘要:HSV模式中的H、S、V分别表示色调、饱和度、亮度 RGB转化到HSV的算法:max=max(R,G,B) min=min(R,G,B) if R = max, H = (G-B)/(max-min) if G = max, H = 2 + (B-R)/(max-min) if B = max, H 阅读全文
posted @ 2018-03-07 11:51 liushunqing 阅读(2007) 评论(0) 推荐(0)
摘要:OpenCV 2.0函数释义列表 1、cvLoadImage:将图像文件加载至内存; 2、cvNamedWindow:在屏幕上创建一个窗口; 3、cvShowImage:在一个已创建好的窗口中显示图像; 4、cvWaitKey:使程序暂停,等待用户触发一个按键操作; 5、cvReleaseImage 阅读全文
posted @ 2018-03-06 14:42 liushunqing 阅读(740) 评论(0) 推荐(0)
摘要:如何识别一个指针式的时种的时间? https://www.cnblogs.com/zjutlitao/p/4187476.html 阅读全文
posted @ 2018-02-28 14:45 liushunqing 阅读(150) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/on2way/article/details/47028969 http://blog.csdn.net/mokeding/article/details/19615873 阅读全文
posted @ 2018-02-28 09:49 liushunqing 阅读(858) 评论(0) 推荐(0)