scipy.ndimage.
spline_filter#
- scipy.ndimage.spline_filter(input, order=3, output=<class 'numpy.float64'>, mode='mirror')[source]#
多维样条滤波器。
- 参数:
- inputarray_like
输入数组。
- orderint, 可选
样条的阶数,默认值为 3。
- outputndarray 或 dtype, 可选
放置输出的数组,或返回数组的 dtype。默认值为
numpy.float64
。- mode{‘reflect’, ‘grid-mirror’, ‘constant’, ‘grid-constant’, ‘nearest’, ‘mirror’, ‘grid-wrap’, ‘wrap’}, 可选
mode 参数决定了输入数组如何在超出其边界的区域进行扩展。默认值为 ‘mirror’。每个有效值的具体行为如下(参见 边界模式 上的更多绘图和细节):
- ‘reflect’ (d c b a | a b c d | d c b a)
输入通过关于最后一个像素的边缘反射来扩展。此模式有时也称为半样本对称。
- ‘grid-mirror’
这是 ‘reflect’ 的同义词。
- ‘constant’ (k k k k | a b c d | k k k k)
输入通过用由 cval 参数定义的相同常数值填充超出边缘的所有值来扩展。在输入边缘之外不执行插值。
- ‘grid-constant’ (k k k k | a b c d | k k k k)
输入通过用由 cval 参数定义的相同常数值填充超出边缘的所有值来扩展。插值也适用于超出输入范围的样本。
- ‘nearest’ (a a a a | a b c d | d d d d)
输入通过复制最后一个像素来扩展。
- ‘mirror’ (d c b | a b c d | c b a)
输入通过关于最后一个像素的中心反射来扩展。此模式有时也称为全样本对称。
- ‘grid-wrap’ (a b c d | a b c d | a b c d)
输入通过环绕到相对边缘来扩展。
- ‘wrap’ (d b c d | a b c d | b c a b)
输入通过环绕到相对边缘来扩展,但以一种方式使得最后一个点和初始点完全重叠。在这种情况下,在重叠点处将选择哪个样本并不明确。
- 返回值:
- spline_filterndarray
过滤后的数组。具有与 input 相同的形状。
参见
spline_filter1d
沿着给定轴计算一维样条滤波器。
备注
多维滤波器实现为一系列一维样条滤波器。中间数组存储在与输出相同的数据类型中。因此,对于精度有限的输出类型,结果可能不精确,因为中间结果可能以精度不足的方式存储。
对于复数形式的 input,此函数独立地处理实部和虚部。
在版本 1.6.0 中添加: 添加了复数支持。
示例
我们可以使用多维样条来过滤图像
>>> from scipy.ndimage import spline_filter >>> import numpy as np >>> import matplotlib.pyplot as plt >>> orig_img = np.eye(20) # create an image >>> orig_img[10, :] = 1.0 >>> sp_filter = spline_filter(orig_img, order=3) >>> f, ax = plt.subplots(1, 2, sharex=True) >>> for ind, data in enumerate([[orig_img, "original image"], ... [sp_filter, "spline filter"]]): ... ax[ind].imshow(data[0], cmap='gray_r') ... ax[ind].set_title(data[1]) >>> plt.tight_layout() >>> plt.show()