scipy.ndimage.
morphological_laplace#
- scipy.ndimage.morphological_laplace(input, size=None, footprint=None, structure=None, output=None, mode='reflect', cval=0.0, origin=0, *, axes=None)[源代码]#
多维形态学拉普拉斯算子。
- 参数:
- inputarray_like
输入。
- size整数元组
用于数学形态学运算的扁平且完整的结构元素的形状。如果提供了 footprint 或 structure,则为可选参数。
- footprint整数数组,可选
用于形态学运算的扁平结构元素中非无限元素的位置。
- structure整数数组,可选
用于形态学运算的结构元素。structure 可以是非扁平结构元素。structure 数组将偏移量应用到邻域中的像素(在膨胀期间偏移量是相加的,在腐蚀期间是相减的)
- outputndarray,可选
可以选择提供输出数组。
- mode{‘reflect’,’constant’,’nearest’,’mirror’, ‘wrap’},可选
mode 参数确定如何处理数组边界。对于 'constant' 模式,边界外的值设置为 cval。默认值为 'reflect'。
- cval标量,可选
如果模式为 'constant',则填充输入边缘之外的值。默认值为 0.0
- origin原点,可选
origin 参数控制滤波器的放置。
- axes整数元组或 None
应用滤波器的轴。如果为 None,则沿所有轴对 input 进行滤波。如果提供了 origin 元组,则其长度必须与轴数匹配。
- 返回:
- morphological_laplacendarray
输出