diff options
author | Thomas White <taw@physics.org> | 2020-07-03 16:06:13 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:53:45 +0200 |
commit | 6a809813b520d8c882daf569cd86a241b538788c (patch) | |
tree | bda370830fd6bbf72927270cfc27865582d45c42 /libcrystfel/src/image.h | |
parent | 0e8a06927065c275e5e235c9f6ebcb0a397efc81 (diff) |
Create detgeom and data arrays when reading from stream
Diffstat (limited to 'libcrystfel/src/image.h')
-rw-r--r-- | libcrystfel/src/image.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libcrystfel/src/image.h b/libcrystfel/src/image.h index 93b41c34..8721a2bf 100644 --- a/libcrystfel/src/image.h +++ b/libcrystfel/src/image.h @@ -202,6 +202,13 @@ extern ImageFeatureList *image_read_peaks(const DataTemplate *dtempl, extern char **image_expand_frames(const DataTemplate *dtempl, const char *filename, int *nframes); +/* The following functions are not part of the public API - + * use within libcrystfel only */ +extern void create_detgeom(struct image *image, + const DataTemplate *dtempl); + +extern int create_blank_arrays(struct image *image); + #ifdef __cplusplus } #endif |