LSSTApplications  16.0-10-g0ee56ad+5,16.0-11-ga33d1f2+5,16.0-12-g3ef5c14+3,16.0-12-g71e5ef5+18,16.0-12-gbdf3636+3,16.0-13-g118c103+3,16.0-13-g8f68b0a+3,16.0-15-gbf5c1cb+4,16.0-16-gfd17674+3,16.0-17-g7c01f5c+3,16.0-18-g0a50484+1,16.0-20-ga20f992+8,16.0-21-g0e05fd4+6,16.0-21-g15e2d33+4,16.0-22-g62d8060+4,16.0-22-g847a80f+4,16.0-25-gf00d9b8+1,16.0-28-g3990c221+4,16.0-3-gf928089+3,16.0-32-g88a4f23+5,16.0-34-gd7987ad+3,16.0-37-gc7333cb+2,16.0-4-g10fc685+2,16.0-4-g18f3627+26,16.0-4-g5f3a788+26,16.0-5-gaf5c3d7+4,16.0-5-gcc1f4bb+1,16.0-6-g3b92700+4,16.0-6-g4412fcd+3,16.0-6-g7235603+4,16.0-69-g2562ce1b+2,16.0-8-g14ebd58+4,16.0-8-g2df868b+1,16.0-8-g4cec79c+6,16.0-8-gadf6c7a+1,16.0-8-gfc7ad86,16.0-82-g59ec2a54a+1,16.0-9-g5400cdc+2,16.0-9-ge6233d7+5,master-g2880f2d8cf+3,v17.0.rc1
LSSTDataManagementBasePackage
ShapeletFunction.h
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 
3 /*
4  * LSST Data Management System
5  * Copyright 2008, 2009, 2010, 2011 LSST Corporation.
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 
25 #ifndef LSST_AFW_MATH_SHAPELETS_SHAPELETFUNCTION_H
26 #define LSST_AFW_MATH_SHAPELETS_SHAPELETFUNCTION_H
27 
28 #include "ndarray.h"
32 #include "lsst/afw/geom.h"
33 #include "lsst/afw/geom/ellipses.h"
34 #include "lsst/afw/image/Image.h"
35 
36 #include <list>
37 
38 namespace lsst { namespace shapelet {
39 
40 class ShapeletFunctionEvaluator;
41 
66 public:
67 
70 
72 
73  static double const FLUX_FACTOR;
74 
76  int getOrder() const { return _order; }
77 
79  afw::geom::ellipses::Ellipse const & getEllipse() const { return _ellipse; }
80 
82  afw::geom::ellipses::Ellipse & getEllipse() { return _ellipse; }
83 
85  void setEllipse(afw::geom::ellipses::Ellipse const & ellipse) { _ellipse = ellipse; }
86 
88  BasisTypeEnum getBasisType() const { return _basisType; }
89 
91  void changeBasisType(BasisTypeEnum basisType) {
92  ConversionMatrix::convertCoefficientVector(_coefficients, _basisType, basisType, _order);
93  _basisType = basisType;
94  }
95 
97  void normalize(double value=1.0);
98 
100  ndarray::Array<double,1,1> const getCoefficients() { return _coefficients; }
101 
103  ndarray::Array<double const,1,1> const getCoefficients() const { return _coefficients; }
104 
107 
109  Evaluator evaluate() const;
110 
112  void shiftInPlace(afw::geom::Extent2D const & offset) {
113  _ellipse.getCenter() += offset;
114  }
115 
118  _ellipse.transform(transform).inPlace();
119  }
120 
122  ShapeletFunction(int order, BasisTypeEnum basisType);
123 
126  int order, BasisTypeEnum basisType,
127  ndarray::Array<double,1,1> const & coefficients
128  );
129 
131  ShapeletFunction(int order, BasisTypeEnum basisType, double radius,
132  afw::geom::Point2D const & center=afw::geom::Point2D());
133 
136  int order, BasisTypeEnum basisType, double radius, afw::geom::Point2D const & center,
137  ndarray::Array<double,1,1> const & coefficients
138  );
139 
141  ShapeletFunction(int order, BasisTypeEnum basisType,
143 
146  int order, BasisTypeEnum basisType,
147  afw::geom::ellipses::Ellipse const & ellipse,
148  ndarray::Array<double const,1,1> const & coefficients
149  );
150 
152  ShapeletFunction(ShapeletFunction const & other);
153 
156 
159 
160 private:
161 
162  int _order;
163  BasisTypeEnum _basisType;
165  ndarray::Array<double,1,1> _coefficients;
166 };
167 
178 public:
179 
182 
184  double operator()(double x, double y) const {
185  return this->operator()(afw::geom::Point2D(x, y));
186  }
187 
189  double operator()(afw::geom::Point2D const & point) const {
190  return _normalization * _h.sumEvaluation(_coefficients, _transform(point));
191  }
192 
194  double operator()(afw::geom::Extent2D const & point) const {
195  return _normalization * _h.sumEvaluation(_coefficients, _transform(point));
196  }
197 
199  ndarray::Array<double,1,1> operator()(
200  ndarray::Array<double const,1> const & x,
201  ndarray::Array<double const,1> const & y
202  ) const;
203 
205  void addToImage(
206  ndarray::Array<double,2,1> const & array,
207  afw::geom::Point2I const & xy0 = afw::geom::Point2I()
208  ) const;
209 
212  addToImage(image.getArray(), image.getXY0());
213  }
214 
216  double integrate() const {
217  return _h.sumIntegration(_coefficients);
218  }
219 
221  afw::geom::ellipses::Ellipse computeMoments() const;
222 
224  void update(ShapeletFunction const & function);
225 
227  explicit ShapeletFunctionEvaluator(ShapeletFunction const & function);
228 
229 private:
230 
232 
233  void _computeRawMoments(double & q0, Eigen::Vector2d & q1, Eigen::Matrix2d & q2) const;
234 
235  double _normalization;
236  ndarray::Array<double const,1,1> _coefficients;
237  afw::geom::AffineTransform _transform;
239 };
240 
242  return ShapeletFunctionEvaluator(*this);
243 }
244 
245 }} // namespace lsst::shapelet
246 
247 #endif // !defined(LSST_AFW_MATH_SHAPELETS_SHAPELETFUNCTION_H)
void setEllipse(afw::geom::ellipses::Ellipse const &ellipse)
Set the ellipse.
lsst::geom::Point2D const & getCenter() const
Return the center point.
Definition: Ellipse.h:62
An affine coordinate transformation consisting of a linear transformation and an offset.
std::shared_ptr< ShapeletFunctionEvaluator > Ptr
double operator()(afw::geom::Point2D const &point) const
Evaluate at the given point.
void changeBasisType(BasisTypeEnum basisType)
Change the basis type and convert coefficients in-place correspondingly.
A class to evaluate HERMITE shapelet-related quantities.
int y
Definition: SpanSet.cc:49
ndarray::Array< double, 1, 1 > const getCoefficients()
Return the coefficient vector.
int getOrder() const
Return the maximum order (inclusive), either or .
afw::geom::ellipses::Ellipse const & getEllipse() const
Get the ellipse (const).
double integrate() const
Compute the definite integral or integral moments.
void transformInPlace(afw::geom::AffineTransform const &transform)
Transform the shapelet function by transforming the basis ellipse.
A base class for image defects.
std::shared_ptr< ShapeletFunctionEvaluator const > ConstPtr
Evaluates a ShapeletFunction.
BasisTypeEnum getBasisType() const
Return the basis type (HERMITE or LAGUERRE).
afw::geom::ellipses::Ellipse & getEllipse()
Get the ellipse (non-const).
ndarray::Array< double const, 1, 1 > const getCoefficients() const
Return the coefficient vector (const).
An ellipse defined by an arbitrary BaseCore and a center point.
Definition: Ellipse.h:51
void inPlace()
Transform the ellipse in-place.
Definition: Transformer.cc:103
void normalize(double value=1.0)
Normalize the integral of the shapelet function to the given value.
double operator()(afw::geom::Extent2D const &point) const
Evaluate at the given point.
Constants, typedefs, and general-purpose functions for shapelets library.
std::shared_ptr< ShapeletFunction const > ConstPtr
void shiftInPlace(afw::geom::Extent2D const &offset)
Shift the shapelet function by shifting the basis ellipse.
double x
Evaluator evaluate() const
Construct a helper object that can efficiently evaluate the function.
std::shared_ptr< ShapeletFunction > Ptr
lsst::geom::Point2I getXY0() const
Return the image&#39;s origin.
Definition: ImageBase.h:341
static void convertCoefficientVector(ndarray::Array< double, 1 > const &array, BasisTypeEnum input, BasisTypeEnum output, int order)
Convert a coefficient vector between basis types in-place.
ShapeletFunctionEvaluator Evaluator
void addToImage(boost::shared_ptr< afw::image::Image< double > > image, std::vector< boost::shared_ptr< afw::image::Image< double > >> const &imgVector, std::vector< double > const &weightVector)
Definition: CoaddPsf.cc:192
ItemVariant const * other
Definition: Schema.cc:56
void addToImage(afw::image::Image< double > &image) const
Evaluate the function on the given image.
ShapeletFunction()
Default constructor to appease SWIG (used by std::list). Not for use by users.
ShapeletFunction convolve(ShapeletFunction const &other) const
Convolve the shapelet function.
double operator()(double x, double y) const
Evaluate at the given point.
A 2-d function defined by an expansion onto a Gauss-Laguerre or Gauss-Hermite basis.
Transformer transform(lsst::geom::AffineTransform const &transform)
Definition: Transformer.h:124
A class to represent a 2-dimensional array of pixels.
Definition: Image.h:59
ndarray::Array< double const, 2, 2 > coefficients
ShapeletFunction & operator=(ShapeletFunction const &other)
Assignment (deep).