diff options
Diffstat (limited to 'src/image.h')
-rw-r--r-- | src/image.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/image.h b/src/image.h index 40e3e35e..b40f8a57 100644 --- a/src/image.h +++ b/src/image.h @@ -60,7 +60,8 @@ struct threevec /* Structure describing an image */ struct image { - uint16_t *data; + double *hdr; /* Actual counts */ + uint16_t *data; /* Integer counts after DQE/bloom */ double complex *sfacs; struct threevec *qvecs; double *twotheta; @@ -120,4 +121,6 @@ extern struct imagefeature *image_feature_closest(ImageFeatureList *flist, extern int image_feature_count(ImageFeatureList *flist); extern struct imagefeature *image_get_feature(ImageFeatureList *flist, int idx); +extern void record_image(struct image *image); + #endif /* IMAGE_H */ |