-def find_lines(image, show_all, do_something, verbose):
- """Find lines in the *image*."""
- # TODO refactor into smaller functions
-
- if verbose:
- print >> sys.stderr, "preprocessing"
-
- if show_all:
- do_something(image, "original image")
+ # im_hough.image = filters.peaks(im_hough.image)
+ # show_image(im_hough.image, "peak extraction")
+
+ im_h2 = filters.high_pass(im_hough, 96)
+ show_image(im_h2, "second high pass filters")