Isis 3 Programmer Reference
OsirisRexDistortionMap.h
1#ifndef OsirisRexDistortionMap_h
2#define OsirisRexDistortionMap_h
3
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "CameraDistortionMap.h"
13
14namespace Isis {
31 public:
32 OsirisRexDistortionMap(Camera *parent, double zDirection = 1.0);
33
35
36 virtual void SetDistortion(int naifIkCode, QString filterName);
37
38 virtual bool SetFocalPlane(double dx, double dy);
39
40 virtual bool SetUndistortedFocalPlane(double ux, double uy);
41
42 protected:
43 double m_pixelPitch;
48 };
49};
50#endif
Distort/undistort focal plane coordinates.
Distort/undistort focal plane coordinates for OSIRIS REx's cameras.
virtual bool SetFocalPlane(double dx, double dy)
Compute undistorted focal plane x/y.
virtual ~OsirisRexDistortionMap()
Default Destructor.
OsirisRexDistortionMap(Camera *parent, double zDirection=1.0)
OSIRIS REx Camera distortion map constructor.
double m_distortionOriginSample
The distortion's origin sample coordinate.
virtual void SetDistortion(int naifIkCode, QString filterName)
Load distortion coefficients and center-of-distortion for OCAMS.
double m_detectorOriginLine
The origin of the detector's line coordinate.
virtual bool SetUndistortedFocalPlane(double ux, double uy)
Compute distorted focal plane x/y.
double m_pixelPitch
The pixel pitch for OCAMS.
double m_distortionOriginLine
The distortion's origin line coordinate.
double m_detectorOriginSample
The origin of the detector's sample coordinate.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16