X-Git-Url: http://git.tomasm.cz/imago.git/blobdiff_plain/e34ac48a7387f7c359c1987f3a58ebcca154697e..ab71bc75ef14e2e731e92274b67988f6c0174061:/hough.py?ds=sidebyside 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: