diff options
author | Thomas White <taw@physics.org> | 2009-11-18 10:41:46 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2009-11-18 10:41:46 +0100 |
commit | 239dfda559a4982079b3e7e824eeec2e3ebf3696 (patch) | |
tree | f63f0bd59193d5d993198eb29fb19e1335275e77 /src/image.h | |
parent | 78d56f043d77961c3967e56dc65ea040eb38a55f (diff) |
Initial work on bloom
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 */ |