+ if show_all:
+ do_something(im_l, "ITU-R 601-2 luma transform")
+
+ im_edges = filters.edge_detection(im_l)
+ if show_all:
+ do_something(im_edges, "edge detection")
+
+ im_h = filters.high_pass(im_edges, 100)
+ if show_all:
+ do_something(im_h, "high pass filters")
+
+ hough1 = Hough(im_h.size)
+ im_hough = hough1.transform(im_h)
+ if show_all:
+ do_something(im_hough, "hough transform")
+
+ im_hough = filters.peaks(im_hough)
+ if show_all:
+ do_something(im_hough, "peak extraction")
+
+ im_h2 = filters.high_pass(im_hough, 120)
+ if show_all:
+ do_something(im_h2, "second high pass filters")
+
+ im_c = filters.components(im_h2)
+ if show_all:
+ do_something(im_c, "components centers")
+
+ """
+ hough2 = Hough(im_h2.size)
+ 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 filters")
+
+ lines = hough2.find_angle_distance(im_h3)