diff options
author | Thomas White <taw@physics.org> | 2020-03-20 16:25:33 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:42:57 +0200 |
commit | 8fd798cac14122f5760545d83287ec98ff262c88 (patch) | |
tree | e072588cfe370ee14371077ebd082bc06f7d373a /libcrystfel/src/image.h | |
parent | df55c395f05e6836db4718ddd880fa0e634df9cb (diff) |
Add image_read_peaks()
Automatically detects file type, including HDF5 vs CXI
Diffstat (limited to 'libcrystfel/src/image.h')
-rw-r--r-- | libcrystfel/src/image.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libcrystfel/src/image.h b/libcrystfel/src/image.h index a2ca758c..b41b26c7 100644 --- a/libcrystfel/src/image.h +++ b/libcrystfel/src/image.h @@ -248,6 +248,11 @@ extern struct image *image_read(DataTemplate *dtempl, const char *filename, const char *event); extern void image_free(struct image *image); +extern ImageFeatureList *image_read_peaks(const DataTemplate *dtempl, + const char *filename, + const char *event, + int half_pixel_shift); + /* Field lists */ extern struct imagefile_field_list *new_imagefile_field_list(void); |