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
15namespace 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
Distort/undistort focal plane coordinates.
Distortion map for the Clementine UVVIS camera.
double p_p2
Second coefficient of decentering distortion.
double p_k3
Quadratic term coefficient of radial distortion.
~ClementineUvvisDistortionMap()
Deconstruct the distortion map for the Clementine UVVIS instrument.
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.
double p_yp
Principal point y coordinate.
bool SetFocalPlane(const double dx, const double dy)
Compute undistorted focal plane x/y.
double p_k2
Linear term coefficient of radial distortion.
double p_xp
Principal point x coordinate.
double p_p1
First coefficient of decentering distortion.
double p_k1
Constant term coefficient of radial distortion.
bool SetUndistortedFocalPlane(const double ux, const double uy)
Compute distorted focal plane x/y.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16