scipy.ndimage.filters.gaussian_filter中每个轴的不同模式

时间:2017-05-23 08:39:43

标签: python scipy

使用wrap时,是否可以使用不同的边框模式(即第一轴为reflect,第二轴为scipy.ndimage.filters.gaussian_filter

1 个答案:

答案 0 :(得分:1)

简而言之,是的 - 如果你的scipy足够新。只需传递一个模式列表,每个轴一个。

引用帮助文本(scipy version 0.19.0):

  

mode参数确定如何处理数组边框。有效模式是{'reflect','constant','nearest','mirror','wrap'}。 cval是mode等于'constant'时使用的值。 可以提供长度等于轴数的模式列表,以指定不同轴的不同模式。默认为'reflect'

请注意,此版本已更改为版本0.19。在0.18之前,没有选择通过多种模式。