diff options
author | Valerio Mariani <valerio.mariani@desy.de> | 2014-07-23 13:26:30 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-07-24 13:26:34 +0200 |
commit | 7141d24cce2edfcafae40dce6213c108798e9dc5 (patch) | |
tree | 9c8643fa25762c21f4c4a43651282dd45c8d1984 /libcrystfel/src/image.h | |
parent | 282dee197bce06f9d37655c1775f53f6646e2e5d (diff) |
Fixes closest feature detection bug
Diffstat (limited to 'libcrystfel/src/image.h')
-rw-r--r-- | libcrystfel/src/image.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcrystfel/src/image.h b/libcrystfel/src/image.h index d8ffa0ff..f19a7427 100644 --- a/libcrystfel/src/image.h +++ b/libcrystfel/src/image.h @@ -196,7 +196,8 @@ extern void image_remove_feature(ImageFeatureList *flist, int idx); extern struct imagefeature *image_feature_closest(ImageFeatureList *flist, double fs, double ss, - double *d, int *idx); + double *d, int *idx, + struct detector *det); extern int image_feature_count(ImageFeatureList *flist); extern struct imagefeature *image_get_feature(ImageFeatureList *flist, int idx); |