Isis 3 Developer Reference
DawnFcDistortionMap.h
Go to the documentation of this file.
1 #ifndef DawnFcDistortionMap_h
2 #define DawnFcDistortionMap_h
3 
4 #include "CameraDistortionMap.h"
5 #include "Camera.h"
6 
7 namespace Isis {
14  public:
15  DawnFcDistortionMap(Camera *parent, double k1, double zDirection = 1.0);
17 
18  bool SetFocalPlane(const double ux, const double uy);
19  bool SetUndistortedFocalPlane(const double dx, const double dy);
20 
21  private:
22  double p_k1;
23  };
24 };
25 #endif
bool SetFocalPlane(const double ux, const double uy)
Compute undistorted focal plane x/y.
Definition: DawnFcDistortionMap.cpp:24
Definition: Camera.h:249
Definition: DawnFcDistortionMap.h:13
bool SetUndistortedFocalPlane(const double dx, const double dy)
Compute distorted focal plane x/y.
Definition: DawnFcDistortionMap.cpp:11
Distort/undistort focal plane coordinates.
Definition: CameraDistortionMap.h:57
~DawnFcDistortionMap()
Definition: DawnFcDistortionMap.h:16
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
DawnFcDistortionMap(Camera *parent, double k1, double zDirection=1.0)
Definition: DawnFcDistortionMap.cpp:7