From 941556dbe66c7f13f0659ebdc139344193eb3e7c Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sun, 20 Feb 2011 03:11:29 -0800 Subject: s/min_x/min_fs/ and so on --- src/detector.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/detector.h') 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, -- cgit v1.2.3