Isis 3 Programmer Reference
LoCameraFiducialMap.h
1#ifndef LoCameraFiducialMap_h
2#define LoCameraFiducialMap_h
3
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "PvlGroup.h"
13
14namespace Isis {
45 public:
46 LoCameraFiducialMap(PvlGroup &inst, const int naifIkCode);
49
50 private:
51 void ReadFiducials(PvlGroup &inst);
52 void CreateTrans(int xdir);
53 std::vector<double> p_fidSamples;
54 std::vector<double> p_fidLines;
55 std::vector<double> p_fidXCoords;
56 std::vector<double> p_fidYCoords;
58
59 };
60};
61#endif
Computes map from image coordinates to focal plane based on fiducials.
void ReadFiducials(PvlGroup &inst)
Reads the fiducials from the instrument group of the labels.
std::vector< double > p_fidSamples
Image sample positions of fiducial map.
std::vector< double > p_fidLines
Image line positions of fiducial map.
std::vector< double > p_fidXCoords
Focal plane X positions of fiducial map.
void CreateTrans(int xdir)
Creates focal plane affine transform.
~LoCameraFiducialMap()
Destroys LoCameraFiducialMap object.
std::vector< double > p_fidYCoords
Focal plane Y positions of fiducial map.
LoCameraFiducialMap(PvlGroup &inst, const int naifIkCode)
Constructs mapping between Lunar Orbiter detectors and focal plane x/y.
int p_naifIkCode
Naif instrument code.
Contains multiple PvlContainers.
Definition PvlGroup.h:41
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16