用法:
skimage.util.unique_rows(ar)
从二维数组中删除重复的行。
特别是,如果给定一个形状坐标数组 (Npoints, Ndim),它将删除重复的点。
- ar:二维数组
输入数组。
- ar_out:二维数组
删除了重复行的输入数组的副本。
- ValueError:如果阿尔不是二维的。
参数:
返回:
抛出:
注意:
如果不是C-contiguous,该函数将生成ar 的副本,这将对大型输入数组的性能产生负面影响。
例子:
>>> ar = np.array([[1, 0, 1], ... [0, 1, 0], ... [1, 0, 1]], np.uint8) >>> unique_rows(ar) array([[0, 1, 0], [1, 0, 1]], dtype=uint8)
相关用法
- Python skimage.util.view_as_windows用法及代码示例
- Python skimage.util.montage用法及代码示例
- Python skimage.util.regular_grid用法及代码示例
- Python skimage.util.label_points用法及代码示例
- Python skimage.util.regular_seeds用法及代码示例
- Python skimage.util.view_as_blocks用法及代码示例
- Python skimage.util.invert用法及代码示例
- Python skimage.feature.graycomatrix用法及代码示例
- Python skimage.color.lab2lch用法及代码示例
- Python skimage.draw.random_shapes用法及代码示例
- Python skimage.feature.blob_doh用法及代码示例
- Python skimage.feature.blob_dog用法及代码示例
- Python skimage.filters.unsharp_mask用法及代码示例
- Python skimage.registration.optical_flow_tvl1用法及代码示例
- Python skimage.filters.rank.noise_filter用法及代码示例
- Python skimage.exposure.histogram用法及代码示例
- Python skimage.filters.gaussian用法及代码示例
- Python skimage.feature.graycoprops用法及代码示例
- Python skimage.segmentation.active_contour用法及代码示例
- Python skimage.feature.corner_orientations用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.util.unique_rows。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。