scipy.ndimage.
spline_filter#
- scipy.ndimage.spline_filter(input, order=3, output=<class 'numpy.float64'>, mode='mirror')[源代码][源代码]#
多维样条滤波器。
- 参数:
- 输入array_like
输入数组。
- 顺序int, 可选
样条的顺序,默认是 3。
- 输出ndarray 或 dtype,可选
要放置输出的数组,或返回数组的 dtype。默认是
numpy.float64
。- 模式{‘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”的同义词。
- ‘常量’ (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
沿着给定的轴计算一维样条滤波器。
注释
多维滤波器被实现为一维样条滤波器的序列。中间数组以与输出相同的数据类型存储。因此,对于精度有限的输出类型,结果可能不精确,因为中间结果可能以不足的精度存储。
对于复数 输入,此函数独立处理实部和虚部。
Added in version 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()