diff options
author | Thomas White <taw@physics.org> | 2010-01-19 17:40:19 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-01-19 17:40:19 +0100 |
commit | a4c5daf2f0f37577798af0de5cd31dc81f87eec5 (patch) | |
tree | e3ea444c9516e2045c8ab6cf6ee5743bd1ac383b /src/index.c | |
parent | b04befccb98fe1bf32829168c8f95b7762b8162e (diff) |
Use "fine" peak search for hit finding (it's fast enough)
Diffstat (limited to 'src/index.c')
-rw-r--r-- | src/index.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/index.c b/src/index.c index f16ff333..b45bd1fc 100644 --- a/src/index.c +++ b/src/index.c @@ -72,14 +72,10 @@ int map_position(struct image *image, double x, double y, } -void index_pattern(struct image *image, int no_index, int dump_peaks, - int use_dirax) +void index_pattern(struct image *image, int no_index, int use_dirax) { int i; - /* Perform 'fine' peak search */ - search_peaks(image, dump_peaks); - /* Map positions to 3D */ for ( i=0; i<image_feature_count(image->features); i++ ) { |