LSST Applications g0b6bd0c080+a72a5dd7e6,g1182afd7b4+2a019aa3bb,g17e5ecfddb+2b8207f7de,g1d67935e3f+06cf436103,g38293774b4+ac198e9f13,g396055baef+6a2097e274,g3b44f30a73+6611e0205b,g480783c3b1+98f8679e14,g48ccf36440+89c08d0516,g4b93dc025c+98f8679e14,g5c4744a4d9+a302e8c7f0,g613e996a0d+e1c447f2e0,g6c8d09e9e7+25247a063c,g7271f0639c+98f8679e14,g7a9cd813b8+124095ede6,g9d27549199+a302e8c7f0,ga1cf026fa3+ac198e9f13,ga32aa97882+7403ac30ac,ga786bb30fb+7a139211af,gaa63f70f4e+9994eb9896,gabf319e997+ade567573c,gba47b54d5d+94dc90c3ea,gbec6a3398f+06cf436103,gc6308e37c7+07dd123edb,gc655b1545f+ade567573c,gcc9029db3c+ab229f5caf,gd01420fc67+06cf436103,gd877ba84e5+06cf436103,gdb4cecd868+6f279b5b48,ge2d134c3d5+cc4dbb2e3f,ge448b5faa6+86d1ceac1d,gecc7e12556+98f8679e14,gf3ee170dca+25247a063c,gf4ac96e456+ade567573c,gf9f5ea5b4d+ac198e9f13,gff490e6085+8c2580be5c,w.2022.27
LSST Data Management Base Package
Kernel.cc
Go to the documentation of this file.
1// -*- LSST-C++ -*-
2
3/*
4 * LSST Data Management System
5 * Copyright 2008, 2009, 2010 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#include <sstream>
25
26#include "boost/format.hpp"
27
28#include "lsst/pex/exceptions.h"
31
33
34namespace lsst {
35namespace afw {
36
39
40namespace math {
41
45
46//
47// Constructors
48//
49Kernel::Kernel() : _spatialFunctionList(), _width(0), _height(0), _ctrX(0), _ctrY(0), _nKernelParams(0) {}
50
51Kernel::Kernel(int width, int height, unsigned int nKernelParams, SpatialFunction const &spatialFunction)
52 : _spatialFunctionList(),
53 _width(width),
54 _height(height),
55 _ctrX((width - 1) / 2),
56 _ctrY((height - 1) / 2),
57 _nKernelParams(nKernelParams) {
58 if ((width < 1) || (height < 1)) {
60 os << "kernel height = " << height << " and/or width = " << width << " < 1";
62 }
63 if (dynamic_cast<const NullSpatialFunction *>(&spatialFunction)) {
64 // spatialFunction is not really present
65 } else {
66 if (nKernelParams == 0) {
67 throw LSST_EXCEPT(pexExcept::InvalidParameterError, "Kernel function has no parameters");
68 }
69 for (unsigned int ii = 0; ii < nKernelParams; ++ii) {
70 SpatialFunctionPtr spatialFunctionCopy = spatialFunction.clone();
71 this->_spatialFunctionList.push_back(spatialFunctionCopy);
72 }
73 }
74}
75
76double Kernel::computeImage(image::Image<Pixel> &image, bool doNormalize, double x, double y) const {
77 if (image.getDimensions() != this->getDimensions()) {
79 os << "image dimensions = ( " << image.getWidth() << ", " << image.getHeight() << ") != ("
80 << this->getWidth() << ", " << this->getHeight() << ") = kernel dimensions";
82 }
83 image.setXY0(-_ctrX, -_ctrY);
84 if (this->isSpatiallyVarying()) {
86 }
87 return doComputeImage(image, doNormalize);
88}
89
90Kernel::Kernel(int width, int height, std::vector<SpatialFunctionPtr> spatialFunctionList)
91 : _width(width),
92 _height(height),
93 _ctrX(width / 2),
94 _ctrY(height / 2),
95 _nKernelParams(spatialFunctionList.size()) {
96 if ((width < 1) || (height < 1)) {
98 os << "kernel height = " << height << " and/or width = " << width << " < 1";
100 }
101 for (auto const &ii : spatialFunctionList) {
102 SpatialFunctionPtr spatialFunctionCopy = ii->clone();
103 this->_spatialFunctionList.push_back(spatialFunctionCopy);
104 }
105}
106
107//
108// Public Member Functions
109//
111 // Check params size before changing anything
112 unsigned int nKernelParams = this->getNKernelParameters();
113 if (params.size() != nKernelParams) {
114 throw LSST_EXCEPT(
116 (boost::format("params has %d entries instead of %d") % params.size() % nKernelParams).str());
117 }
118 unsigned int nSpatialParams = this->getNSpatialParameters();
119 for (unsigned int ii = 0; ii < nKernelParams; ++ii) {
120 if (params[ii].size() != nSpatialParams) {
122 (boost::format("params[%d] has %d entries instead of %d") % ii %
123 params[ii].size() % nSpatialParams)
124 .str());
125 }
126 }
127 // Set parameters
128 if (nSpatialParams > 0) {
129 for (unsigned int ii = 0; ii < nKernelParams; ++ii) {
130 this->_spatialFunctionList[ii]->setParameters(params[ii]);
131 }
132 }
133}
134
136 double y) const {
137 std::vector<double>::iterator paramIter = kernelParams.begin();
139 for (; funcIter != _spatialFunctionList.end(); ++funcIter, ++paramIter) {
140 *paramIter = (*(*funcIter))(x, y);
141 }
142}
143
145 if (index >= _spatialFunctionList.size()) {
146 if (!this->isSpatiallyVarying()) {
147 throw LSST_EXCEPT(pexExcept::InvalidParameterError, "kernel is not spatially varying");
148 } else {
149 std::ostringstream errStream;
150 errStream << "index = " << index << "; must be < , " << _spatialFunctionList.size();
152 }
153 }
154 return _spatialFunctionList[index]->clone();
155}
156
158 std::vector<SpatialFunctionPtr> spFuncCopyList;
159 for (auto const &spFuncIter : _spatialFunctionList) {
160 spFuncCopyList.push_back((*spFuncIter).clone());
161 }
162 return spFuncCopyList;
163}
164
166
168 return lsst::geom::Box2I(
170 lsst::geom::Extent2I(bbox.getDimensions() + getDimensions() - lsst::geom::Extent2I(1, 1)));
171}
172
174 if ((bbox.getWidth() < getWidth()) || ((bbox.getHeight() < getHeight()))) {
176 os << "bbox dimensions = " << bbox.getDimensions() << " < (" << getWidth() << ", " << getHeight()
177 << ") in one or both dimensions";
179 }
180 return lsst::geom::Box2I(
182 lsst::geom::Extent2I(bbox.getWidth() + 1 - getWidth(), bbox.getHeight() + 1 - getHeight()));
183}
184
187 os << prefix << "Kernel:" << std::endl;
188 os << prefix << "..height, width: " << _height << ", " << _width << std::endl;
189 os << prefix << "..ctr (X, Y): " << _ctrX << ", " << _ctrY << std::endl;
190 os << prefix << "..nKernelParams: " << _nKernelParams << std::endl;
191 os << prefix << "..isSpatiallyVarying: " << (this->isSpatiallyVarying() ? "True" : "False") << std::endl;
192 if (this->isSpatiallyVarying()) {
193 os << prefix << "..spatialFunctions:" << std::endl;
194 for (auto const &spFuncPtr : _spatialFunctionList) {
195 os << prefix << "...." << spFuncPtr->toString() << std::endl;
196 }
197 }
198 return os.str();
199}
200
201#if 0 // This fails to compile with icc
202void Kernel::toFile(std::string fileName) const {
203 std::ofstream os(fileName.c_str());
204 boost::archive::text_oarchive oa(os);
205 oa << this;
206}
207#endif
208
209//
210// Protected Member Functions
211//
212
213void Kernel::setKernelParameter(unsigned int, double) const {
214 throw LSST_EXCEPT(pexExcept::InvalidParameterError, "Kernel has no kernel parameters");
215}
216
219 for (int ii = 0; funcIter != _spatialFunctionList.end(); ++funcIter, ++ii) {
220 this->setKernelParameter(ii, (*(*funcIter))(x, y));
221 }
222}
223
224std::string Kernel::getPythonModule() const { return "lsst.afw.math"; }
225} // namespace math
226} // namespace afw
227} // namespace lsst
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
double x
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
std::ostream * os
Definition: Schema.cc:557
std::string prefix
Definition: SchemaMapper.cc:72
int y
Definition: SpanSet.cc:48
T begin(T... args)
T c_str(T... args)
A class to represent a 2-dimensional array of pixels.
Definition: Image.h:51
A Function taking two arguments.
Definition: Function.h:259
virtual std::shared_ptr< Function2< ReturnT > > clone() const =0
Return a pointer to a deep copy of this function.
lsst::geom::Extent2I const getDimensions() const
Return the Kernel's dimensions (width, height)
Definition: Kernel.h:212
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:449
int getHeight() const
Return the Kernel's height.
Definition: Kernel.h:229
lsst::geom::Point2I getCtr() const
Return index of kernel's center.
Definition: Kernel.h:234
unsigned int getNKernelParameters() const
Return the number of kernel parameters (0 if none)
Definition: Kernel.h:246
void setSpatialParameters(const std::vector< std::vector< double > > params)
Set the parameters of all spatial functions.
Definition: Kernel.cc:110
int getNSpatialParameters() const
Return the number of spatial parameters (0 if not spatially varying)
Definition: Kernel.h:251
std::vector< SpatialFunctionPtr > getSpatialFunctionList() const
Return a list of clones of the spatial functions.
Definition: Kernel.cc:157
virtual std::vector< double > getKernelParameters() const
Return the current kernel parameters.
Definition: Kernel.cc:165
virtual std::string toString(std::string const &prefix="") const
Return a string representation of the kernel.
Definition: Kernel.cc:185
void computeKernelParametersFromSpatialModel(std::vector< double > &kernelParams, double x, double y) const
Compute the kernel parameters at a specified point.
Definition: Kernel.cc:135
SpatialFunctionPtr getSpatialFunction(unsigned int index) const
Return a clone of the specified spatial function (one component of the spatial model)
Definition: Kernel.cc:144
lsst::geom::Box2I shrinkBBox(lsst::geom::Box2I const &bbox) const
Given a bounding box for an image one wishes to convolve with this kernel, return the bounding box fo...
Definition: Kernel.cc:173
int getWidth() const
Return the Kernel's width.
Definition: Kernel.h:224
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:333
lsst::geom::Box2I growBBox(lsst::geom::Box2I const &bbox) const
Given a bounding box for pixels one wishes to compute by convolving an image with this kernel,...
Definition: Kernel.cc:167
virtual void setKernelParameter(unsigned int ind, double value) const
Set one kernel parameter.
Definition: Kernel.cc:213
std::string getPythonModule() const override
Return the fully-qualified Python module that should be imported to guarantee that its factory is reg...
Definition: Kernel.cc:224
double computeImage(lsst::afw::image::Image< Pixel > &image, bool doNormalize, double x=0.0, double y=0.0) const
Compute an image (pixellized representation of the kernel) in place.
Definition: Kernel.cc:76
virtual double doComputeImage(lsst::afw::image::Image< Pixel > &image, bool doNormalize) const =0
Low-level version of computeImage.
Kernel()
Construct a null Kernel of size 0,0.
Definition: Kernel.cc:49
void setKernelParametersFromSpatialModel(double x, double y) const
Set the kernel parameters from the spatial model (if any).
Definition: Kernel.cc:217
a class used in function calls to indicate that no Function2 is being provided
Definition: Function.h:458
static std::shared_ptr< T > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18
An integer coordinate rectangle.
Definition: Box.h:55
Reports invalid arguments.
Definition: Runtime.h:66
T endl(T... args)
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects.
deltafunction_kernel_tag deltafunction_kernel_tag_
Used as default value in argument lists.
Definition: Kernel.cc:43
generic_kernel_tag generic_kernel_tag_
Used as default value in argument lists.
Definition: Kernel.cc:42
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
A base class for image defects.
T push_back(T... args)
T str(T... args)
Kernel has only one non-zero pixel.
Definition: traits.h:56
Tags carrying information about Kernels Kernel with no special properties.
Definition: traits.h:53