aboutsummaryrefslogtreecommitdiff
path: root/src/calibrate_detector.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/calibrate_detector.c')
-rw-r--r--src/calibrate_detector.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/calibrate_detector.c b/src/calibrate_detector.c
index 0759ff6b..e5945015 100644
--- a/src/calibrate_detector.c
+++ b/src/calibrate_detector.c
@@ -103,7 +103,8 @@ static void sum_peaks(struct image *image, double *sum)
int w = image->width;
const int lim = INTEGRATION_RADIUS * INTEGRATION_RADIUS;
- search_peaks(image);
+ /* FIXME: Get threshold value from command line */
+ search_peaks(image, 800.0);
for ( i=0; i<image_feature_count(image->features); i++ ) {