LSSTApplications  20.0.0
LSSTDataManagementBasePackage
SipTransform.h
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 
3 /*
4  * LSST Data Management System
5  * Copyright 2016 LSST/AURA
6  *
7  * This product includes software developed by the
8  * LSST Project (http://www.lsst.org/).
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the LSST License Statement and
21  * the GNU General Public License along with this program. If not,
22  * see <http://www.lsstcorp.org/LegalNotices/>.
23  */
24 #ifndef LSST_MEAS_ASTROM_SipTransform_INCLUDED
25 #define LSST_MEAS_ASTROM_SipTransform_INCLUDED
26 
27 #include "lsst/geom/Extent.h"
28 #include "lsst/geom/Point.h"
29 #include "lsst/geom/SpherePoint.h"
32 #include "lsst/afw/geom/SkyWcs.h"
34 
35 namespace lsst {
36 namespace meas {
37 namespace astrom {
38 
47 public:
51  geom::Point2D const& getPixelOrigin() const { return _pixelOrigin; }
52 
56  geom::LinearTransform const& getCdMatrix() const { return _cdMatrix; }
57 
61  PolynomialTransform const& getPoly() const { return _poly; }
62 
63 protected:
76  SipTransformBase(geom::Point2D const& pixelOrigin, geom::LinearTransform const& cdMatrix,
78  : _pixelOrigin(pixelOrigin), _cdMatrix(cdMatrix), _poly(poly) {}
79 
84 
86  std::swap(_pixelOrigin, other._pixelOrigin);
87  std::swap(_cdMatrix, other._cdMatrix);
88  _poly.swap(other._poly);
89  }
90 
92 
96 };
97 
137 public:
145  static SipForwardTransform convert(PolynomialTransform const& poly, geom::Point2D const& pixelOrigin,
146  geom::LinearTransform const& cdMatrix);
147 
156  geom::Point2D const& pixelOrigin,
157  geom::LinearTransform const& cdMatrix);
158 
167 
175  SipForwardTransform(geom::Point2D const& pixelOrigin, geom::LinearTransform const& cdMatrix,
176  PolynomialTransform const& forwardSipPoly)
177  : SipTransformBase(pixelOrigin, cdMatrix, forwardSipPoly) {}
178 
180 
182 
184 
186 
188 
193 
197  geom::Point2D operator()(geom::Point2D const& uv) const;
198 
204 };
205 
247 public:
255  static SipReverseTransform convert(PolynomialTransform const& poly, geom::Point2D const& pixelOrigin,
256  geom::LinearTransform const& cdMatrix);
257 
266  geom::Point2D const& pixelOrigin,
267  geom::LinearTransform const& cdMatrix);
268 
277 
285  SipReverseTransform(geom::Point2D const& pixelOrigin, geom::LinearTransform const& cdMatrix,
286  PolynomialTransform const& reverseSipPoly)
287  : SipTransformBase(pixelOrigin, cdMatrix, reverseSipPoly), _cdInverse(cdMatrix.inverted()) {}
288 
290 
292 
294 
296 
299  std::swap(_cdInverse, other._cdInverse);
300  }
301 
306 
310  geom::Point2D operator()(geom::Point2D const& xy) const;
311 
317 
318 private:
319  friend class PolynomialTransform;
321  geom::LinearTransform _cdInverse;
322 };
323 
339  SipReverseTransform const& sipReverse,
340  geom::SpherePoint const& skyOrigin);
341 
359  geom::AffineTransform const& s);
360 
370  geom::Extent2I const& dimensions);
371 
372 } // namespace astrom
373 } // namespace meas
374 } // namespace lsst
375 
376 #endif // !LSST_MEAS_ASTROM_SipTransform_INCLUDED
lsst::meas::astrom::SipReverseTransform::operator=
SipReverseTransform & operator=(SipReverseTransform &&other)=default
std::shared_ptr
STL class.
wcs
table::Key< table::Array< std::uint8_t > > wcs
Definition: SkyWcs.cc:71
lsst::meas::astrom::SipForwardTransform::operator=
SipForwardTransform & operator=(SipForwardTransform &&other)=default
lsst::geom::LinearTransform
A 2D linear coordinate transformation.
Definition: LinearTransform.h:69
PolynomialTransform.h
AffineTransform.h
lsst::meas::astrom::SipForwardTransform::SipForwardTransform
SipForwardTransform(SipForwardTransform &&other)=default
lsst::meas::astrom::transformWcsPixels
std::shared_ptr< afw::geom::SkyWcs > transformWcsPixels(afw::geom::SkyWcs const &wcs, geom::AffineTransform const &s)
Create a new SkyWcs whose pixel coordinate system has been transformed via an affine transform.
Definition: SipTransform.cc:173
lsst::meas::astrom::SipForwardTransform::operator()
geom::Point2D operator()(geom::Point2D const &uv) const
Apply the transform to a point.
Definition: SipTransform.cc:90
lsst::meas::astrom::SipReverseTransform::transformPixels
SipReverseTransform transformPixels(geom::AffineTransform const &s) const
Return a new reverse SIP transform that includes a transformation of the pixel coordinate system by t...
Definition: SipTransform.cc:131
SkyWcs.h
lsst::meas::astrom::SipTransformBase::SipTransformBase
SipTransformBase(SipTransformBase &&other)=default
lsst::meas::astrom::SipTransformBase::getPoly
PolynomialTransform const & getPoly() const
Return the polynomial component of the transform (A,B) or (AP,BP).
Definition: SipTransform.h:61
lsst::afw::geom::SkyWcs
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition: SkyWcs.h:117
lsst::meas::astrom::SipForwardTransform::operator=
SipForwardTransform & operator=(SipForwardTransform const &other)=default
lsst::meas::astrom::SipTransformBase
Base class for SIP transform objects.
Definition: SipTransform.h:46
lsst::meas::astrom::SipReverseTransform::SipReverseTransform
SipReverseTransform(SipReverseTransform const &other)=default
lsst::meas::astrom::ScaledPolynomialTransform
A 2-d coordinate transform represented by a lazy composition of an AffineTransform,...
Definition: PolynomialTransform.h:157
lsst::meas::astrom::SipForwardTransform::SipForwardTransform
SipForwardTransform(geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix, PolynomialTransform const &forwardSipPoly)
Construct a SipForwardTransform from its components.
Definition: SipTransform.h:175
lsst::meas::astrom::SipReverseTransform::convert
static SipReverseTransform convert(PolynomialTransform const &poly, geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix)
Convert a PolynomialTransform to an equivalent SipReverseTransform.
Definition: SipTransform.cc:101
lsst::meas::astrom::SipForwardTransform
A transform that maps pixel coordinates to intermediate world coordinates according to the SIP conven...
Definition: SipTransform.h:136
lsst::geom::AffineTransform
An affine coordinate transformation consisting of a linear transformation and an offset.
Definition: AffineTransform.h:75
Extent.h
lsst::meas::astrom::SipTransformBase::_pixelOrigin
geom::Point2D _pixelOrigin
Definition: SipTransform.h:93
lsst::meas::astrom::SipTransformBase::_poly
PolynomialTransform _poly
Definition: SipTransform.h:95
other
ItemVariant const * other
Definition: Schema.cc:56
lsst::meas::astrom::SipReverseTransform::operator()
geom::Point2D operator()(geom::Point2D const &xy) const
Apply the transform to a point.
Definition: SipTransform.cc:143
LinearTransform.h
lsst::meas::astrom::SipForwardTransform::swap
void swap(SipForwardTransform &other)
Definition: SipTransform.h:187
lsst::meas::astrom::SipReverseTransform::SipReverseTransform
SipReverseTransform(geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix, PolynomialTransform const &reverseSipPoly)
Construct a SipReverseTransform from its components.
Definition: SipTransform.h:285
dimensions
afw::table::PointKey< int > dimensions
Definition: GaussianPsf.cc:49
lsst::meas::astrom::SipTransformBase::transformPixelsInPlace
void transformPixelsInPlace(geom::AffineTransform const &s)
Definition: SipTransform.cc:40
lsst::meas::astrom::PolynomialTransform
A 2-d coordinate transform represented by a pair of standard polynomials (one for each coordinate).
Definition: PolynomialTransform.h:45
lsst::meas::astrom::SipForwardTransform::linearize
geom::AffineTransform linearize(geom::Point2D const &in) const
Return an approximate affine transform at the given point.
Definition: SipTransform.cc:85
lsst::meas::astrom::SipTransformBase::getPixelOrigin
geom::Point2D const & getPixelOrigin() const
Return the pixel origin (CRPIX, but zero-indexed) of the transform.
Definition: SipTransform.h:51
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
std::swap
T swap(T... args)
lsst::meas::astrom::SipReverseTransform::swap
void swap(SipReverseTransform &other)
Definition: SipTransform.h:297
lsst::meas::astrom::makeWcs
std::shared_ptr< afw::geom::SkyWcs > makeWcs(SipForwardTransform const &sipForward, SipReverseTransform const &sipReverse, geom::SpherePoint const &skyOrigin)
Create a new TAN SIP Wcs from a pair of SIP transforms and the sky origin.
Definition: SipTransform.cc:148
lsst::meas::astrom::SipTransformBase::swap
void swap(SipTransformBase &other)
Definition: SipTransform.h:85
lsst::meas::astrom::SipTransformBase::getCdMatrix
geom::LinearTransform const & getCdMatrix() const
Return the CD matrix of the transform.
Definition: SipTransform.h:56
lsst::geom::polynomials
Definition: Basis1d.h:26
lsst::meas::astrom::SipTransformBase::operator=
SipTransformBase & operator=(SipTransformBase &&other)=default
lsst::meas::astrom::SipTransformBase::operator=
SipTransformBase & operator=(SipTransformBase const &other)=default
lsst::meas::astrom::SipForwardTransform::SipForwardTransform
SipForwardTransform(SipForwardTransform const &other)=default
lsst::geom::Point< double, 2 >
lsst::meas::astrom::SipForwardTransform::convert
static SipForwardTransform convert(PolynomialTransform const &poly, geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix)
Convert a PolynomialTransform to an equivalent SipForwardTransform.
Definition: SipTransform.cc:52
lsst::meas::astrom::SipTransformBase::SipTransformBase
SipTransformBase(geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix, PolynomialTransform const &poly)
Construct a SipTransformBase from its components.
Definition: SipTransform.h:76
SpherePoint.h
Point.h
lsst::geom::SpherePoint
Point in an unspecified spherical coordinate system.
Definition: SpherePoint.h:57
lsst::meas::astrom::rotateWcsPixelsBy90
std::shared_ptr< afw::geom::SkyWcs > rotateWcsPixelsBy90(afw::geom::SkyWcs const &wcs, int nQuarter, geom::Extent2I const &dimensions)
Return a new SkyWcs that represents a rotation of the image it corresponds to about the image's cente...
Definition: SipTransform.cc:179
lsst::meas::astrom::SipReverseTransform
A transform that maps intermediate world coordinates to pixel coordinates according to the SIP conven...
Definition: SipTransform.h:246
lsst::meas::astrom::SipReverseTransform::linearize
geom::AffineTransform linearize(geom::Point2D const &in) const
Return an approximate affine transform at the given point.
Definition: SipTransform.cc:138
lsst::meas::astrom::SipTransformBase::_cdMatrix
geom::LinearTransform _cdMatrix
Definition: SipTransform.h:94
lsst::geom::Extent
A coordinate class intended to represent offsets and dimensions.
Definition: CoordinateBase.h:41
lsst::meas::astrom::SipForwardTransform::transformPixels
SipForwardTransform transformPixels(geom::AffineTransform const &s) const
Return a new forward SIP transform that includes a transformation of the pixel coordinate system by t...
Definition: SipTransform.cc:95
lsst::meas::astrom::SipReverseTransform::SipReverseTransform
SipReverseTransform(SipReverseTransform &&other)=default
lsst::meas::astrom::SipReverseTransform::operator=
SipReverseTransform & operator=(SipReverseTransform const &other)=default
lsst::meas::astrom::PolynomialTransform::swap
void swap(PolynomialTransform &other)
Lightweight swap.
Definition: PolynomialTransform.cc:122
lsst::meas::astrom::SipTransformBase::SipTransformBase
SipTransformBase(SipTransformBase const &other)=default