hough transform for circles

This commit is contained in:
François Boulogne
2013-02-25 23:01:44 +01:00
parent de2fa28b77
commit 86f777ae3d
-1
View File
@@ -59,7 +59,6 @@ def _hough_circle(np.ndarray img, \
img.shape[1] + 2 * max_radius))
for i, rad in enumerate(radius):
# Store in memory the circle of given radius
# centered at (0,0)
circle_x, circle_y = circle_perimeter(0, 0, rad)