![]() |
Isis 3 Programmer Reference
|
Affine basis function. More...
#include <Affine.h>
Public Types | |
typedef TNT::Array2D< double > | AMatrix |
Affine Matrix. More... | |
Public Member Functions | |
Affine () | |
Constructs an Affine transform. More... | |
Affine (const AMatrix &a) | |
Create Affine transform from matrix. More... | |
~Affine () | |
Destroys the Affine object. More... | |
void | Solve (const double x[], const double y[], const double xp[], const double yp[], int n) |
Given a set of coordinate pairs (n >= 3), compute the affine transform that best fits the points. More... | |
void | Identity () |
Set the forward and inverse affine transform to the identity. More... | |
void | Translate (double tx, double ty) |
Apply a translation to the current affine transform. More... | |
void | Rotate (double rot) |
Apply a translation to the current affine transform. More... | |
void | Scale (double scaleFactor) |
Apply a scale to the current affine transform. More... | |
void | Compute (double x, double y) |
Compute (xp,yp) given (x,y). More... | |
double | xp () const |
Returns the computed x'. More... | |
double | yp () const |
Returns the computed y'. More... | |
void | ComputeInverse (double xp, double yp) |
Compute (x,y) given (xp,yp). More... | |
double | x () const |
Returns the computed x. More... | |
double | y () const |
Returns the computed y. More... | |
std::vector< double > | Coefficients (int var) |
Return the affine coeffients for the entered variable (1 or 2). More... | |
std::vector< double > | InverseCoefficients (int var) |
Return the inverse affine coeffients for the entered variable (1 or 2). More... | |
AMatrix | Forward () const |
Returns the forward Affine matrix. More... | |
AMatrix | Inverse () const |
Returns the inverse Affine matrix. More... | |
Static Public Member Functions | |
static AMatrix | getIdentity () |
Return an Affine identity matrix. More... | |
Private Member Functions | |
void | checkDims (const AMatrix &am) const |
Checks affine matrix to ensure it is a 3x3 standard form transform. More... | |
AMatrix | invert (const AMatrix &a) const |
Compute the inverse of a matrix. More... | |
Private Attributes | |
AMatrix | p_matrix |
Affine forward matrix. More... | |
AMatrix | p_invmat |
Affine inverse matrix. More... | |
double | p_x |
x value of the (x,y) coordinate More... | |
double | p_y |
y value of the (x,y) coordinate More... | |
double | p_xp |
x' value of the (x',y') coordinate More... | |
double | p_yp |
y' value of the (x',y') coordinate More... | |
Affine basis function.
An affine transform in two-dimensional space is defined as
This routine allows the programmer to define three or more mappings from (x,y) to (x',y') and will solve for A,B,C,D,E,F.
If the above coefficients can be computed then the inverse of the affine transform exists and will be computed such that
Alternatively (or in combination), translations and rotations can be applied to create a transform.
typedef TNT::Array2D<double> Isis::Affine::AMatrix |
Isis::Affine::Affine | ( | ) |
Constructs an Affine transform.
The default transform is the identity.
Definition at line 30 of file Affine.cpp.
Isis::Affine::Affine | ( | const AMatrix & | a | ) |
Create Affine transform from matrix.
This constructor creates the affine transform from a forward matrix. The input matrix is checked for the proper dimensions (3x3) and is then inverted to complete the inverse functionality.
The input matrix must be invertable or an exception will be thrown!
a | Forward affine matrix |
Definition at line 46 of file Affine.cpp.
Isis::Affine::~Affine | ( | ) |
Destroys the Affine object.
Definition at line 54 of file Affine.cpp.
|
private |
Checks affine matrix to ensure it is a 3x3 standard form transform.
am | Affine matrix to validate |
Definition at line 251 of file Affine.cpp.
vector< double > Isis::Affine::Coefficients | ( | int | var | ) |
Return the affine coeffients for the entered variable (1 or 2).
The coefficients are returned in a 3-dimensional vector
var | The coefficient vector index (1 or 2) |
Definition at line 220 of file Affine.cpp.
Referenced by Isis::CameraFocalPlaneMap::CameraFocalPlaneMap(), and Isis::LoCameraFiducialMap::CreateTrans().
void Isis::Affine::Compute | ( | double | x, |
double | y | ||
) |
Compute (xp,yp) given (x,y).
Use the methods xp() and yp() to obtain the results.
x | The transformation x factor |
y | The transformation y factor |
Definition at line 191 of file Affine.cpp.
Referenced by Isis::Chip::Extract().
void Isis::Affine::ComputeInverse | ( | double | xp, |
double | yp | ||
) |
Compute (x,y) given (xp,yp).
Use the methods x() and y() to obtain the results.
xp | The inverse transformation xp factor |
yp | The inverse transformation yp factor |
Definition at line 205 of file Affine.cpp.
|
inline |
|
static |
Return an Affine identity matrix.
Definition at line 61 of file Affine.cpp.
Referenced by Isis::AffineRadio::clone(), Isis::Threshold::hasConverged(), Isis::AffineRadio::operator+=(), and Isis::AffineRadio::Translate().
void Isis::Affine::Identity | ( | ) |
Set the forward and inverse affine transform to the identity.
That is, xp = x and yp = y for all (x,y).
Definition at line 73 of file Affine.cpp.
|
inline |
vector< double > Isis::Affine::InverseCoefficients | ( | int | var | ) |
Return the inverse affine coeffients for the entered variable (1 or 2).
The coefficients are returned in a 3-dimensional vector
var | The inverse coefficient vector index |
Definition at line 237 of file Affine.cpp.
Referenced by Isis::CameraFocalPlaneMap::CameraFocalPlaneMap(), and Isis::LoCameraFiducialMap::CreateTrans().
|
private |
Compute the inverse of a matrix.
This method will compute the inverse of an affine matrix for purposes of forward and inverse Affine computations.
a | Matrix to invert |
Definition at line 271 of file Affine.cpp.
void Isis::Affine::Rotate | ( | double | angle | ) |
Apply a translation to the current affine transform.
angle | degrees of counterclockwise rotation |
Definition at line 151 of file Affine.cpp.
References Isis::PI.
void Isis::Affine::Scale | ( | double | scaleFactor | ) |
Apply a scale to the current affine transform.
scaleFactor | The scale factor |
Definition at line 174 of file Affine.cpp.
void Isis::Affine::Solve | ( | const double | x[], |
const double | y[], | ||
const double | xp[], | ||
const double | yp[], | ||
int | n | ||
) |
Given a set of coordinate pairs (n >= 3), compute the affine transform that best fits the points.
If given exactly three coordinates that are not colinear, the fit will be guarenteed to be exact through the points.
x | The transformation x coordinates |
y | The transformation y coordinates |
xp | The transformation xp coordinates |
yp | The transformation yp coordinates |
n | The number of coordiante pairs |
Isis::iException::Math | - Affine transform not invertible |
Definition at line 92 of file Affine.cpp.
References Isis::LeastSquares::AddKnown(), Isis::BasisFunction::Coefficient(), and Isis::LeastSquares::Solve().
Referenced by Isis::LoCameraFiducialMap::CreateTrans().
void Isis::Affine::Translate | ( | double | tx, |
double | ty | ||
) |
Apply a translation to the current affine transform.
tx | translatation to add to x' |
ty | translation to add to y' |
Definition at line 134 of file Affine.cpp.
|
inline |
|
inline |
Returns the computed x'.
Definition at line 86 of file Affine.h.
References p_xp.
Referenced by Isis::Chip::Extract().
|
inline |
|
inline |
Returns the computed y'.
Definition at line 95 of file Affine.h.
References p_yp.
Referenced by Isis::Chip::Extract().
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
U.S. Department of the Interior | U.S. Geological Survey ISIS | Privacy & Disclaimers | Astrogeology Research Program To contact us, please post comments and questions on the USGS Astrogeology Discussion Board To report a bug, or suggest a feature go to: ISIS Github File Modified: 07/13/2023 15:17:45 |