LSSTApplications
12.1-5-gbdcc3ab+2,15.0+13,15.0+26,15.0-1-g19261fa+17,15.0-1-g60afb23+26,15.0-1-g615e0bb+18,15.0-1-g788a293+26,15.0-1-ga91101e+26,15.0-1-gae1598d+12,15.0-1-gd076f1f+24,15.0-1-gdf18595+5,15.0-1-gf4f1c34+12,15.0-11-g7db6e543+4,15.0-12-g3681e7a+4,15.0-15-gc15de322,15.0-16-g83b84f4,15.0-2-g100d730+19,15.0-2-g1f9c9cf+4,15.0-2-g8aea5f4+1,15.0-2-gf38729e+21,15.0-29-ga12a2b06e,15.0-3-g11fe1a0+14,15.0-3-g707930d+3,15.0-3-g9103c06+12,15.0-3-gd3cbb57+3,15.0-4-g2d82b59,15.0-4-g535e784+10,15.0-4-g92ca6c3+4,15.0-4-gf906033+2,15.0-5-g23e394c+14,15.0-5-g4be42a9,15.0-6-g69628aa,15.0-6-g86e3f3d+1,15.0-6-gfa9b38f+4,15.0-7-g949993c+3,15.0-8-g67a62d3+1,15.0-8-gcf05001+1,15.0-9-g1e7c341+1,w.2018.21
LSSTDataManagementBasePackage
|
A 2D linear coordinate transformation. More...
#include <LinearTransform.h>
Public Types | |
enum | Parameters { XX = 0, YX = 1, XY = 2, YY = 3 } |
typedef Eigen::Matrix< double, 4, 1 > | ParameterVector |
typedef Eigen::Matrix< double, 2, 4 > | TransformDerivativeMatrix |
typedef Eigen::Matrix< double, 4, 4 > | ProductDerivativeMatrix |
typedef Eigen::Matrix< double, 2, 2, Eigen::DontAlign > | Matrix |
Public Member Functions | |
LinearTransform () | |
Construct an empty (identity) LinearTransform. More... | |
LinearTransform (Matrix const &matrix) | |
Construct an LinearTransform from an Eigen::Matrix. More... | |
LinearTransform (LinearTransform const &)=default | |
LinearTransform (LinearTransform &&)=default | |
~LinearTransform ()=default | |
LinearTransform | operator* (LinearTransform const &other) const |
LinearTransform & | operator= (LinearTransform const &)=default |
LinearTransform & | operator= (LinearTransform &&)=default |
LinearTransform & | operator+= (LinearTransform const &other) |
LinearTransform | operator+ (LinearTransform const &other) |
LinearTransform & | operator-= (LinearTransform const &other) |
LinearTransform | operator- (LinearTransform const &other) |
ParameterVector const | getParameterVector () const |
Return the transform matrix elements as a parameter vector. More... | |
void | setParameterVector (ParameterVector const &vector) |
Set the transform matrix elements from a parameter vector. More... | |
Matrix const & | getMatrix () const |
Matrix & | getMatrix () |
double & | operator[] (int i) |
double const & | operator[] (int i) const |
LinearTransform const | invert () const |
Return the inverse transform. More... | |
double | computeDeterminant () const |
Return the determinant of the 2x2 matrix. More... | |
bool | isIdentity () const |
Whether the transform is a no-op. More... | |
Point2D | operator() (Point2D const &p) const |
Transform a Point2D object. More... | |
Extent2D | operator() (Extent2D const &p) const |
Transform a Extent2D object. More... | |
TransformDerivativeMatrix | dTransform (Point2D const &input) const |
Derivative of (*this)(input) with respect to the transform elements (for Point). More... | |
TransformDerivativeMatrix | dTransform (Extent2D const &input) const |
Derivative of (*this)(input) with respect to the transform elements (for Extent);. More... | |
Static Public Member Functions | |
static LinearTransform | makeScaling (double s) |
static LinearTransform | makeScaling (double s, double t) |
static LinearTransform | makeRotation (Angle t) |
A 2D linear coordinate transformation.
The transform is represented by a matrix \( \mathbf{M} \) such that
\[ \left[\begin{array}{ c } x_f \\ y_f \end{array}\right] = \mathbf{M} \left[\begin{array}{ c } x_i \\ y_i \end{array}\right] \]
where \((x_i,y_i)\) are the input coordinates and \((x_f,y_f)\) are the output coordinates.
If \( x_f(x_i,y_i) \) and \( y_f(x_i,y_i) \) are continuous differentiable functions, then
\[ \mathbf{M} = \left[\begin{array}{ c c } \displaystyle\frac{\partial x_f}{\partial x_i} & \displaystyle\frac{\partial x_f}{\partial y_i} \\ \displaystyle\frac{\partial y_f}{\partial x_i} & \displaystyle\frac{\partial y_f}{\partial y_i} \end{array}\right] \]
evaluated at \((x_i,y_i)\).
Definition at line 71 of file LinearTransform.h.
typedef Eigen::Matrix<double, 2, 2, Eigen::DontAlign> lsst::afw::geom::LinearTransform::Matrix |
Definition at line 79 of file LinearTransform.h.
typedef Eigen::Matrix<double, 4, 1> lsst::afw::geom::LinearTransform::ParameterVector |
Definition at line 75 of file LinearTransform.h.
typedef Eigen::Matrix<double, 4, 4> lsst::afw::geom::LinearTransform::ProductDerivativeMatrix |
Definition at line 77 of file LinearTransform.h.
typedef Eigen::Matrix<double, 2, 4> lsst::afw::geom::LinearTransform::TransformDerivativeMatrix |
Definition at line 76 of file LinearTransform.h.
|
inline |
Construct an empty (identity) LinearTransform.
Definition at line 82 of file LinearTransform.h.
|
inlineexplicit |
Construct an LinearTransform from an Eigen::Matrix.
Definition at line 85 of file LinearTransform.h.
|
default |
|
default |
|
default |
double lsst::afw::geom::LinearTransform::computeDeterminant | ( | ) | const |
Return the determinant of the 2x2 matrix.
Definition at line 56 of file LinearTransform.cc.
LinearTransform::TransformDerivativeMatrix lsst::afw::geom::LinearTransform::dTransform | ( | Point2D const & | input | ) | const |
Derivative of (*this)(input) with respect to the transform elements (for Point).
Definition at line 61 of file LinearTransform.cc.
|
inline |
Derivative of (*this)(input) with respect to the transform elements (for Extent);.
Definition at line 188 of file LinearTransform.h.
|
inline |
Definition at line 145 of file LinearTransform.h.
|
inline |
Definition at line 146 of file LinearTransform.h.
LinearTransform::ParameterVector const lsst::afw::geom::LinearTransform::getParameterVector | ( | ) | const |
Return the transform matrix elements as a parameter vector.
The elements will be ordered XX, YX, XY, YY
Definition at line 34 of file LinearTransform.cc.
LinearTransform const lsst::afw::geom::LinearTransform::invert | ( | ) | const |
Return the inverse transform.
lsst::afw::geom::SingularTransformException |
Definition at line 47 of file LinearTransform.cc.
|
inline |
Whether the transform is a no-op.
Definition at line 164 of file LinearTransform.h.
|
inlinestatic |
Definition at line 103 of file LinearTransform.h.
|
inlinestatic |
Definition at line 95 of file LinearTransform.h.
|
inlinestatic |
Definition at line 99 of file LinearTransform.h.
Transform a Point2D object.
This operation is equivalent to applying the LinearTransform to an lsst::afw::geom::Extent
Definition at line 172 of file LinearTransform.h.
Transform a Extent2D object.
This operation is equivalent to applying the LinearTransform to an lsst::afw::geom::Point
Definition at line 180 of file LinearTransform.h.
|
inline |
Definition at line 91 of file LinearTransform.h.
|
inline |
Definition at line 115 of file LinearTransform.h.
|
inline |
Definition at line 110 of file LinearTransform.h.
|
inline |
Definition at line 126 of file LinearTransform.h.
|
inline |
Definition at line 121 of file LinearTransform.h.
|
default |
|
default |
|
inline |
Definition at line 148 of file LinearTransform.h.
|
inline |
Definition at line 149 of file LinearTransform.h.
void lsst::afw::geom::LinearTransform::setParameterVector | ( | LinearTransform::ParameterVector const & | vector | ) |
Set the transform matrix elements from a parameter vector.
The parameter vector is ordered XX, YX, XY, YY
Definition at line 40 of file LinearTransform.cc.