- if show_all:
- do_something(im_h2, "second high pass filters")
-
- im_h2 = filters.components2(im_h2)
- if show_all:
- do_something(im_h2, "components centers")
-
- if verbose:
- print >> sys.stderr, "second hough transform"
-
- hough2 = Hough(im_h2.size)
- # im_hough might be used instead im_h2, but at the moment it brings a lot of
- # noise to the second transform, which later confuses the center-finding
- # mechanism (which is not very robust yet)
- im_hough2 = hough2.transform(im_h2)
- if show_all:
- do_something(im_hough2, "second hough transform")
-
- im_h3 = filters.high_pass(im_hough2, 120)
- if show_all:
- do_something(im_h3, "third high pass filter")
-
- im_h3 = filters.components(im_h3)
- if show_all:
- do_something(im_h3, "half centers")
-
- if verbose:
- print >> sys.stderr, "finding the grid"
-
- lines_m = hough2.all_lines_h(im_h3)
- lines = []
- im_c = im_h2.convert('RGB').convert('RGB', (1, 0.5, 0.5, 0))
- draw_c = ImageDraw.Draw(im_c)
- bounds = []
-
- for line_l in lines_m:
- im_line = Image.new('L', im_h2.size)
- draw = ImageDraw.Draw(im_line)
- line_points = set()
- for line in line_l:
- draw.line(line_from_angl_dist(line, im_h2.size), fill=255, width=7)
- draw_c.line(line_from_angl_dist(line, im_c.size), fill=(70, 70, 70), width=7)
- for p in combine(im_h2, im_line):
- line_points.add(p)
- for point in line_points:
- draw_c.point(point, fill=(120, 255, 120))
- lines.append(hough1.lines_from_list(line_points))
- line_points = list(line_points)
- line_points.sort()
- bounds += [line_points[0], line_points[-1]]
-
- if show_all:
- do_something(im_c, "hough x lines")
+ show_image(im_h2, "second high pass filters")
+
+ im_h2 = filters.components(im_h2, 2)
+ show_image(im_h2, "components centers")
+
+ return im_h2
+
+def run_ransac(image):
+ # TODO comment
+ # TODO vizualize this
+ image_l = image.load()
+ width, height = image.size
+
+ data = []
+
+ for y in xrange(0, height):
+ for x in xrange(0, width):
+ if image_l[x, y] > 128:
+ data.append((x, y))
+
+ dist = 3
+ (line, points), (line2, points2) = ransac.ransac_duo(data, dist, 75, 15)
+ line_to_points = lambda (a, b, c), x: (x, (a*x + c) / (- b))
+ # TODO width should not be here vvv
+ # TODO refactor gridf to use standard equations instead of points
+ line = [line_to_points(line, 0), line_to_points(line, width - 1)]
+ line2 = [line_to_points(line2, 0), line_to_points(line2, width - 1)]
+ return [sorted(points), sorted(points2)], line, line2
+