diff options
author | Thomas White <taw@physics.org> | 2018-04-20 11:29:29 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-04-20 17:36:40 +0200 |
commit | 8314534edc2f5076239d2ee39833d84df2b8be9c (patch) | |
tree | 88b90be3843ba808b546b448df6bf4f348f2f8c9 /src | |
parent | ed2ce3add1a51bb7115747907a540d7705577b39 (diff) |
Set default bandwidth very small
This seems to have been reducing data quality by overpredicting.
Diffstat (limited to 'src')
-rw-r--r-- | src/process_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) { |