From fb949d5c0887e5f44b1b69c571d9cd5d90ae6e3e Mon Sep 17 00:00:00 2001 From: Tomas Musil Date: Fri, 6 Apr 2012 15:49:44 +0200 Subject: [PATCH] another high pass --- imago.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/imago.py b/imago.py index 0fee41f..bfa4c7a 100755 --- a/imago.py +++ b/imago.py @@ -39,7 +39,10 @@ def main(*argv): #im_debug.show(im_h, "high pass filter") im_hough = hough.transform(im_h) - im_debug.show(im_hough, "hough transform") + #im_debug.show(im_hough, "hough transform") + + im_h2 = filter.high_pass(im_hough, 120) + im_debug.show(im_h2, "high pass filter") return 0 -- 2.4.2