用法:
skimage.transform.hough_circle(image, radius, normalize=True, full_output=False)
执行循环霍夫变换。
- image:(M, N) ndarray
具有表示边的非零值的输入图像。
- radius:标量或标量序列
计算霍夫变换的半径。浮点数转换为整数。
- normalize:布尔值,可选(默认为 True)
使用用于绘制半径的像素数对累加器进行归一化。
- full_output:布尔值,可选(默认为 False)
将输出大小扩展为最大半径的两倍,以检测输入图片之外的中心。
- H:3D ndarray(半径索引,(M + 2R,N + 2R)ndarray)
每个半径的霍夫变换累加器。如果full_output 为真,R 指定更大的半径。否则,R = 0。
参数:
返回:
例子:
>>> from skimage.transform import hough_circle >>> from skimage.draw import circle_perimeter >>> img = np.zeros((100, 100), dtype=bool) >>> rr, cc = circle_perimeter(25, 35, 23) >>> img[rr, cc] = 1 >>> try_radii = np.arange(5, 50) >>> res = hough_circle(img, try_radii) >>> ridx, r, c = np.unravel_index(np.argmax(res), res.shape) >>> r, c, try_radii[ridx] (25, 35, 23)
相关用法
- Python skimage.transform.hough_circle_peaks用法及代码示例
- Python skimage.transform.hough_ellipse用法及代码示例
- Python skimage.transform.hough_line_peaks用法及代码示例
- Python skimage.transform.hough_line用法及代码示例
- Python skimage.transform.resize用法及代码示例
- Python skimage.transform.integrate用法及代码示例
- Python skimage.transform.frt2用法及代码示例
- Python skimage.transform.estimate_transform用法及代码示例
- Python skimage.transform.rotate用法及代码示例
- Python skimage.transform.rescale用法及代码示例
- Python skimage.transform.ifrt2用法及代码示例
- Python skimage.transform.resize_local_mean用法及代码示例
- Python skimage.transform.warp_polar用法及代码示例
- Python skimage.transform.warp_coords用法及代码示例
- Python skimage.transform.downscale_local_mean用法及代码示例
- Python skimage.transform.warp用法及代码示例
- Python skimage.feature.graycomatrix用法及代码示例
- Python skimage.color.lab2lch用法及代码示例
- Python skimage.draw.random_shapes用法及代码示例
- Python skimage.feature.blob_doh用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.transform.hough_circle。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。