用法:
cucim.skimage.filters.prewitt_h(image, mask=None)
使用 Prewitt 变换查找图像的水平边。
- image:二维阵列
要处理的图像。
- mask:二维阵列,可选
将应用程序限制在某个区域的可选掩码。请注意,蒙版区域周围的像素也会被蒙版,以防止蒙版区域影响结果。
- output:二维阵列
Prewitt 边图。
参数:
返回:
注意:
我们使用以下内核:
1/3 1/3 1/3 0 0 0 -1/3 -1/3 -1/3
相关用法
- Python cucim.skimage.filters.prewitt_v用法及代码示例
- Python cucim.skimage.filters.prewitt用法及代码示例
- 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_h。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。