X-Git-Url: http://git.tomasm.cz/imago.git/blobdiff_plain/f2cbb185a9e09efb970203c376e5abcaa872c867..ab6aeb7bd1344224b097ee19b2f9834b96e7a37a:/hough.py diff --git a/hough.py b/hough.py index a8f64b2..f39784b 100644 --- a/hough.py +++ b/hough.py @@ -2,8 +2,6 @@ from math import sin, cos, pi from PIL import Image -from commons import clear - class Hough: def __init__(self, size): self.size = size @@ -20,8 +18,6 @@ class Hough: initial_angle = self.initial_angle for x in xrange(size[0]): - clear() - print "hough transform: {0:>3}/{1}".format(x + 1, size[0]) for y in xrange(size[1]): if image_l[x, y]: # for every angle: