核函数估计Demo Iimport sys,re,osimport numpy as npfrom scipy import stats import matplotlib.pylab as plt if __name__ == '__main__': # random data gra...
分类:
其他好文 时间:
2014-10-22 21:58:15
阅读次数:
326
本人测试配置: i5 3210M 2.9GHz DDR3 8GB.使用图片为 1000 * 750 的BMP图片, 操作均为浮点乘法 -> 复制, 重复10次:第一次测试, numpy的array循环:def iterOrigin(imgDir): img = Image.open(imgDi...
分类:
编程语言 时间:
2014-10-20 16:57:53
阅读次数:
207
在Python中使用help帮助>>> import numpy>>> help(numpy.argsort)Help on function argsort in module numpy.core.fromnumeric:argsort(a, axis=-1, kind='quicksort',...
分类:
编程语言 时间:
2014-10-19 00:02:58
阅读次数:
359
看起来挺简单的样子,但是在给sum函数中加入参数。sum(a,axis=0)或者是.sum(axis=1) 就有点不解了在我实验以后发现 我们平时用的sum应该是默认的axis=0 就是普通的相加而当加入axis=1以后就是将一个矩阵的每一行向量相加例如:import numpy as npnp.s...
分类:
编程语言 时间:
2014-10-18 22:19:45
阅读次数:
202
tile函数位于python模块numpy.lib.shape_base中,他的功能是重复某个数组。函数的形式是tile(A,reps)函数参数说明中提到A和reps都是array_like的,什么是array_like的parameter呢?在网上查了一下,始终搞不明白,便把熟悉的python数据...
分类:
其他好文 时间:
2014-10-18 22:12:09
阅读次数:
1519
对于习惯使用了MATLAB的用户而言,学习NumPy这个python工具包付出的成本应该是不大的。
NumPy的主要的object是多维数组,是一个有相同类型的数字等构成的一张表格,可以通过元组进行索引。本篇主要列出NumPy中最常用的一些操作。
1,ndarray 类型的一些属性
>>> from numpy import *
>>> a=array([[1,2,3],[4,5,6...
分类:
其他好文 时间:
2014-10-18 15:32:47
阅读次数:
237
1.numpy.floor(a)返回大于元素的最小整数a = np.array([-1.7, -1.5, -0.2, 0.2, 1.5, 1.7, 2.0])np.floor(a)array([-2., -2., -1., 0., 1., 1., 2.])2.np.linspace(0,20...
分类:
编程语言 时间:
2014-10-17 15:20:10
阅读次数:
211
from math import logfrom numpy import *import operator............re = log(pro,2)............TypeError: return arrays must be of ArrayType把“from math ...
分类:
其他好文 时间:
2014-10-15 00:54:39
阅读次数:
2212
harris 作为最常用的特征点检测算法。
第一个文件harris.py
from scipy.ndimage import filters
from numpy import *
from pylab import *
def compute_harris_response(im,sigma=3):
imx=zeros(im.shape)#计算导数
filters....
分类:
编程语言 时间:
2014-10-15 00:15:19
阅读次数:
851
倒腾了一晚上终于把题目中的环境配好了。下面简要说明,留作资料,并共享。
1.安装python。在cmd中能进入python环境,通过把python路径添加到系统路径中即可实现。
2.安装easy-install(也就是installtools)。到官网上下载合适版本的压缩包解压之后,使用cmd进入到解压目录中,使用python setup.py install就能安装。
...
分类:
其他好文 时间:
2014-10-14 23:17:09
阅读次数:
178