用法:
cucim.skimage.morphology.white_tophat(image, selem=None, out=None)
返回图像的白色礼帽。
图像的白色礼帽定义为图像减去其形态开口。此操作返回图像中小于结构元素的亮点。
- image:ndarray
图像阵列。
- selem:ndarray,可选
邻域表示为 1 和 0 的数组。如果没有,使用cross-shaped 结构元素(连接性=1)。
- out:ndarray,可选
存储形态学结果的数组。如果 None 被传递,将分配一个新数组。
- out:数组,与
image
相同的形状和类型 形态白色礼帽的结果。
- out:数组,与
参数:
返回:
参考:
例子:
>>> # Subtract grey background from bright peak >>> import cupy as cp >>> from cucim.skimage.morphology import square >>> bright_on_grey = cp.asarray([[2, 3, 3, 3, 2], ... [3, 4, 5, 4, 3], ... [3, 5, 9, 5, 3], ... [3, 4, 5, 4, 3], ... [2, 3, 3, 3, 2]], dtype=cp.uint8) >>> white_tophat(bright_on_grey, square(3)) array([[0, 0, 0, 0, 0], [0, 0, 1, 0, 0], [0, 1, 5, 1, 0], [0, 0, 1, 0, 0], [0, 0, 0, 0, 0]], dtype=uint8)
相关用法
- Python cucim.skimage.morphology.dilation用法及代码示例
- Python cucim.skimage.morphology.closing用法及代码示例
- Python cucim.skimage.morphology.erosion用法及代码示例
- Python cucim.skimage.morphology.remove_small_holes用法及代码示例
- Python cucim.skimage.morphology.black_tophat用法及代码示例
- Python cucim.skimage.morphology.reconstruction用法及代码示例
- Python cucim.skimage.morphology.remove_small_objects用法及代码示例
- Python cucim.skimage.morphology.opening用法及代码示例
- Python cucim.skimage.morphology.thin用法及代码示例
- Python cucim.skimage.measure.label用法及代码示例
- Python cucim.skimage.measure.moments_coords用法及代码示例
- Python cucim.skimage.measure.moments_normalized用法及代码示例
- Python cucim.skimage.measure.moments_central用法及代码示例
- Python cucim.skimage.measure.moments_coords_central用法及代码示例
- Python cucim.skimage.measure.perimeter用法及代码示例
- Python cucim.skimage.measure.regionprops用法及代码示例
- Python cucim.skimage.measure.moments用法及代码示例
- Python cucim.skimage.measure.centroid用法及代码示例
- Python cucim.skimage.measure.moments_hu用法及代码示例
- Python cucim.skimage.measure.profile_line用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cucim.skimage.morphology.white_tophat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。