Isis 3 Programmer Reference
ClementineUvvisDistortionMap.h
1 #ifndef ClementineUvvisDistortionMap_h
2 #define ClementineUvvisDistortionMap_h
3 
10 /* SPDX-License-Identifier: CC0-1.0 */
11 
12 #include "Camera.h"
13 #include "CameraDistortionMap.h"
14 
15 namespace Isis {
16 
33  public:
34  ClementineUvvisDistortionMap(Camera *parent, double xp, double yp,
35  double k1, double k2, double k3,
36  double p1, double p2);
38 
39  bool SetFocalPlane(const double dx, const double dy);
40  bool SetUndistortedFocalPlane(const double ux, const double uy);
41 
42  private: // parameters below are from camera calibration report
43  double p_xp;
44  double p_yp;
45  double p_k1;
46  double p_k2;
47  double p_k3;
48  double p_p1;
49  double p_p2;
50  };
51 };
52 #endif
Isis::ClementineUvvisDistortionMap::SetFocalPlane
bool SetFocalPlane(const double dx, const double dy)
Compute undistorted focal plane x/y.
Definition: ClementineUvvisDistortionMap.cpp:69
Isis::ClementineUvvisDistortionMap::p_yp
double p_yp
Principal point y coordinate.
Definition: ClementineUvvisDistortionMap.h:44
Isis::ClementineUvvisDistortionMap::p_p1
double p_p1
First coefficient of decentering distortion.
Definition: ClementineUvvisDistortionMap.h:48
Isis::Camera
Definition: Camera.h:236
Isis::ClementineUvvisDistortionMap::p_k2
double p_k2
Linear term coefficient of radial distortion.
Definition: ClementineUvvisDistortionMap.h:46
Isis::ClementineUvvisDistortionMap::p_xp
double p_xp
Principal point x coordinate.
Definition: ClementineUvvisDistortionMap.h:43
Isis::ClementineUvvisDistortionMap::ClementineUvvisDistortionMap
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.
Definition: ClementineUvvisDistortionMap.cpp:33
Isis::ClementineUvvisDistortionMap::SetUndistortedFocalPlane
bool SetUndistortedFocalPlane(const double ux, const double uy)
Compute distorted focal plane x/y.
Definition: ClementineUvvisDistortionMap.cpp:111
Isis::ClementineUvvisDistortionMap
Distortion map for the Clementine UVVIS camera.
Definition: ClementineUvvisDistortionMap.h:32
Isis::ClementineUvvisDistortionMap::~ClementineUvvisDistortionMap
~ClementineUvvisDistortionMap()
Deconstruct the distortion map for the Clementine UVVIS instrument.
Definition: ClementineUvvisDistortionMap.cpp:53
Isis::CameraDistortionMap
Distort/undistort focal plane coordinates.
Definition: CameraDistortionMap.h:41
Isis::ClementineUvvisDistortionMap::p_p2
double p_p2
Second coefficient of decentering distortion.
Definition: ClementineUvvisDistortionMap.h:49
Isis::ClementineUvvisDistortionMap::p_k1
double p_k1
Constant term coefficient of radial distortion.
Definition: ClementineUvvisDistortionMap.h:45
Isis::ClementineUvvisDistortionMap::p_k3
double p_k3
Quadratic term coefficient of radial distortion.
Definition: ClementineUvvisDistortionMap.h:47
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16