Isis 3 Programmer Reference
LoHighDistortionMap.h
1 #ifndef LoHighDistortionMap_h
2 #define LoHighDistortionMap_h
3 
10 /* SPDX-License-Identifier: CC0-1.0 */
11 
12 #include <vector>
13 #include "CameraDistortionMap.h"
14 
15 namespace Isis {
53  public:
54  LoHighDistortionMap(Camera *parent);
55 
56  void SetDistortion(const int naifIkCode);
57  virtual bool SetFocalPlane(const double dx, const double dy);
58 
59  virtual bool SetUndistortedFocalPlane(const double ux, const double uy);
60 
61  private:
62  double p_xPerspective;
63  double p_yPerspective;
64  double p_x0;
65  double p_y0;
66  std::vector<double> p_coefs;
67  std::vector<double> p_icoefs;
68  };
69 };
70 #endif
Isis::LoHighDistortionMap
Distort/undistort focal plane coordinates.
Definition: LoHighDistortionMap.h:52
Isis::LoHighDistortionMap::p_yPerspective
double p_yPerspective
Perspective correction factor in y.
Definition: LoHighDistortionMap.h:63
Isis::LoHighDistortionMap::LoHighDistortionMap
LoHighDistortionMap(Camera *parent)
Constructor for LunarOrbiterHighDistortionMap class.
Definition: LoHighDistortionMap.cpp:27
Isis::LoHighDistortionMap::SetFocalPlane
virtual bool SetFocalPlane(const double dx, const double dy)
Compute undistorted focal plane x/y for Lo High Resolution Camera.
Definition: LoHighDistortionMap.cpp:113
Isis::Camera
Definition: Camera.h:236
Isis::LoHighDistortionMap::p_icoefs
std::vector< double > p_icoefs
Distortion coefficients.
Definition: LoHighDistortionMap.h:67
Isis::LoHighDistortionMap::p_y0
double p_y0
Center of distortion on y axis.
Definition: LoHighDistortionMap.h:65
Isis::CameraDistortionMap
Distort/undistort focal plane coordinates.
Definition: CameraDistortionMap.h:41
Isis::LoHighDistortionMap::p_coefs
std::vector< double > p_coefs
Distortion coefficients.
Definition: LoHighDistortionMap.h:66
Isis::LoHighDistortionMap::p_x0
double p_x0
Center of distortion on x axis.
Definition: LoHighDistortionMap.h:64
Isis::LoHighDistortionMap::SetUndistortedFocalPlane
virtual bool SetUndistortedFocalPlane(const double ux, const double uy)
Compute distorted focal plane x/y for Lo High Resolution Camera.
Definition: LoHighDistortionMap.cpp:163
Isis::LoHighDistortionMap::p_xPerspective
double p_xPerspective
Perspective correction factor in x.
Definition: LoHighDistortionMap.h:62
Isis::LoHighDistortionMap::SetDistortion
void SetDistortion(const int naifIkCode)
Load LO High Resolution Camera perspective & distortion coefficients.
Definition: LoHighDistortionMap.cpp:84
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16