summaryrefslogtreecommitdiffstats
path: root/tksao/util/smooth.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-08-02 19:36:03 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-08-02 19:36:03 (GMT)
commit41a92bc71050c61e6978f9d1830fc59e8d734120 (patch)
treea1c02a14221e7e7530e2044b89ae7c6985d9ec7e /tksao/util/smooth.h
parent4920b5dcdfd14897ee44086e48e79591b7174bc5 (diff)
downloadblt-41a92bc71050c61e6978f9d1830fc59e8d734120.zip
blt-41a92bc71050c61e6978f9d1830fc59e8d734120.tar.gz
blt-41a92bc71050c61e6978f9d1830fc59e8d734120.tar.bz2
SMOOTH: separated function radius parameter from kernel size parameter
Diffstat (limited to 'tksao/util/smooth.h')
-rw-r--r--tksao/util/smooth.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tksao/util/smooth.h b/tksao/util/smooth.h
index 7674fee..0caf192 100644
--- a/tksao/util/smooth.h
+++ b/tksao/util/smooth.h
@@ -5,8 +5,8 @@
#ifndef __smooth_h__
#define __smooth_h__
-void boxcar(double* kernel, int r);
-void tophat(double* kernel, int r);
-void gaussian(double* kernel, int r);
+void boxcar(double* kernel, int k, int r);
+void tophat(double* kernel, int k, int r);
+void gaussian(double* kernel, int k, int r);
#endif