摘要: http://www.docin.com/p-1727554551.html 个人意见: 目前解决方案:最小二乘法使其全局方差最小。 最小二乘法解决方案介绍:https://www.cnblogs.com/bingdaocaihong/p/7003581.html 阅读全文
posted @ 2018-04-11 09:12 liushunqing 阅读(295) 评论(0) 推荐(0) 编辑
摘要: pip install 安装指定版本的包 要用 pip 安装指定版本的 Python 包,只需通过 == 操作符 指定 pip install robotframework==2.8.7 将安装robotframework 2.8.7 版本。 要用 pip 安装指定版本的 Python 包,只需通过 阅读全文
posted @ 2018-03-28 11:35 liushunqing 阅读(36837) 评论(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 阅读(678) 评论(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 阅读(156) 评论(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 阅读(1781) 评论(0) 推荐(0) 编辑
摘要: OpenCV 2.0函数释义列表 1、cvLoadImage:将图像文件加载至内存; 2、cvNamedWindow:在屏幕上创建一个窗口; 3、cvShowImage:在一个已创建好的窗口中显示图像; 4、cvWaitKey:使程序暂停,等待用户触发一个按键操作; 5、cvReleaseImage 阅读全文
posted @ 2018-03-06 14:42 liushunqing 阅读(695) 评论(0) 推荐(0) 编辑
摘要: 如何识别一个指针式的时种的时间? https://www.cnblogs.com/zjutlitao/p/4187476.html 阅读全文
posted @ 2018-02-28 14:45 liushunqing 阅读(139) 评论(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 阅读(850) 评论(0) 推荐(0) 编辑
摘要: CSS常用标签 字体属性:(font) 大小:font-size: x-large;(特大) xx-small;(极小) 一般中文用不到,只要用数值就可以,单位:PX、PD 样式 :font-style: oblique;(偏斜体) italic;(斜体) normal;(正常) 行高 :line- 阅读全文
posted @ 2018-02-08 11:05 liushunqing 阅读(1467) 评论(0) 推荐(0) 编辑