Isis 3 Developer Reference
ApolloMetricDistortionMap.h
Go to the documentation of this file.
1 #ifndef ApolloMetricDistortionMap_h
2 #define ApolloMetricDistortionMap_h
3 
21 #include "CameraDistortionMap.h"
22 #include "Camera.h"
23 
24 namespace Isis {
38  public:
57  ApolloMetricDistortionMap(Camera *parent, double xp, double yp,
58  double k1, double k2, double k3, double j1,
59  double j2, double t0);
60 
61 
64 
65 
78  bool SetFocalPlane(const double dx, const double dy);
79 
80 
93  bool SetUndistortedFocalPlane(const double ux, const double uy);
94 
95  private:
96  // parameters below are from camera calibration report
97  double p_xp;
98  double p_yp;
99  double p_k1;
100  double p_k2;
101  double p_k3;
102  double p_j1;
103  double p_j2;
104  double p_t0;
107  };
108 };
109 #endif
Apollo Metric Distortion Map.
Definition: ApolloMetricDistortionMap.h:37
ApolloMetricDistortionMap(Camera *parent, double xp, double yp, double k1, double k2, double k3, double j1, double j2, double t0)
Constructs a Distortion Map object for the Apollo Metric Camera.
Definition: ApolloMetricDistortionMap.cpp:43
Definition: Camera.h:249
bool SetFocalPlane(const double dx, const double dy)
Compute undistorted focal plane x/y.
Definition: ApolloMetricDistortionMap.cpp:71
~ApolloMetricDistortionMap()
Destroys ApolloMetricDistortionMap object.
Definition: ApolloMetricDistortionMap.h:63
Distort/undistort focal plane coordinates.
Definition: CameraDistortionMap.h:57
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
bool SetUndistortedFocalPlane(const double ux, const double uy)
Compute distorted focal plane x/y.
Definition: ApolloMetricDistortionMap.cpp:109