- # im_hough.image = filters.peaks(im_hough.image)
- # if show_all:
- # do_something(im_hough.image, "peak extraction")
-
- im_h2 = im_hough.apply_filter(partial(filters.high_pass, height=96))
- if show_all:
- do_something(im_h2.image, "second high pass filters")
-
- im_h2 = im_h2.apply_filter(filters.components2)
- if show_all:
- do_something(im_h2.image, "components centers")
-
- if verbose:
- print >> sys.stderr, "second hough transform"
-
- # 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 = Hough.Transform(im_h2.image)
- if show_all:
- do_something(im_hough2.image, "second hough transform")
-
- im_h3 = im_hough2.apply_filter(partial(filters.high_pass, height=120))
- if show_all:
- do_something(im_h3.image, "third high pass filter")
-
- im_h3 = im_h3.apply_filter(filters.components)
- if show_all:
- do_something(im_h3.image, "half centers")
-
- if verbose:
- print >> sys.stderr, "finding the grid"
-
- lines_m = im_h3.all_lines_h()
- lines = []
- im_c = im_h2.image.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.image, im_line):
- line_points.add(p)
- for point in line_points:
- draw_c.point(point, fill=(120, 255, 120))
- lines.append(im_hough.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")