本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。