diff options
author | Thomas White <taw@physics.org> | 2013-02-08 16:19:35 -0800 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2013-02-08 16:19:35 -0800 |
commit | 0ad51536eb7a4d4bf13909cf50382cebb043f7a8 (patch) | |
tree | 82aa41e0e7c200296df9a8b01c0bfcbe6a1debf7 /libcrystfel/src/image.h | |
parent | 13116e93b01faee7826b5ba95a1dbf5fc3d64b45 (diff) |
Count saturated peaks and record in the file
Diffstat (limited to 'libcrystfel/src/image.h')
-rw-r--r-- | libcrystfel/src/image.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcrystfel/src/image.h b/libcrystfel/src/image.h index 8f9e296f..91950e76 100644 --- a/libcrystfel/src/image.h +++ b/libcrystfel/src/image.h @@ -94,6 +94,8 @@ typedef struct _imagefeaturelist ImageFeatureList; * int width; * int height; * + * long long int num_peaks; + * long long int num_saturated_peaks; * ImageFeatureList *features; * }; * </programlisting> @@ -144,6 +146,8 @@ struct image { int height; /* Detected peaks */ + long long int num_peaks; + long long int num_saturated_peaks; ImageFeatureList *features; }; |