From 0548d977be411cbd79451c53d4507603df87d128 Mon Sep 17 00:00:00 2001 From: Tomas Musil Date: Sun, 13 Jul 2014 09:10:28 +0200 Subject: [PATCH 1/1] fix peaks in linef --- src/linef.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/linef.py b/src/linef.py index 2b2b86b..8ebb702 100644 --- a/src/linef.py +++ b/src/linef.py @@ -33,10 +33,10 @@ def transform(image, hough, show_image): im_hough = hough.transform(image) show_image(im_hough, "hough transform") - # im_hough.image = filters.peaks(im_hough.image) - # show_image(im_hough.image, "peak extraction") + # im_hough = filters.peaks(im_hough) + # show_image(im_hough, "peak extraction") - im_h2 = filters.high_pass(im_hough, 96) + im_h2 = filters.high_pass(im_hough, 128) show_image(im_h2, "second high pass filters") im_h2 = filters.components(im_h2, 2) -- 2.4.2