LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
transformFactory.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 
3 #ifndef LSST_AFW_GEOM_TRANSFORMFACTORY_H
4 #define LSST_AFW_GEOM_TRANSFORMFACTORY_H
5 
6 /*
7  * LSST Data Management System
8  * Copyright 2008-2017 LSST Corporation.
9  *
10  * This product includes software developed by the
11  * LSST Project (http://www.lsst.org/).
12  *
13  * This program is free software: you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation, either version 3 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the LSST License Statement and
24  * the GNU General Public License along with this program. If not,
25  * see <http://www.lsstcorp.org/LegalNotices/>.
26  */
27 
28 /*
29  * Functions for producing Transforms with commonly desired properties.
30  */
31 
34 
35 namespace lsst {
36 namespace afw {
37 namespace geom {
38 
55  lsst::geom::Point2D const &inPoint);
56 
67 
86 
109  std::vector<double> const &inverseCoeffs);
110 
120 
121 } // namespace geom
122 } // namespace afw
123 } // namespace lsst
124 
125 #endif // LSST_AFW_GEOM_TRANSFORMFACTORY_H
std::shared_ptr< TransformPoint2ToPoint2 > makeIdentityTransform()
Trivial Transform x → x.
std::shared_ptr< TransformPoint2ToPoint2 > makeRadialTransform(std::vector< double > const &coeffs)
A purely radial polynomial distortion.
lsst::geom::AffineTransform linearizeTransform(TransformPoint2ToPoint2 const &original, lsst::geom::Point2D const &inPoint)
Approximate a Transform by its local linearization.
An affine coordinate transformation consisting of a linear transformation and an offset.
Transform< Point2Endpoint, Point2Endpoint > TransformPoint2ToPoint2
Definition: Transform.h:300
A base class for image defects.
std::shared_ptr< TransformPoint2ToPoint2 > makeTransform(lsst::geom::AffineTransform const &affine)
Wrap an lsst::geom::AffineTransform as a Transform.