diff options
author | Thomas White <taw@physics.org> | 2020-03-13 13:35:04 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:42:24 +0200 |
commit | 6b0102b7724f1721d077e34ddf0797e1ebc6fabe (patch) | |
tree | 1ac9e114e274b1ef1baa7a8743da1676ed659cf8 /libcrystfel | |
parent | bc52cf8165fc50a2755ee9b94992788dbd942c5c (diff) |
Peak search stuff
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/peaks.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libcrystfel/src/peaks.h b/libcrystfel/src/peaks.h index 5a143d2a..c71ce29e 100644 --- a/libcrystfel/src/peaks.h +++ b/libcrystfel/src/peaks.h @@ -50,6 +50,17 @@ extern "C" { * Peak search functions */ +enum peak_search_method { + PEAK_PEAKFINDER9, + PEAK_PEAKFINDER8, + PEAK_ZAEF, + PEAK_HDF5, + PEAK_CXI, + PEAK_MSGPACK, + PEAK_NONE, +}; + + extern int *make_BgMask(struct image *image, struct panel *p, double ir_inn); extern void search_peaks(struct image *image, float threshold, |