diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-12-12 17:27:27 -0800 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:10 +0100 |
commit | 77c97f68f1fd487f9ae848a64b14a90c76792bdd (patch) | |
tree | 17bc5e3c155c6b3c99296ad4e64e9d5fd07b13f5 /src/image.h | |
parent | 20b8402e76ceb0741098b30660391bcccddeae5b (diff) |
More work on scaling
Diffstat (limited to 'src/image.h')
-rw-r--r-- | src/image.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/image.h b/src/image.h index 0d2f6c2e..078231a0 100644 --- a/src/image.h +++ b/src/image.h @@ -61,6 +61,7 @@ struct cpeak signed int l; double min_distance; + int valid; /* Partiality */ double r1; /* First excitation error */ @@ -72,6 +73,9 @@ struct cpeak /* Location in image */ int x; int y; + + /* Intensity */ + double intensity; }; |