LSST Applications g0f08755f38+9c285cab97,g1635faa6d4+13f3999e92,g1653933729+a8ce1bb630,g1a0ca8cf93+bf6eb00ceb,g28da252d5a+0829b12dee,g29321ee8c0+5700dc9eac,g2bbee38e9b+9634bc57db,g2bc492864f+9634bc57db,g2cdde0e794+c2c89b37c4,g3156d2b45e+41e33cbcdc,g347aa1857d+9634bc57db,g35bb328faa+a8ce1bb630,g3a166c0a6a+9634bc57db,g3e281a1b8c+9f2c4e2fc3,g414038480c+077ccc18e7,g41af890bb2+fde0dd39b6,g5fbc88fb19+17cd334064,g781aacb6e4+a8ce1bb630,g80478fca09+55a9465950,g82479be7b0+d730eedb7d,g858d7b2824+9c285cab97,g9125e01d80+a8ce1bb630,g9726552aa6+10f999ec6a,ga5288a1d22+2a84bb7594,gacf8899fa4+c69c5206e8,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gc28159a63d+9634bc57db,gcf0d15dbbd+4b7d09cae4,gda3e153d99+9c285cab97,gda6a2b7d83+4b7d09cae4,gdaeeff99f8+1711a396fd,ge2409df99d+5e831397f4,ge79ae78c31+9634bc57db,gf0baf85859+147a0692ba,gf3967379c6+41c94011de,gf3fb38a9a8+8f07a9901b,gfb92a5be7c+9c285cab97,w.2024.46
LSST Data Management Base Package
|
Polynomial transformation class. More...
#include <AstrometryTransform.h>
Public Member Functions | |
AstrometryTransformPolynomial (std::size_t order=1) | |
Default transform : identity for all orders (>=1 ). | |
AstrometryTransformPolynomial (const AstrometryTransform *transform, const Frame &frame, std::size_t order, std::size_t nPoint=1000) | |
Constructs a "polynomial image" from an existing transform, over a specified domain. | |
AstrometryTransformPolynomial (const std::shared_ptr< afw::geom::TransformPoint2ToPoint2 > &transform, jointcal::Frame const &domain, std::size_t order, std::size_t nSteps=50) | |
Constructs a polynomial approximation to an afw::geom::TransformPoint2ToPoint2. | |
void | setOrder (std::size_t order) |
Sets the polynomial order (the highest sum of exponents of the largest monomial). | |
std::size_t | getOrder () const |
Returns the polynomial order. | |
void | apply (double xIn, double yIn, double &xOut, double &yOut) const override |
void | computeDerivative (Point const &where, AstrometryTransformLinear &derivative, double step=0.01) const override |
specialised analytic routine | |
virtual void | transformPosAndErrors (const FatPoint &in, FatPoint &out) const override |
a mix of apply and Derivative | |
std::size_t | getNpar () const override |
total number of parameters | |
void | print (std::ostream &out) const override |
print out of coefficients in a readable form. | |
double | fit (StarMatchList const &starMatchList) override |
guess what | |
AstrometryTransformPolynomial | operator* (AstrometryTransformPolynomial const &right) const |
Composition (internal stuff in quadruple precision) | |
AstrometryTransformPolynomial | operator+ (AstrometryTransformPolynomial const &right) const |
Addition. | |
AstrometryTransformPolynomial | operator- (AstrometryTransformPolynomial const &right) const |
Subtraction. | |
std::unique_ptr< AstrometryTransform > | composeAndReduce (AstrometryTransformPolynomial const &right) const |
Return a reduced composition of newTransform = this(right()), or nullptr if it cannot be reduced. | |
std::unique_ptr< AstrometryTransform > | clone () const override |
returns a copy (allocated by new) of the transformation. | |
double | coeffOrZero (std::size_t powX, std::size_t powY, std::size_t whichCoord) const |
read access, zero if beyond order | |
double | determinant () const |
double | paramRef (Eigen::Index i) const override |
double & | paramRef (Eigen::Index i) override |
void | paramDerivatives (Point const &where, double *dx, double *dy) const override |
Derivative w.r.t parameters. | |
std::shared_ptr< ast::Mapping > | toAstMap (jointcal::Frame const &domain) const override |
Create an equivalent AST mapping for this transformation, including an analytic inverse if possible. | |
void | write (std::ostream &s) const override |
void | read (std::istream &s) |
virtual void | apply (double xIn, double yIn, double &xOut, double &yOut) const=0 |
void | apply (Point const &in, Point &out) const |
applies the tranfo to in and writes into out. Is indeed virtual. | |
Point | apply (Point const &in) const |
All these apply(..) shadow the virtual one in derived classes, unless one writes "using
AstrometryTransform::apply". | |
Frame | apply (Frame const &inputframe, bool inscribed) const |
Transform a bounding box, taking either the inscribed or circumscribed box. | |
virtual std::unique_ptr< AstrometryTransform > | composeAndReduce (AstrometryTransform const &right) const |
Return a reduced composition of newTransform = this(right()), or nullptr if it cannot be reduced. | |
std::string | __str__ () const |
void | transformStar (FatPoint &in) const |
virtual double | getJacobian (Point const &point) const |
returns the local jacobian. | |
virtual double | getJacobian (double x, double y) const |
returns the local jacobian. | |
virtual AstrometryTransformLinear | linearApproximation (Point const &where, double step=0.01) const |
linear (local) approximation. | |
virtual void | transformErrors (Point const &where, const double *vIn, double *vOut) const |
transform errors (represented as double[3] in order V(xx),V(yy),Cov(xy)) | |
virtual std::unique_ptr< AstrometryTransform > | inverseTransform (double precision, const Frame ®ion) const |
returns an inverse transform. Numerical if not overloaded. | |
void | getParams (double *params) const |
params should be at least Npar() long | |
void | offsetParams (Eigen::VectorXd const &delta) |
virtual std::unique_ptr< AstrometryTransform > | roughInverse (const Frame ®ion) const |
Rough inverse. | |
void | write (const std::string &fileName) const |
double | getCoefficient (std::size_t powX, std::size_t powY, std::size_t whichCoord) const |
Get the coefficient of a given power in x and y, for either the x or y coordinate. | |
double & | getCoefficient (std::size_t powX, std::size_t powY, std::size_t whichCoord) |
Get the coefficient of a given power in x and y, for either the x or y coordinate. | |
Polynomial transformation class.
Definition at line 280 of file AstrometryTransform.h.
lsst::jointcal::AstrometryTransformPolynomial::AstrometryTransformPolynomial | ( | std::size_t | order = 1 | ) |
Default transform : identity for all orders (>=1 ).
Default transform : identity for all orders (>=1 )
order | The highest total power (x+y) of monomials of this polynomial. |
Definition at line 471 of file AstrometryTransform.cc.
lsst::jointcal::AstrometryTransformPolynomial::AstrometryTransformPolynomial | ( | const AstrometryTransform * | transform, |
const Frame & | frame, | ||
std::size_t | order, | ||
std::size_t | nPoint = 1000 ) |
Constructs a "polynomial image" from an existing transform, over a specified domain.
Definition at line 484 of file AstrometryTransform.cc.
lsst::jointcal::AstrometryTransformPolynomial::AstrometryTransformPolynomial | ( | const std::shared_ptr< afw::geom::TransformPoint2ToPoint2 > & | transform, |
jointcal::Frame const & | domain, | ||
std::size_t | order, | ||
std::size_t | nSteps = 50 ) |
Constructs a polynomial approximation to an afw::geom::TransformPoint2ToPoint2.
[in] | transform | The transform to be approximated. |
[in] | domain | The valid domain of the transform. |
[in] | order | The polynomial order to use when approximating. |
[in] | nSteps | The number of sample points per axis (nSteps^2 total points). |
Definition at line 506 of file AstrometryTransform.cc.
|
inlineinherited |
Definition at line 94 of file AstrometryTransform.h.
|
overridevirtual |
Implements lsst::jointcal::AstrometryTransform.
Definition at line 573 of file AstrometryTransform.cc.
|
virtual |
Implements lsst::jointcal::AstrometryTransform.
Transform a bounding box, taking either the inscribed or circumscribed box.
[in] | inputframe | The frame to be transformed. |
[in] | inscribed | Return the inscribed (true) or circumscribed (false) box. |
Definition at line 89 of file AstrometryTransform.cc.
All these apply(..) shadow the virtual one in derived classes, unless one writes "using AstrometryTransform::apply".
Definition at line 75 of file AstrometryTransform.h.
applies the tranfo to in and writes into out. Is indeed virtual.
Definition at line 71 of file AstrometryTransform.h.
|
inlineoverridevirtual |
returns a copy (allocated by new) of the transformation.
Implements lsst::jointcal::AstrometryTransform.
Definition at line 344 of file AstrometryTransform.h.
double lsst::jointcal::AstrometryTransformPolynomial::coeffOrZero | ( | std::size_t | powX, |
std::size_t | powY, | ||
std::size_t | whichCoord ) const |
read access, zero if beyond order
Definition at line 756 of file AstrometryTransform.cc.
|
virtual |
Return a reduced composition of newTransform = this(right()), or nullptr if it cannot be reduced.
"Reduced" in this context means that they are capable of being merged into a single transform, for example, for two polynomials:
\[ f(x) = 1 + x^2, g(x) = -1 + 3x \]
we would have h = f.composeAndReduce(g) == 2 - 6x + 9x^2
.
To be overloaded by derived classes if they can properly reduce the composition.
right | The transform to apply first. |
Reimplemented from lsst::jointcal::AstrometryTransform.
Definition at line 131 of file AstrometryTransform.cc.
std::unique_ptr< AstrometryTransform > lsst::jointcal::AstrometryTransformPolynomial::composeAndReduce | ( | AstrometryTransformPolynomial const & | right | ) | const |
Return a reduced composition of newTransform = this(right()), or nullptr if it cannot be reduced.
"Reduced" in this context means that they are capable of being merged into a single transform, for example, for two polynomials:
\[ f(x) = 1 + x^2, g(x) = -1 + 3x \]
we would have h = f.composeAndReduce(g) == 2 - 6x + 9x^2
.
To be overloaded by derived classes if they can properly reduce the composition.
right | The transform to apply first. |
Definition at line 944 of file AstrometryTransform.cc.
|
overridevirtual |
specialised analytic routine
Reimplemented from lsst::jointcal::AstrometryTransform.
Definition at line 597 of file AstrometryTransform.cc.
double lsst::jointcal::AstrometryTransformPolynomial::determinant | ( | ) | const |
Definition at line 826 of file AstrometryTransform.cc.
|
overridevirtual |
guess what
Implements lsst::jointcal::AstrometryTransform.
Definition at line 926 of file AstrometryTransform.cc.
double & lsst::jointcal::AstrometryTransformPolynomial::getCoefficient | ( | std::size_t | powX, |
std::size_t | powY, | ||
std::size_t | whichCoord ) |
Get the coefficient of a given power in x and y, for either the x or y coordinate.
Definition at line 750 of file AstrometryTransform.cc.
double lsst::jointcal::AstrometryTransformPolynomial::getCoefficient | ( | std::size_t | powX, |
std::size_t | powY, | ||
std::size_t | whichCoord ) const |
Get the coefficient of a given power in x and y, for either the x or y coordinate.
Definition at line 741 of file AstrometryTransform.cc.
|
virtualinherited |
returns the local jacobian.
Definition at line 100 of file AstrometryTransform.cc.
|
inlinevirtualinherited |
returns the local jacobian.
Definition at line 110 of file AstrometryTransform.h.
|
inlineoverridevirtual |
total number of parameters
Reimplemented from lsst::jointcal::AstrometryTransform.
Definition at line 321 of file AstrometryTransform.h.
|
inline |
Returns the polynomial order.
Definition at line 307 of file AstrometryTransform.h.
|
inherited |
params should be at least Npar() long
Definition at line 217 of file AstrometryTransform.cc.
|
virtualinherited |
returns an inverse transform. Numerical if not overloaded.
precision and region refer to the "input" side of this, and hence to the output side of the returned AstrometryTransform.
Reimplemented in lsst::jointcal::TanPixelToRaDec, lsst::jointcal::TanSipPixelToRaDec, lsst::jointcal::TanRaDecToPixel, lsst::jointcal::AstrometryTransformLinear, and lsst::jointcal::AstrometryTransformInverse.
Definition at line 304 of file AstrometryTransform.cc.
|
virtualinherited |
linear (local) approximation.
Reimplemented in lsst::jointcal::AstrometryTransformIdentity, and lsst::jointcal::AstrometryTransformLinear.
Definition at line 137 of file AstrometryTransform.cc.
|
inherited |
Definition at line 222 of file AstrometryTransform.cc.
AstrometryTransformPolynomial lsst::jointcal::AstrometryTransformPolynomial::operator* | ( | AstrometryTransformPolynomial const & | right | ) | const |
Composition (internal stuff in quadruple precision)
Definition at line 1052 of file AstrometryTransform.cc.
AstrometryTransformPolynomial lsst::jointcal::AstrometryTransformPolynomial::operator+ | ( | AstrometryTransformPolynomial const & | right | ) | const |
Addition.
Definition at line 1074 of file AstrometryTransform.cc.
AstrometryTransformPolynomial lsst::jointcal::AstrometryTransformPolynomial::operator- | ( | AstrometryTransformPolynomial const & | right | ) | const |
Subtraction.
Definition at line 1088 of file AstrometryTransform.cc.
|
overridevirtual |
Derivative w.r.t parameters.
Derivatives should be al least 2*NPar long. first Npar, for x, last Npar for y.
Reimplemented from lsst::jointcal::AstrometryTransform.
Definition at line 776 of file AstrometryTransform.cc.
|
overridevirtual |
Reimplemented from lsst::jointcal::AstrometryTransform.
Definition at line 766 of file AstrometryTransform.cc.
|
overridevirtual |
Reimplemented from lsst::jointcal::AstrometryTransform.
Definition at line 771 of file AstrometryTransform.cc.
|
overridevirtual |
print out of coefficients in a readable form.
Implements lsst::jointcal::AstrometryTransform.
Definition at line 796 of file AstrometryTransform.cc.
void lsst::jointcal::AstrometryTransformPolynomial::read | ( | std::istream & | s | ) |
Definition at line 1114 of file AstrometryTransform.cc.
|
virtualinherited |
Rough inverse.
Stored by the numerical inverter to guess starting point for the trials. Just here to enable overloading.
Reimplemented in lsst::jointcal::AstrometryTransformInverse, lsst::jointcal::TanPixelToRaDec, and lsst::jointcal::TanRaDecToPixel.
Definition at line 196 of file AstrometryTransform.cc.
void lsst::jointcal::AstrometryTransformPolynomial::setOrder | ( | std::size_t | order | ) |
Sets the polynomial order (the highest sum of exponents of the largest monomial).
Definition at line 552 of file AstrometryTransform.cc.
|
overridevirtual |
Create an equivalent AST mapping for this transformation, including an analytic inverse if possible.
domain | The domain of the transform, to help find an inverse. |
Reimplemented from lsst::jointcal::AstrometryTransform.
Definition at line 1099 of file AstrometryTransform.cc.
|
virtualinherited |
transform errors (represented as double[3] in order V(xx),V(yy),Cov(xy))
Definition at line 163 of file AstrometryTransform.cc.
|
overridevirtual |
a mix of apply and Derivative
Reimplemented from lsst::jointcal::AstrometryTransform.
Definition at line 657 of file AstrometryTransform.cc.
|
inlineinherited |
Definition at line 107 of file AstrometryTransform.h.
|
inherited |
Definition at line 247 of file AstrometryTransform.cc.
|
overridevirtual |
Reimplemented from lsst::jointcal::AstrometryTransform.
Definition at line 1104 of file AstrometryTransform.cc.