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
LinearTransform.cc
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * Copyright 2008, 2009, 2010 LSST Corporation.
4  *
5  * This product includes software developed by the
6  * LSST Project (http://www.lsst.org/).
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the LSST License Statement and
19  * the GNU General Public License along with this program. If not,
20  * see <http://www.lsstcorp.org/LegalNotices/>.
21  */
22 
24 
25 #include "Eigen/LU"
26 
27 #include <iostream>
28 #include <iomanip>
29 
30 namespace lsst {
31 namespace afw {
32 namespace geom {
33 
36  r << (*this)[XX], (*this)[YX], (*this)[XY], (*this)[YY];
37  return r;
38 }
39 
41  (*this)[XX] = vector[XX];
42  (*this)[XY] = vector[XY];
43  (*this)[YX] = vector[YX];
44  (*this)[YY] = vector[YY];
45 }
46 
48  Eigen::FullPivLU<Matrix> lu(getMatrix());
49  if (!lu.isInvertible()) {
50  throw LSST_EXCEPT(SingularTransformException, "Could not compute LinearTransform inverse");
51  }
52  Matrix inv = lu.inverse();
53  return LinearTransform(inv);
54 }
55 
57  Eigen::MatrixXd const& m = getMatrix();
58  return m(0, 0) * m(1, 1) - m(0, 1) * m(1, 0);
59 }
60 
62  TransformDerivativeMatrix r = TransformDerivativeMatrix::Zero();
63  r(0, XX) = input.getX();
64  r(0, XY) = input.getY();
65  r(1, YX) = input.getX();
66  r(1, YY) = input.getY();
67  return r;
68 }
69 
71  std::ios::fmtflags flags = os.flags();
72  int prec = os.precision(7);
73  os.setf(std::ios::fixed);
74  os << "LinearTransform([(" << std::setw(10) << t[LinearTransform::XX] << "," << std::setw(10)
75  << t[LinearTransform::XY] << "),\n";
76  os << " (" << std::setw(10) << t[LinearTransform::YX] << "," << std::setw(10)
77  << t[LinearTransform::YY] << ")])";
78  os.precision(prec);
79  os.flags(flags);
80  return os;
81 }
82 }
83 }
84 } // end lsst::afw::geom
T setf(T... args)
Matrix const & getMatrix() const
std::ostream & operator<<(std::ostream &os, lsst::afw::geom::AffineTransform const &transform)
Eigen::Matrix< double, 4, 1 > ParameterVector
T precision(T... args)
LinearTransform const invert() const
Return the inverse transform.
LinearTransform()
Construct an empty (identity) LinearTransform.
Eigen::Matrix< double, 2, 2, Eigen::DontAlign > Matrix
T setw(T... args)
A 2D linear coordinate transformation.
T flags(T... args)
A base class for image defects.
Definition: cameraGeom.dox:3
ParameterVector const getParameterVector() const
Return the transform matrix elements as a parameter vector.
TransformDerivativeMatrix dTransform(Point2D const &input) const
Derivative of (*this)(input) with respect to the transform elements (for Point).
Eigen::Matrix< double, 2, 4 > TransformDerivativeMatrix
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:47
int m
Definition: SpanSet.cc:44
double computeDeterminant() const
Return the determinant of the 2x2 matrix.
STL class.
std::ostream * os
Definition: Schema.cc:736
void setParameterVector(ParameterVector const &vector)
Set the transform matrix elements from a parameter vector.