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
RadialDistortionMap.h
1#ifndef NirDistortionMap_h
2#define NirDistortionMap_h
7
8/* SPDX-License-Identifier: CC0-1.0 */
9#include "CameraDistortionMap.h"
10#include "Camera.h"
11
12namespace Isis {
18 class RadialDistortionMap : public CameraDistortionMap {
19 public:
20 RadialDistortionMap(Camera *parent, double k1, double zDirection = 1.0);
21 ~RadialDistortionMap() {};
22
23 bool SetFocalPlane(const double dx, const double dy);
24 bool SetUndistortedFocalPlane(const double ux, const double uy);
25
26 private:
27 double p_k1;
28 //double p_cameraSpec;
29 };
30};
31#endif
CameraDistortionMap(Camera *parent, double zDirection=1.0)
Camera distortion map constructor.
bool SetFocalPlane(const double dx, const double dy)
Compute undistorted focal plane x/y.
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