LSST Applications g063fba187b+cac8b7c890,g0f08755f38+6aee506743,g1653933729+a8ce1bb630,g168dd56ebc+a8ce1bb630,g1a2382251a+b4475c5878,g1dcb35cd9c+8f9bc1652e,g20f6ffc8e0+6aee506743,g217e2c1bcf+73dee94bd0,g28da252d5a+1f19c529b9,g2bbee38e9b+3f2625acfc,g2bc492864f+3f2625acfc,g3156d2b45e+6e55a43351,g32e5bea42b+1bb94961c2,g347aa1857d+3f2625acfc,g35bb328faa+a8ce1bb630,g3a166c0a6a+3f2625acfc,g3e281a1b8c+c5dd892a6c,g3e8969e208+a8ce1bb630,g414038480c+5927e1bc1e,g41af890bb2+8a9e676b2a,g7af13505b9+809c143d88,g80478fca09+6ef8b1810f,g82479be7b0+f568feb641,g858d7b2824+6aee506743,g89c8672015+f4add4ffd5,g9125e01d80+a8ce1bb630,ga5288a1d22+2903d499ea,gb58c049af0+d64f4d3760,gc28159a63d+3f2625acfc,gcab2d0539d+b12535109e,gcf0d15dbbd+46a3f46ba9,gda6a2b7d83+46a3f46ba9,gdaeeff99f8+1711a396fd,ge79ae78c31+3f2625acfc,gef2f8181fd+0a71e47438,gf0baf85859+c1f95f4921,gfa517265be+6aee506743,gfa999e8aa5+17cd334064,w.2024.51
LSST Data Management Base Package
Loading...
Searching...
No Matches
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"
34
35namespace lsst {
36namespace meas {
37namespace astrom {
38
47public:
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
63protected:
76 SipTransformBase(geom::Point2D const& pixelOrigin, geom::LinearTransform const& cdMatrix,
78 : _pixelOrigin(pixelOrigin), _cdMatrix(cdMatrix), _poly(poly) {}
79
80 SipTransformBase(SipTransformBase const& other) = default;
84
85 void swap(SipTransformBase& other) {
88 _poly.swap(other._poly);
89 }
90
92
96};
97
137public:
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
247public:
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
318private:
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
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition SkyWcs.h:117
An affine coordinate transformation consisting of a linear transformation and an offset.
A 2D linear coordinate transformation.
Point in an unspecified spherical coordinate system.
Definition SpherePoint.h:57
A 2-d coordinate transform represented by a pair of standard polynomials (one for each coordinate).
void swap(PolynomialTransform &other)
Lightweight swap.
A 2-d coordinate transform represented by a lazy composition of an AffineTransform,...
A transform that maps pixel coordinates to intermediate world coordinates according to the SIP conven...
SipForwardTransform(SipForwardTransform &&other)=default
SipForwardTransform & operator=(SipForwardTransform &&other)=default
SipForwardTransform(SipForwardTransform const &other)=default
SipForwardTransform transformPixels(geom::AffineTransform const &s) const
Return a new forward SIP transform that includes a transformation of the pixel coordinate system by t...
geom::AffineTransform linearize(geom::Point2D const &in) const
Return an approximate affine transform at the given point.
void swap(SipForwardTransform &other)
SipForwardTransform & operator=(SipForwardTransform const &other)=default
geom::Point2D operator()(geom::Point2D const &uv) const
Apply the transform to a point.
static SipForwardTransform convert(PolynomialTransform const &poly, geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix)
Convert a PolynomialTransform to an equivalent SipForwardTransform.
SipForwardTransform(geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix, PolynomialTransform const &forwardSipPoly)
Construct a SipForwardTransform from its components.
A transform that maps intermediate world coordinates to pixel coordinates according to the SIP conven...
SipReverseTransform & operator=(SipReverseTransform const &other)=default
SipReverseTransform(geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix, PolynomialTransform const &reverseSipPoly)
Construct a SipReverseTransform from its components.
SipReverseTransform transformPixels(geom::AffineTransform const &s) const
Return a new reverse SIP transform that includes a transformation of the pixel coordinate system by t...
geom::AffineTransform linearize(geom::Point2D const &in) const
Return an approximate affine transform at the given point.
SipReverseTransform(SipReverseTransform const &other)=default
void swap(SipReverseTransform &other)
SipReverseTransform(SipReverseTransform &&other)=default
static SipReverseTransform convert(PolynomialTransform const &poly, geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix)
Convert a PolynomialTransform to an equivalent SipReverseTransform.
geom::Point2D operator()(geom::Point2D const &xy) const
Apply the transform to a point.
SipReverseTransform & operator=(SipReverseTransform &&other)=default
Base class for SIP transform objects.
geom::Point2D const & getPixelOrigin() const
Return the pixel origin (CRPIX, but zero-indexed) of the transform.
PolynomialTransform const & getPoly() const
Return the polynomial component of the transform (A,B) or (AP,BP).
SipTransformBase(SipTransformBase &&other)=default
SipTransformBase & operator=(SipTransformBase const &other)=default
void transformPixelsInPlace(geom::AffineTransform const &s)
geom::LinearTransform const & getCdMatrix() const
Return the CD matrix of the transform.
void swap(SipTransformBase &other)
SipTransformBase(SipTransformBase const &other)=default
SipTransformBase & operator=(SipTransformBase &&other)=default
SipTransformBase(geom::Point2D const &pixelOrigin, geom::LinearTransform const &cdMatrix, PolynomialTransform const &poly)
Construct a SipTransformBase from its components.
Low-level polynomials (including special polynomials) in C++.
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.
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...
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.
T swap(T... args)