- hough = Hough.default(im_h)
-
- if verbose:
- print >> sys.stderr, "hough transform"
+def find_lines(image, show_image, logger):
+ """Find lines in the *image*."""
+ # TODO refactor into smaller functions
+
+ logger("preprocessing")
+ show_image(image, "original image")