用法:
skimage.draw.line_nd(start, stop, *, endpoint=False, integer=True)
在 n 维中绘制 single-pixel 粗线。
生成的行将是ndim-connected。也就是说,该行中的两个后续像素将是 n 维中的直接或对角相邻像素。
- start:array-like,形状(N,)
线的起始坐标。
- stop:array-like,形状(N,)
线的结束坐标。
- endpoint:布尔型,可选
是否在返回的行中包含端点。默认为 False,这样可以轻松绘制 multi-point 路径。
- integer:布尔型,可选
是否将坐标四舍五入为整数。如果为 True(默认),则返回的坐标可用于直接索引到数组中。 False 可用于例如矢量绘图。
- coords:数组元组
线上点的坐标。
参数:
返回:
例子:
>>> lin = line_nd((1, 1), (5, 2.5), endpoint=False) >>> lin (array([1, 2, 3, 4]), array([1, 1, 2, 2])) >>> im = np.zeros((6, 5), dtype=int) >>> im[lin] = 1 >>> im array([[0, 0, 0, 0, 0], [0, 1, 0, 0, 0], [0, 1, 0, 0, 0], [0, 0, 1, 0, 0], [0, 0, 1, 0, 0], [0, 0, 0, 0, 0]]) >>> line_nd([2, 1, 1], [5, 5, 2.5], endpoint=True) (array([2, 3, 4, 4, 5]), array([1, 2, 3, 4, 5]), array([1, 1, 2, 2, 2]))
相关用法
- Python skimage.draw.line_aa用法及代码示例
- Python skimage.draw.line用法及代码示例
- Python skimage.draw.random_shapes用法及代码示例
- Python skimage.draw.polygon2mask用法及代码示例
- Python skimage.draw.ellipse_perimeter用法及代码示例
- Python skimage.draw.bezier_curve用法及代码示例
- Python skimage.draw.set_color用法及代码示例
- Python skimage.draw.circle_perimeter用法及代码示例
- Python skimage.draw.polygon用法及代码示例
- Python skimage.draw.rectangle_perimeter用法及代码示例
- Python skimage.draw.ellipse用法及代码示例
- Python skimage.draw.polygon_perimeter用法及代码示例
- Python skimage.draw.circle_perimeter_aa用法及代码示例
- Python skimage.draw.disk用法及代码示例
- Python skimage.draw.rectangle用法及代码示例
- Python skimage.data.binary_blobs用法及代码示例
- Python skimage.data.file_hash用法及代码示例
- Python skimage.feature.graycomatrix用法及代码示例
- Python skimage.color.lab2lch用法及代码示例
- Python skimage.feature.blob_doh用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.draw.line_nd。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。