- draw.line(line_from_angl_dist(line, im_h2.size), fill=255, width=5)
- if show_all:
- do_something(im_line, "line")
- im_c = combine(im_h2, im_line)
- if show_all:
- do_something(im_c, "hough x lines")
- lines.append(hough1.all_lines(im_c))
+ line_points = set()
+ for line in line_l:
+ draw.line(line_from_angl_dist(line, im_h2.size), fill=255, width=5)
+ draw_c.line(line_from_angl_dist(line, im_c.size), fill=(70, 70, 70), width=5)
+ 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))
+
+ if show_all:
+ do_something(im_c, "hough x lines")
+
+ image_g = image.copy()
+ draw = ImageDraw.Draw(image_g)
+ for line in [l for s in lines for l in s]:
+ draw.line(line_from_angl_dist(line, image.size), fill=(120, 255, 120))
+ if show_all:
+ do_something(image_g, "the grid")