From 86f777ae3de257c1eca82a2edc9a079a63fd9455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Sat, 9 Feb 2013 20:00:19 +0100 Subject: [PATCH] hough transform for circles --- skimage/transform/_hough_transform.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/skimage/transform/_hough_transform.pyx b/skimage/transform/_hough_transform.pyx index 35426cad..e1c06d77 100644 --- a/skimage/transform/_hough_transform.pyx +++ b/skimage/transform/_hough_transform.pyx @@ -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)