Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

Isis 3 Programmer Reference
CameraFocalPlaneMap.h
1#ifndef CameraFocalPlaneMap_h
2#define CameraFocalPlaneMap_h
7
8/* SPDX-License-Identifier: CC0-1.0 */
9#include <QVector>
10
11namespace Isis {
12
13 class Affine;
14 class Camera;
85 public:
86 CameraFocalPlaneMap(Camera *parent, const int naifIkCode);
87 CameraFocalPlaneMap(const int naifIkCode);
88 CameraFocalPlaneMap(Camera *parent, Affine &affine);
89 virtual ~CameraFocalPlaneMap();
90
91 virtual bool SetDetector(const double sample, const double line);
92 virtual bool SetFocalPlane(const double dx, const double dy);
93
94 double FocalPlaneX() const;
95 double FocalPlaneY() const;
96 double DetectorSample() const;
97 double DetectorLine() const;
98 double CenteredDetectorSample() const;
99 double CenteredDetectorLine() const;
100 void SetDetectorOrigin(const double sample, const double line);
101 double DetectorLineOrigin() const;
102 double DetectorSampleOrigin() const;
103 void SetDetectorOffset(const double sampleOffset,
104 const double lineOffset);
105 double DetectorLineOffset() const;
106 double DetectorSampleOffset() const;
107
108 void SetTransL(const QVector<double> transL);
109 void SetTransS(const QVector<double> transS);
110 void SetTransX(const QVector<double> transX);
111 void SetTransY(const QVector<double> transY);
112
113 const double *TransL() const;
114 const double *TransS() const;
115 const double *TransX() const;
116 const double *TransY() const;
117
126
127// FocalPlaneXDependencyType FocalPlaneXDependency();
129 double SignMostSigX();
130 double SignMostSigY();
131
132 protected:
133 void ComputeCentered();
134 void ComputeUncentered();
135
137
140
147
150
151 double p_transx[3];
152 double p_transy[3];
153 double p_itranss[3];
154 double p_itransl[3];
155
156 private:
157 void Init(Camera *parent, const int naifIkCode);
158 };
159};
160#endif
Affine basis function.
Definition Affine.h:65
int FocalPlaneXDependency()
Return the focal plane x dependency variable.
void ComputeUncentered()
Convenience method to center detector origin (use when inheriting)
Camera * p_camera
Camera of the image.
double p_itranss[3]
The x transition from distorted to detector.
void SetDetectorOffset(const double sampleOffset, const double lineOffset)
Set the detector offset.
const double * TransL() const
double SignMostSigY()
Return the sign of the p_transy coefficient with the greatest magnitude.
double p_transx[3]
The x transition from detector to distorted.
double p_detectorLineOrigin
The origin line of the detector.
void Init(Camera *parent, const int naifIkCode)
Initialize the focal plane map to its default state.
void SetTransS(const QVector< double > transS)
Set the affine coefficients for converting destorted (x,y) to a detector Sample.
double p_detectorSample
sample value of the detector
void SetTransL(const QVector< double > transL)
Set the affine coefficients for converting destorted (x,y) to a detector Line.
virtual bool SetDetector(const double sample, const double line)
Compute distorted focal plane coordinate from detector position (sampel,line)
double p_centeredDetectorLine
Detector line position.
void SetDetectorOrigin(const double sample, const double line)
Set the detector origin.
void SetTransX(const QVector< double > transX)
Set the affine coefficients for converting detector (sample,line) to a distorted X.
double p_itransl[3]
The y transition from distorted to detector.
void SetTransY(const QVector< double > transY)
Set the affine coefficients for converting detector (sample,line) to a distorted Y.
double p_transy[3]
The y transition from detector to distorted.
double p_detectorSampleOrigin
The origin sample of the detector.
double p_focalPlaneY
y value of focal plane coordinate
double p_detectorSampleOffset
offset of the detector origin sample from the average
FocalPlaneXDependencyType
Focal plane x dependency indicates whether the x value of the focal plane coordinate maps to a sample...
@ Line
The x value of the focal plane maps to a line.
@ Sample
The x value of the focal plane maps to a sample.
virtual ~CameraFocalPlaneMap()
Destructor.
double p_detectorLineOffset
Offset of the detector origin line from the average.
const double * TransY() const
virtual bool SetFocalPlane(const double dx, const double dy)
Compute detector position (sample,line) from focal plane coordinates.
const double * TransX() const
const double * TransS() const
double p_focalPlaneX
x value of focal plane coordinate
double SignMostSigX()
Return the sign of the p_transx coefficient with the greatest magnitude.
void ComputeCentered()
Convenience method to center detector origin (use when inheriting)
CameraFocalPlaneMap(Camera *parent, const int naifIkCode)
Construct mapping between detectors and focal plane x/y.
double p_centeredDetectorSample
Detector sample position.
double p_detectorLine
line value of the detector
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16