Isis 3 Developer Reference
ThemisIrDistortionMap.h
Go to the documentation of this file.
1 #ifndef ThemisIrDistortionMap_h
2 #define ThemisIrDistortionMap_h
3 
24 #include "CameraDistortionMap.h"
25 
26 namespace Isis {
48  public:
50 
51  virtual bool SetFocalPlane(const double dx, const double dy);
52 
53  virtual bool SetUndistortedFocalPlane(const double ux, const double uy);
54 
55  void SetBand(int band);
56 
57  private:
58  double p_k;
59  double p_alpha1;
60  double p_alpha2;
61  };
62 };
63 #endif
virtual bool SetUndistortedFocalPlane(const double ux, const double uy)
Compute distorted focal plane x/y.
Definition: ThemisIrDistortionMap.cpp:67
ThemisIrDistortionMap(Camera *parent)
Definition: ThemisIrDistortionMap.cpp:30
Definition: Camera.h:249
virtual bool SetFocalPlane(const double dx, const double dy)
Compute undistorted focal plane x/y.
Definition: ThemisIrDistortionMap.cpp:50
Distort/undistort focal plane coordinates.
Definition: CameraDistortionMap.h:57
void SetBand(int band)
Definition: ThemisIrDistortionMap.cpp:37
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Distort/undistort focal plane coordinates.
Definition: ThemisIrDistortionMap.h:47