python-工具包
社会福哥
研究方向:计算机视觉,图像处理
展开
-
python skimage图像处理(一)
本文转自 python数字图像处理skimage的安装pip install -U scikit-image skimage即是Scikit-Image。基于python脚本语言开发的数字图片处理包,比如PIL,Pillow, opencv, scikit-image等。Python Imaging Library(PIL)和Pillow只提供最基础的数字图像处理,...转载 2019-01-07 10:20:42 · 2333 阅读 · 2 评论 -
使用Numpy和Scipy处理图像
Image manipulation and processing using Numpy and Scipy翻译自:http://scipy-lectures.github.com/advanced/image_processing/index.html作者:Emmanuelle Gouillart, Gaël Varoquaux图像 = 2-D 数值数组(或者 3-D: CT...转载 2019-01-07 10:30:57 · 383 阅读 · 0 评论 -
NumPy学习总结(一)
1、NumPy 从数值范围创建数组这一章节我们将学习如何从数值范围创建数组。numpy.arangenumpy 包中的使用 arange 函数创建数值范围并返回 ndarray 对象,函数格式如下:numpy.arange(start, stop, step, dtype)根据 start 与 stop 指定的范围以及 step 设定的步长,生成一个 ndarray。参数...原创 2019-01-07 15:45:58 · 215 阅读 · 0 评论 -
关于np.newaxis的使用规律
之前一直困惑np.newaxis的用法,每次遇到都一脸懵逼,网上特有不少博客对它的解释,不过大多都是举一些例子,乍一看还是不知所云,摸不着规律博客https://blog.csdn.net/lanchunhui/article/details/49725065 中提到,np.newaxis与None等价,作用就是为numpy数组增加一个轴来改变数组维度import numpy as np...原创 2019-01-07 17:03:05 · 277 阅读 · 2 评论 -
pip安装其他软件注意事项
当pip指向pip3时,有时候要安装python2的软件,这时候可以用pip2 install xxxxx例如:安装virtualenv时,可以这样:pip2 install virtualenv原创 2019-03-01 12:14:12 · 170 阅读 · 0 评论