aboutsummaryrefslogtreecommitdiff
path: root/src/detector.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-02-20 03:11:29 -0800
committerThomas White <taw@physics.org>2012-02-22 15:27:15 +0100
commit941556dbe66c7f13f0659ebdc139344193eb3e7c (patch)
tree12ddd2a8b252bbfda158930f89042789cc0b6523 /src/detector.h
parentc52293a3634d447893c081cd1074a2cef293449d (diff)
s/min_x/min_fs/ and so on
Diffstat (limited to 'src/detector.h')
-rw-r--r--src/detector.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/detector.h b/src/detector.h
index 281db57a..c32fd07b 100644
--- a/src/detector.h
+++ b/src/detector.h
@@ -22,11 +22,11 @@ struct image;
struct panel
{
- int min_x; /* Smallest x value considered to be in this panel */
- int max_x; /* Largest x value considered to be in this panel */
- int min_y; /* ... and so on */
- int max_y;
- float cx; /* Location of centre in pixels */
+ int min_fs; /* Smallest FS value considered to be in the panel */
+ int max_fs; /* Largest FS value considered to be in this panel */
+ int min_ss; /* ... and so on */
+ int max_ss;
+ float cx; /* Location of corner (min_fs,min_ss) in pixels */
float cy;
float clen; /* Camera length in metres */
float res; /* Resolution in pixels per metre */
@@ -44,8 +44,8 @@ struct detector
{
struct panel *panels;
int n_panels;
- int max_x;
- int max_y; /* Size of overall array needed, minus 1 */
+ int max_fs;
+ int max_ss; /* Size of overall array needed, minus 1 */
};
extern struct rvec get_q(struct image *image, double xs, double ys,