From 8314534edc2f5076239d2ee39833d84df2b8be9c Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 20 Apr 2018 11:29:29 +0200 Subject: Set default bandwidth very small This seems to have been reducing data quality by overpredicting. --- src/process_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process_image.c b/src/process_image.c index dbd4f427..4b02e694 100644 --- a/src/process_image.c +++ b/src/process_image.c @@ -246,7 +246,7 @@ void process_image(const struct index_args *iargs, struct pattern_args *pargs, if ( iargs->fix_bandwidth >= 0.0 ) { image.bw = iargs->fix_bandwidth; } else { - image.bw = 0.0013; + image.bw = 0.00000001; } if ( image_feature_count(image.features) < iargs->min_peaks ) { -- cgit v1.2.3