summaryrefslogtreecommitdiff
path: root/src/ImageMetaData.H
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-14 19:53:41 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-14 19:53:41 +0100
commit52bcb63b5d8db6627c20c097f0c20df28e6918fc (patch)
tree33379705401c2b606bd687a9f3bbf1e6cfab1140 /src/ImageMetaData.H
parentfbb4796e81dcb2dc2bcf792917f2391f799653c8 (diff)
implement save/restore of distortion parameters
Diffstat (limited to 'src/ImageMetaData.H')
-rw-r--r--src/ImageMetaData.H8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ImageMetaData.H b/src/ImageMetaData.H
index 5796964..e2d8044 100644
--- a/src/ImageMetaData.H
+++ b/src/ImageMetaData.H
@@ -15,6 +15,10 @@ class ImageMetaData {
double direction;
double nick;
double tilt;
+ double k0;
+ double k1;
+ double u0;
+ double v0;
double focal_length_35mm;
double scale;
int projection_type;
@@ -37,6 +41,8 @@ class ImageMetaData {
double get_tilt();
double get_focal_length_35mm();
int get_projection_type();
+ void get_distortion_params(double *_k0, double *_k1,
+ double *_u0, double *_v0);
void set_longitude(double v);
void set_latitude(double v);
@@ -46,5 +52,7 @@ class ImageMetaData {
void set_tilt(double v);
void set_focal_length_35mm(double v);
void set_projection_type(int v);
+ void set_distortion_params(double _k0, double _k1,
+ double _u0, double _v0);
};
#endif