我正在尝试进行如下插值,但结果似乎是一个错误的结果。我想知道是否有人遇到同样的问题。
img:h-by-w的输入图像(numpy ndrarray)
img数据如下所示:
img包含8位像素强度值,并且在插值之前每个元素除以256.0。 img不包含nans或infs。
from scipy.interpolate import RectBivariateSpline
h, w = img.shape
x = np.arange(0, h)
y = np.arange(0, w)
ip = RectBivariateSpline(x,y, img)
代码摘录会抛出未处理的异常,如下所示。
如果我从RectBivariateSpline更改为interp2d,则整个python崩溃。以下对话框窗口的要点是python.exe由于名为'_fitpack.pyd'的模块而崩溃
我正在使用Windows 7 64位和32位python 2.7。 numpy = 1.6.2,scipy = 0.11.0和numpy.test()以及scipy.test()都返回'OK'
如果有人能告诉我这是已知的(可能已报告)错误,我将不得不考虑其他方式来完成此任务。