X-Git-Url: http://git.tomasm.cz/imago.git/blobdiff_plain/80567459ab66eeb8ea12de0e746adfe193b187f6..790d9cb736d8a5e30b6fafb0e4c00b7495199f03:/imago.py diff --git a/imago.py b/imago.py index 3634363..45d165c 100755 --- a/imago.py +++ b/imago.py @@ -68,6 +68,10 @@ def main(): 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: