scipy.ndimage.
laplace#
- scipy.ndimage.laplace(input, output=None, mode='reflect', cval=0.0, *, axes=None)[源代码]#
基于近似二阶导数的 N 维拉普拉斯滤波器。
- 参数:
- inputarray_like
输入数组。
- output数组或 dtype,可选
用于放置输出的数组,或返回数组的 dtype。默认情况下,将创建一个与输入具有相同 dtype 的数组。
- modestr 或 序列,可选
mode 参数确定当滤波器与边界重叠时如何扩展输入数组。通过传递一个长度等于输入数组维数的模式序列,可以沿每个轴指定不同的模式。默认值是“reflect”。有效值及其行为如下:
- ‘reflect’ (d c b a | a b c d | d c b a)
通过反射最后一个像素的边缘来扩展输入。这种模式有时也被称为半采样对称。
- ‘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)
通过反射最后一个像素的中心来扩展输入。这种模式有时也被称为全采样对称。
- ‘wrap’ (a b c d | a b c d | a b c d)
通过环绕到相对的边缘来扩展输入。
为了与插值函数保持一致,也可以使用以下模式名称:
- ‘grid-constant’
这是 'constant' 的同义词。
- ‘grid-mirror’
这是 'reflect' 的同义词。
- ‘grid-wrap’
这是 'wrap' 的同义词。
- cval标量,可选
如果 mode 是 'constant',则填充输入边缘之外的值。默认值为 0.0。
- axesint 或 None 的元组
应用滤波器的轴。如果提供了 mode 元组,则其长度必须与轴数匹配。
- 返回:
- laplacendarray
滤波后的数组。与 input 具有相同的形状。
示例
>>> from scipy import ndimage, datasets >>> import matplotlib.pyplot as plt >>> fig = plt.figure() >>> plt.gray() # show the filtered result in grayscale >>> ax1 = fig.add_subplot(121) # left side >>> ax2 = fig.add_subplot(122) # right side >>> ascent = datasets.ascent() >>> result = ndimage.laplace(ascent) >>> ax1.imshow(ascent) >>> ax2.imshow(result) >>> plt.show()