LSSTApplications  17.0+11,17.0+34,17.0+56,17.0+57,17.0+59,17.0+7,17.0-1-g377950a+33,17.0.1-1-g114240f+2,17.0.1-1-g4d4fbc4+28,17.0.1-1-g55520dc+49,17.0.1-1-g5f4ed7e+52,17.0.1-1-g6dd7d69+17,17.0.1-1-g8de6c91+11,17.0.1-1-gb9095d2+7,17.0.1-1-ge9fec5e+5,17.0.1-1-gf4e0155+55,17.0.1-1-gfc65f5f+50,17.0.1-1-gfc6fb1f+20,17.0.1-10-g87f9f3f+1,17.0.1-11-ge9de802+16,17.0.1-16-ga14f7d5c+4,17.0.1-17-gc79d625+1,17.0.1-17-gdae4c4a+8,17.0.1-2-g26618f5+29,17.0.1-2-g54f2ebc+9,17.0.1-2-gf403422+1,17.0.1-20-g2ca2f74+6,17.0.1-23-gf3eadeb7+1,17.0.1-3-g7e86b59+39,17.0.1-3-gb5ca14a,17.0.1-3-gd08d533+40,17.0.1-30-g596af8797,17.0.1-4-g59d126d+4,17.0.1-4-gc69c472+5,17.0.1-6-g5afd9b9+4,17.0.1-7-g35889ee+1,17.0.1-7-gc7c8782+18,17.0.1-9-gc4bbfb2+3,w.2019.22
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 
80  SipTransformBase(SipTransformBase const& other) = default;
81  SipTransformBase(SipTransformBase&& other) = default;
82  SipTransformBase& operator=(SipTransformBase const& other) = default;
83  SipTransformBase& operator=(SipTransformBase&& other) = default;
84 
85  void swap(SipTransformBase& other) {
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 
155  static SipForwardTransform convert(ScaledPolynomialTransform const& scaled,
156  geom::Point2D const& pixelOrigin,
157  geom::LinearTransform const& cdMatrix);
158 
166  static SipForwardTransform convert(ScaledPolynomialTransform const& scaled);
167 
175  SipForwardTransform(geom::Point2D const& pixelOrigin, geom::LinearTransform const& cdMatrix,
176  PolynomialTransform const& forwardSipPoly)
177  : SipTransformBase(pixelOrigin, cdMatrix, forwardSipPoly) {}
178 
180 
181  SipForwardTransform(SipForwardTransform&& other) = default;
182 
183  SipForwardTransform& operator=(SipForwardTransform const& other) = default;
184 
186 
188 
192  geom::AffineTransform linearize(geom::Point2D const& in) const;
193 
197  geom::Point2D operator()(geom::Point2D const& uv) const;
198 
203  SipForwardTransform transformPixels(geom::AffineTransform const& s) const;
204 };
205 
247 public:
255  static SipReverseTransform convert(PolynomialTransform const& poly, geom::Point2D const& pixelOrigin,
256  geom::LinearTransform const& cdMatrix);
257 
265  static SipReverseTransform convert(ScaledPolynomialTransform const& scaled,
266  geom::Point2D const& pixelOrigin,
267  geom::LinearTransform const& cdMatrix);
268 
276  static SipReverseTransform convert(ScaledPolynomialTransform const& scaled);
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 
291  SipReverseTransform(SipReverseTransform&& other) = default;
292 
293  SipReverseTransform& operator=(SipReverseTransform const& other) = default;
294 
296 
297  void swap(SipReverseTransform& other) {
298  SipTransformBase::swap(other);
299  std::swap(_cdInverse, other._cdInverse);
300  }
301 
305  geom::AffineTransform linearize(geom::Point2D const& in) const;
306 
310  geom::Point2D operator()(geom::Point2D const& xy) const;
311 
316  SipReverseTransform transformPixels(geom::AffineTransform const& s) const;
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
afw::table::PointKey< int > dimensions
Definition: GaussianPsf.cc:49
PolynomialTransform const & getPoly() const
Return the polynomial component of the transform (A,B) or (AP,BP).
Definition: SipTransform.h:61
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition: SkyWcs.h:117
SipForwardTransform(geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix, PolynomialTransform const &forwardSipPoly)
Construct a SipForwardTransform from its components.
Definition: SipTransform.h:175
SipReverseTransform(geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix, PolynomialTransform const &reverseSipPoly)
Construct a SipReverseTransform from its components.
Definition: SipTransform.h:285
Low-level polynomials (including special polynomials) in C++.
Definition: Basis1d.h:26
An affine coordinate transformation consisting of a linear transformation and an offset.
T swap(T... args)
void swap(SipReverseTransform &other)
Definition: SipTransform.h:297
table::Key< table::Array< std::uint8_t > > wcs
Definition: SkyWcs.cc:71
geom::Point2D const & getPixelOrigin() const
Return the pixel origin (CRPIX, but zero-indexed) of the transform.
Definition: SipTransform.h:51
A transform that maps pixel coordinates to intermediate world coordinates according to the SIP conven...
Definition: SipTransform.h:136
A base class for image defects.
geom::LinearTransform const & getCdMatrix() const
Return the CD matrix of the transform.
Definition: SipTransform.h:56
void swap(PolynomialTransform &other)
Lightweight swap.
Base class for SIP transform objects.
Definition: SipTransform.h:46
SipTransformBase(geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix, PolynomialTransform const &poly)
Construct a SipTransformBase from its components.
Definition: SipTransform.h:76
solver_t * s
A 2-d coordinate transform represented by a lazy composition of an AffineTransform, a PolynomialTransform, and another AffineTransform.
A transform that maps intermediate world coordinates to pixel coordinates according to the SIP conven...
Definition: SipTransform.h:246
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.
Point in an unspecified spherical coordinate system.
Definition: SpherePoint.h:57
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...
geom::LinearTransform _cdMatrix
Definition: SipTransform.h:94
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&#39;s cente...
void swap(SipForwardTransform &other)
Definition: SipTransform.h:187
ItemVariant const * other
Definition: Schema.cc:56
void transformPixelsInPlace(geom::AffineTransform const &s)
Definition: SipTransform.cc:40
void swap(SipTransformBase &other)
Definition: SipTransform.h:85
SipTransformBase & operator=(SipTransformBase const &other)=default
A 2D linear coordinate transformation.
A 2-d coordinate transform represented by a pair of standard polynomials (one for each coordinate)...