aboutsummaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2009-11-18 10:41:46 +0100
committerThomas White <taw@physics.org>2009-11-18 10:41:46 +0100
commit239dfda559a4982079b3e7e824eeec2e3ebf3696 (patch)
treef63f0bd59193d5d993198eb29fb19e1335275e77 /src/image.h
parent78d56f043d77961c3967e56dc65ea040eb38a55f (diff)
Initial work on bloom
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h5
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 */