用法:
cucim.skimage.filters.prewitt(image, mask=None, *, axis=None, mode='reflect', cval=0.0)
使用 Prewitt 变换查找边幅度。
- image:数组
输入图像。
- mask:布尔数组,可选
将输出图像剪辑到此蒙版。 (mask=0 的值将被设置为 0。)
- axis:int 或 int 序列,可选
沿该轴计算边滤波器。如果未提供,则计算边幅度。这被定义为:
prw_mag = np.sqrt(sum([prewitt(image, axis=i)**2 for i in range(image.ndim)]) / image.ndim)
如果轴是一个序列,也会计算幅度。
- mode:str 或 str 序列,可选
卷积的边界模式。有关模式的说明,请参见
scipy.ndimage.convolve
。这可以是单个边界模式或每个轴一个边界模式。- cval:浮点数,可选
当
mode
为'constant'
时,这是在图像数据边界外的值中使用的常数。
- output:浮点数数组
Prewitt 边图。
参数:
返回:
注意:
边幅度略微取决于边方向,因为 Prewitt 算子对梯度算子的近似不是完全旋转不变的。为了获得更好的旋转不变性,应使用 Scharr 算子。 Sobel 算子比 Prewitt 算子具有更好的旋转不变性,但比 Scharr 算子具有更差的旋转不变性。
例子:
>>> import cupy as cp >>> from skimage import data >>> from cucim.skimage import filters >>> camera = cp.array(data.camera()) >>> edges = filters.prewitt(camera)
相关用法
- Python cucim.skimage.filters.prewitt_v用法及代码示例
- Python cucim.skimage.filters.prewitt_h用法及代码示例
- Python cucim.skimage.filters.roberts_neg_diag用法及代码示例
- Python cucim.skimage.filters.gabor用法及代码示例
- Python cucim.skimage.filters.roberts_pos_diag用法及代码示例
- Python cucim.skimage.filters.roberts用法及代码示例
- Python cucim.skimage.filters.gabor_kernel用法及代码示例
- Python cucim.skimage.filters.sobel_v用法及代码示例
- Python cucim.skimage.filters.sobel_h用法及代码示例
- Python cucim.skimage.filters.sobel用法及代码示例
- Python cucim.skimage.filters.gaussian用法及代码示例
- Python cucim.skimage.filters.difference_of_gaussians用法及代码示例
- Python cucim.skimage.filters.rank_order用法及代码示例
- Python cucim.skimage.filters.threshold_mean用法及代码示例
- Python cucim.skimage.filters.threshold_niblack用法及代码示例
- Python cucim.skimage.filters.threshold_isodata用法及代码示例
- Python cucim.skimage.filters.threshold_otsu用法及代码示例
- Python cucim.skimage.filters.median用法及代码示例
- Python cucim.skimage.filters.threshold_sauvola用法及代码示例
- Python cucim.skimage.filters.threshold_yen用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cucim.skimage.filters.prewitt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。