Isis 3 Programmer Reference
ClementineUvvisDistortionMap.h
Go to the documentation of this file.
1 #ifndef ClementineUvvisDistortionMap_h
2 #define ClementineUvvisDistortionMap_h
3 
28 #include "Camera.h"
29 #include "CameraDistortionMap.h"
30 
31 namespace Isis {
32 
49  public:
50  ClementineUvvisDistortionMap(Camera *parent, double xp, double yp,
51  double k1, double k2, double k3,
52  double p1, double p2);
54 
55  bool SetFocalPlane(const double dx, const double dy);
56  bool SetUndistortedFocalPlane(const double ux, const double uy);
57 
58  private: // parameters below are from camera calibration report
59  double p_xp;
60  double p_yp;
61  double p_k1;
62  double p_k2;
63  double p_k3;
64  double p_p1;
65  double p_p2;
66  };
67 };
68 #endif
double p_p1
First coefficient of decentering distortion.
double p_k2
Linear term coefficient of radial distortion.
double p_yp
Principal point y coordinate.
~ClementineUvvisDistortionMap()
Deconstruct the distortion map for the Clementine UVVIS instrument.
double p_xp
Principal point x coordinate.
Distortion map for the Clementine UVVIS camera.
Distort/undistort focal plane coordinates.
double p_k1
Constant term coefficient of radial distortion.
ClementineUvvisDistortionMap(Camera *parent, double xp, double yp, double k1, double k2, double k3, double p1, double p2)
Construct a distortion map for the Clementine UVVIS instrument.
bool SetUndistortedFocalPlane(const double ux, const double uy)
Compute distorted focal plane x/y.
double p_p2
Second coefficient of decentering distortion.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
double p_k3
Quadratic term coefficient of radial distortion.
bool SetFocalPlane(const double dx, const double dy)
Compute undistorted focal plane x/y.