diff options
author | Thomas White <taw@physics.org> | 2010-11-16 09:56:24 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:05 +0100 |
commit | 0567569d2f97a5c4aae54d6f8b27f0eeb7539b86 (patch) | |
tree | 473b9bf0e5129ac4cedffe775b6696a2de6821fa /src/calibrate_detector.c | |
parent | 5447d802f6c8baedf350c2fe002757b390e7c8da (diff) |
indexamajig: Take minimum gradient on command line
Diffstat (limited to 'src/calibrate_detector.c')
-rw-r--r-- | src/calibrate_detector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/calibrate_detector.c b/src/calibrate_detector.c index 7feeb16c..2252842f 100644 --- a/src/calibrate_detector.c +++ b/src/calibrate_detector.c @@ -110,7 +110,7 @@ static void sum_peaks(struct image *image, double *sum) const int lim = INTEGRATION_RADIUS * INTEGRATION_RADIUS; /* FIXME: Get threshold value from command line */ - search_peaks(image, 800.0); + search_peaks(image, 800.0, 100000.0); for ( i=0; i<image_feature_count(image->features); i++ ) { |