aboutsummaryrefslogtreecommitdiff
path: root/src/index.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-01-19 17:40:19 +0100
committerThomas White <taw@physics.org>2010-01-19 17:40:19 +0100
commita4c5daf2f0f37577798af0de5cd31dc81f87eec5 (patch)
treee3ea444c9516e2045c8ab6cf6ee5743bd1ac383b /src/index.c
parentb04befccb98fe1bf32829168c8f95b7762b8162e (diff)
Use "fine" peak search for hit finding (it's fast enough)
Diffstat (limited to 'src/index.c')
-rw-r--r--src/index.c6
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++ ) {