本文简要介绍 python 语言中 scipy.ndimage.fourier_ellipsoid
的用法。
用法:
scipy.ndimage.fourier_ellipsoid(input, size, n=-1, axis=-1, output=None)#
多维椭球傅里叶滤波器。
该数组与给定大小的椭球体的傅里叶变换相乘。
- input: array_like
输入数组。
- size: 浮点数或序列
用于过滤的框的大小。如果是浮点数,则所有轴的大小都相同。如果是一个序列,大小必须包含每个轴的一个值。
- n: 整数,可选
如果 n 为负数(默认),则假定输入是复数 fft 的结果。如果 n 大于或等于 0,则假定输入是实数 fft 的结果,并且 n 给出沿实数变换方向进行变换之前的数组长度。
- axis: 整数,可选
实际变换的轴。
- output: ndarray,可选
如果给定,则过滤输入的结果将放置在此数组中。
- fourier_ellipsoid: ndarray
过滤后的输入。
参数 ::
返回 ::
注意:
这个函数是为秩为 1、2 或 3 的数组实现的。
例子:
>>> from scipy import ndimage, datasets >>> import numpy.fft >>> import matplotlib.pyplot as plt >>> fig, (ax1, ax2) = plt.subplots(1, 2) >>> plt.gray() # show the filtered result in grayscale >>> ascent = datasets.ascent() >>> input_ = numpy.fft.fft2(ascent) >>> result = ndimage.fourier_ellipsoid(input_, size=20) >>> result = numpy.fft.ifft2(result) >>> ax1.imshow(ascent) >>> ax2.imshow(result.real) # the imaginary part is an artifact >>> plt.show()
相关用法
- Python SciPy ndimage.fourier_uniform用法及代码示例
- Python SciPy ndimage.fourier_shift用法及代码示例
- Python SciPy ndimage.fourier_gaussian用法及代码示例
- Python SciPy ndimage.find_objects用法及代码示例
- Python SciPy ndimage.correlate用法及代码示例
- Python SciPy ndimage.morphological_gradient用法及代码示例
- Python SciPy ndimage.variance用法及代码示例
- Python SciPy ndimage.correlate1d用法及代码示例
- Python SciPy ndimage.binary_dilation用法及代码示例
- Python SciPy ndimage.distance_transform_bf用法及代码示例
- Python SciPy ndimage.label用法及代码示例
- Python SciPy ndimage.maximum_filter1d用法及代码示例
- Python SciPy ndimage.iterate_structure用法及代码示例
- Python SciPy ndimage.map_coordinates()用法及代码示例
- Python SciPy ndimage.generic_laplace用法及代码示例
- Python SciPy ndimage.generate_binary_structure用法及代码示例
- Python SciPy ndimage.binary_opening用法及代码示例
- Python SciPy ndimage.binary_fill_holes用法及代码示例
- Python SciPy ndimage.maximum_filter用法及代码示例
- Python SciPy ndimage.minimum_position用法及代码示例
- Python SciPy ndimage.labeled_comprehension用法及代码示例
- Python SciPy ndimage.grey_erosion用法及代码示例
- Python SciPy ndimage.spline_filter用法及代码示例
- Python SciPy ndimage.shift用法及代码示例
- Python SciPy ndimage.distance_transform_cdt用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.ndimage.fourier_ellipsoid。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。