diff options
author | Thomas White <taw@physics.org> | 2020-07-10 13:43:30 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:53:45 +0200 |
commit | 865959d6b3adaae1f80fb50da4bebdd9b5d31830 (patch) | |
tree | d8da59cc4e0215d77935c88f2b3cc1dd96285435 /libcrystfel/src/image.h | |
parent | f7ea70e422fafdc886d5829d1bb5f9f3e75d726f (diff) |
Add --no-image-data and --no-mask-data
Diffstat (limited to 'libcrystfel/src/image.h')
-rw-r--r-- | libcrystfel/src/image.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libcrystfel/src/image.h b/libcrystfel/src/image.h index 8721a2bf..bbddadb3 100644 --- a/libcrystfel/src/image.h +++ b/libcrystfel/src/image.h @@ -190,8 +190,11 @@ extern void mark_resolution_range_as_bad(struct image *image, double min, double max); extern struct image *image_new(void); -extern struct image *image_read(DataTemplate *dtempl, const char *filename, - const char *event); +extern struct image *image_read(DataTemplate *dtempl, + const char *filename, + const char *event, + int no_image_data, + int no_mask_data); extern void image_free(struct image *image); extern ImageFeatureList *image_read_peaks(const DataTemplate *dtempl, |