LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Classes | Public Types | Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Private Attributes | List of all members
lsst::afw::math::Kernel Class Referenceabstract

Kernels are used for convolution with MaskedImages and (eventually) Images. More...

#include <Kernel.h>

Inheritance diagram for lsst::afw::math::Kernel:
lsst::daf::base::Citizen lsst::daf::base::Persistable lsst::afw::table::io::PersistableFacade< Kernel > lsst::afw::table::io::Persistable lsst::afw::math::AnalyticKernel lsst::afw::math::DeltaFunctionKernel lsst::afw::math::FixedKernel lsst::afw::math::LinearCombinationKernel lsst::afw::math::SeparableKernel lsst::meas::algorithms::LocalShapeletKernel lsst::meas::algorithms::ShapeletKernel lsst::afw::math::BilinearWarpingKernel lsst::afw::math::LanczosWarpingKernel lsst::afw::math::NearestWarpingKernel

Classes

struct  PersistenceHelper
 

Public Types

typedef double Pixel
 
typedef boost::shared_ptr< KernelPtr
 
typedef boost::shared_ptr
< Kernel const > 
ConstPtr
 
typedef boost::shared_ptr
< lsst::afw::math::Function2
< double > > 
SpatialFunctionPtr
 
typedef
lsst::afw::math::Function2
< double > 
SpatialFunction
 
typedef
lsst::afw::math::NullFunction2
< double > 
NullSpatialFunction
 
typedef generic_kernel_tag kernel_fill_factor
 
- Public Types inherited from lsst::daf::base::Citizen
enum  { magicSentinel = 0xdeadbeef }
 
typedef unsigned long memId
 Type of the block's ID. More...
 
typedef memId(* memNewCallback )(const memId cid)
 A function used to register a callback. More...
 
typedef memId(* memCallback )(const Citizen *ptr)
 
- Public Types inherited from lsst::daf::base::Persistable
typedef boost::shared_ptr
< Persistable
Ptr
 

Public Member Functions

 Kernel ()
 Construct a null Kernel of size 0,0. More...
 
 Kernel (int width, int height, unsigned int nKernelParams, SpatialFunction const &spatialFunction=NullSpatialFunction())
 Construct a spatially invariant Kernel or a spatially varying Kernel with one spatial function that is duplicated as needed. More...
 
 Kernel (int width, int height, const std::vector< SpatialFunctionPtr > spatialFunctionList)
 Construct a spatially varying Kernel with a list of spatial functions (one per kernel parameter) More...
 
virtual ~Kernel ()
 
virtual boost::shared_ptr< Kernelclone () const =0
 Return a pointer to a deep copy of this kernel. More...
 
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. More...
 
geom::Extent2I const getDimensions () const
 Return the Kernel's dimensions (width, height) More...
 
void setDimensions (geom::Extent2I dims)
 
void setWidth (int width)
 
void setHeight (int height)
 
int getWidth () const
 Return the Kernel's width. More...
 
int getHeight () const
 Return the Kernel's height. More...
 
lsst::afw::geom::Point2I getCtr () const
 Return index of kernel's center. More...
 
int getCtrX () const
 Return x index of kernel's center. More...
 
int getCtrY () const
 Return y index of kernel's center. More...
 
lsst::afw::geom::Box2I getBBox () const
 return parent bounding box, with XY0 = -center More...
 
unsigned int getNKernelParameters () const
 Return the number of kernel parameters (0 if none) More...
 
int getNSpatialParameters () const
 Return the number of spatial parameters (0 if not spatially varying) More...
 
SpatialFunctionPtr getSpatialFunction (unsigned int index) const
 Return a clone of the specified spatial function (one component of the spatial model) More...
 
std::vector< SpatialFunctionPtrgetSpatialFunctionList () const
 Return a list of clones of the spatial functions. More...
 
virtual double getKernelParameter (unsigned int i) const
 
virtual std::vector< double > getKernelParameters () const
 Return the current kernel parameters. More...
 
lsst::afw::geom::Box2I growBBox (lsst::afw::geom::Box2I const &bbox) const
 
lsst::afw::geom::Box2I shrinkBBox (lsst::afw::geom::Box2I const &bbox) const
 
void setCtr (lsst::afw::geom::Point2I ctr)
 Set index of kernel's center. More...
 
void setCtrX (int ctrX)
 Set x index of kernel's center. More...
 
void setCtrY (int ctrY)
 Set y index of kernel's center. More...
 
std::vector< std::vector
< double > > 
getSpatialParameters () const
 Return the spatial parameters parameters (an empty vector if not spatially varying) More...
 
bool isSpatiallyVarying () const
 Return true iff the kernel is spatially varying (has a spatial function) More...
 
void setKernelParameters (std::vector< double > const &params)
 Set the kernel parameters of a spatially invariant kernel. More...
 
void setKernelParameters (std::pair< double, double > const &params)
 Set the kernel parameters of a 2-component spatially invariant kernel. More...
 
void setSpatialParameters (const std::vector< std::vector< double > > params)
 Set the parameters of all spatial functions. More...
 
void computeKernelParametersFromSpatialModel (std::vector< double > &kernelParams, double x, double y) const
 Compute the kernel parameters at a specified point. More...
 
virtual std::string toString (std::string const &prefix="") const
 Return a string representation of the kernel. More...
 
virtual void computeCache (int const )
 Compute a cache of Kernel values, if desired. More...
 
virtual int getCacheSize () const
 Get the current size of the kernel cache (0 if none or if caches not supported) More...
 
- Public Member Functions inherited from lsst::daf::base::Citizen
 Citizen (const std::type_info &)
 
 Citizen (Citizen const &)
 
 ~Citizen ()
 
Citizenoperator= (Citizen const &)
 
std::string repr () const
 Return a string representation of a Citizen. More...
 
void markPersistent (void)
 Mark a Citizen as persistent and not destroyed until process end. More...
 
memId getId () const
 Return the Citizen's ID. More...
 
- Public Member Functions inherited from lsst::daf::base::Persistable
 Persistable (void)
 
virtual ~Persistable (void)
 
template<class Archive >
void serialize (Archive &, unsigned int const)
 
- Public Member Functions inherited from lsst::afw::table::io::Persistable
void writeFits (std::string const &fileName, std::string const &mode="w") const
 Write the object to a regular FITS file. More...
 
void writeFits (fits::MemFileManager &manager, std::string const &mode="w") const
 Write the object to a FITS image in memory. More...
 
void writeFits (fits::Fits &fitsfile) const
 Write the object to an already-open FITS object. More...
 
virtual bool isPersistable () const
 Return true if this particular object can be persisted using afw::table::io. More...
 
virtual ~Persistable ()
 

Protected Member Functions

virtual std::string getPythonModule () const
 Return the fully-qualified Python module that should be imported to guarantee that its factory is registered. More...
 
virtual void setKernelParameter (unsigned int ind, double value) const
 Set one kernel parameter. More...
 
void setKernelParametersFromSpatialModel (double x, double y) const
 Set the kernel parameters from the spatial model (if any). More...
 
virtual double doComputeImage (lsst::afw::image::Image< Pixel > &image, bool doNormalize) const =0
 Low-level version of computeImage. More...
 
- Protected Member Functions inherited from lsst::afw::table::io::Persistable
virtual std::string getPersistenceName () const
 Return the unique name used to persist this object and look up its factory. More...
 
virtual void write (OutputArchiveHandle &handle) const
 Write the object to one or more catalogs. More...
 
 Persistable ()
 
 Persistable (Persistable const &other)
 
void operator= (Persistable const &other)
 

Protected Attributes

std::vector< SpatialFunctionPtr_spatialFunctionList
 

Private Member Functions

 Kernel (const Kernel &)
 
Kerneloperator= (const Kernel &)
 
virtual void _setKernelXY ()
 

Private Attributes

int _width
 
int _height
 
int _ctrX
 
int _ctrY
 
unsigned int _nKernelParams
 

Additional Inherited Members

- Static Public Member Functions inherited from lsst::daf::base::Citizen
static bool hasBeenCorrupted ()
 Check all allocated blocks for corruption. More...
 
static memId getNextMemId ()
 Return the memId of the next object to be allocated. More...
 
static int init ()
 Called once when the memory system is being initialised. More...
 
static int census (int, memId startingMemId=0)
 How many active Citizens are there? More...
 
static void census (std::ostream &stream, memId startingMemId=0)
 Print a list of all active Citizens to stream, sorted by ID. More...
 
static const std::vector
< const Citizen * > * 
census ()
 Return a (newly allocated) std::vector of active Citizens sorted by ID. More...
 
static memId setNewCallbackId (memId id)
 Call the NewCallback when block is allocated. More...
 
static memId setDeleteCallbackId (memId id)
 Call the current DeleteCallback when block is deleted. More...
 
static memNewCallback setNewCallback (memNewCallback func)
 Set the NewCallback function. More...
 
static memCallback setDeleteCallback (memCallback func)
 Set the DeleteCallback function. More...
 
static memCallback setCorruptionCallback (memCallback func)
 Set the CorruptionCallback function. More...
 
- Static Public Member Functions inherited from lsst::afw::table::io::PersistableFacade< Kernel >
static boost::shared_ptr< Kernel > readFits (fits::Fits &fitsfile)
 Read an object from an already open FITS object. More...
 
static boost::shared_ptr< Kernel > readFits (std::string const &fileName, int hdu=0)
 Read an object from a regular FITS file. More...
 
static boost::shared_ptr< Kernel > readFits (fits::MemFileManager &manager, int hdu=0)
 Read an object from a FITS file in memory. More...
 
- Protected Types inherited from lsst::afw::table::io::Persistable
typedef io::OutputArchiveHandle OutputArchiveHandle
 

Detailed Description

Kernels are used for convolution with MaskedImages and (eventually) Images.

Kernel is a virtual base class; it cannot be instantiated. The following notes apply to Kernel and to its subclasses.

The template type should usually be float or double; integer kernels should be used with caution because they do not normalize well.

The center pixel of a Kernel is at index: (width-1)/2, (height-1)/2. Thus it is centered along columns/rows if the kernel has an odd number of columns/rows and shifted 1/2 pixel towards 0 otherwise. A kernel should have an odd number of columns and rows unless it is intended to shift an image.

Spatially Varying Kernels

Kernels may optionally vary spatially (so long as they have any kernel parameters). To make a spatially varying kernel, specify a spatial function at construction (you cannot change your mind once the kernel is constructed). You must also specify a set of spatial parameters, and you may do this at construction and/or later by calling setSpatialParameters. The spatial parameters are a vector (one per kernel function parameter) of spatial function parameters. In other words the spatial parameters are a vector of vectors indexed as [kernel parameter][spatial parameter]. The one spatial function is used to compute the kernel parameters at a given spatial position by computing each kernel parameter using its associated vector of spatial function parameters.

The convolve function computes the spatial function at the pixel position (not index) of the image. See the convolve function for details.

Note that if a kernel is spatially varying then you may not set the kernel parameters directly; that is the job of the spatial function! However, you may change the spatial parameters at any time.

Design Notes

The basic design is to use the same kernel class for both spatially varying and spatially invariant kernels. The user either does or does not supply a function describing the spatial variation at creation time. In addition, analytic kernels are described by a user-supplied function of the same basic type as the spatial variation function.

Several other designs were considered, including: A) Use different classes for spatially varying and spatially invariant versions of each kernel. Thus instead of three basic kernel classes (FixedKernel, AnalyticKernel and LinearCombinationKernel) we would have five (since FixedKernel cannot be spatially varying). Robert Lupton argued that was a needless expansion of the class hiearchy and I agreed. B) Construct analytic kernels by defining a subclass of AnalyticKernel that is specific to the desired functional (e.g. GaussianAnalyticKernel). If spatial models are handled the same way then this creates a serious proliferation of kernel classes (even if we only have two different spatial models, e.g. polynomial and Chebyshev polynomial). I felt it made more sense to define the spatial model by some kind of function class (often called a "functor"), and since we needed such a class, I chose to use it for the analytic kernel as well.

However, having a separate function class does introduce some potential inefficiencies. If a function is part of the class it can potentially be evaluated more quickly than calling a function for each pixel or spatial position.

A possible variant on the current design is to define the spatial model and analytic kernel by specifying the functions as template parameters. This has the potential to regain some efficiency in evaluating the functions. However, it would be difficult or impossible to pre-instantiate the desired template classes, a requirement of the LSST coding standards.

Definition at line 134 of file Kernel.h.

Member Typedef Documentation

typedef boost::shared_ptr< Kernel const> lsst::afw::math::Kernel::ConstPtr

Definition at line 142 of file Kernel.h.

Definition at line 148 of file Kernel.h.

Definition at line 145 of file Kernel.h.

Definition at line 140 of file Kernel.h.

typedef boost::shared_ptr< Kernel > lsst::afw::math::Kernel::Ptr

Definition at line 141 of file Kernel.h.

Definition at line 144 of file Kernel.h.

Definition at line 143 of file Kernel.h.

Constructor & Destructor Documentation

lsst::afw::math::Kernel::Kernel ( )
explicit

Construct a null Kernel of size 0,0.

A null constructor is primarily intended for persistence.

Definition at line 51 of file Kernel.cc.

52 :
53  daf::base::Citizen(typeid(this)),
55  _width(0),
56  _height(0),
57  _ctrX(0),
58  _ctrY(0),
60 {}
unsigned int _nKernelParams
Definition: Kernel.h:533
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
lsst::afw::math::Kernel::Kernel ( int  width,
int  height,
unsigned int  nKernelParams,
SpatialFunction const &  spatialFunction = NullSpatialFunction() 
)
explicit

Construct a spatially invariant Kernel or a spatially varying Kernel with one spatial function that is duplicated as needed.

Exceptions
lsst::pex::exceptions::InvalidParameterErrorif a spatial function is specified and the kernel has no parameters.
lsst::pex::exceptions::InvalidParameterErrorif a width or height < 1
Parameters
widthnumber of columns
heightnumber of height
nKernelParamsnumber of kernel parameters
spatialFunctionspatial function, or NullSpatialFunction() if none specified

Definition at line 62 of file Kernel.cc.

67 :
68  daf::base::Citizen(typeid(this)),
70  _width(width),
71  _height(height),
72  _ctrX((width-1)/2),
73  _ctrY((height-1)/2),
74  _nKernelParams(nKernelParams)
75 {
76  if ((width < 1) || (height < 1)) {
77  std::ostringstream os;
78  os << "kernel height = " << height << " and/or width = " << width << " < 1";
79  throw LSST_EXCEPT(pexExcept::InvalidParameterError, os.str());
80  }
81  if (dynamic_cast<const NullSpatialFunction*>(&spatialFunction)) {
82  // spatialFunction is not really present
83  } else {
84  if (nKernelParams == 0) {
85  throw LSST_EXCEPT(pexExcept::InvalidParameterError, "Kernel function has no parameters");
86  }
87  for (unsigned int ii = 0; ii < nKernelParams; ++ii) {
88  SpatialFunctionPtr spatialFunctionCopy = spatialFunction.clone();
89  this->_spatialFunctionList.push_back(spatialFunctionCopy);
90  }
91  }
92 }
boost::shared_ptr< lsst::afw::math::Function2< double > > SpatialFunctionPtr
Definition: Kernel.h:143
void ImageT ImageT int float saturatedPixelValue int const width
Definition: saturated.cc:44
unsigned int _nKernelParams
Definition: Kernel.h:533
void ImageT ImageT int float saturatedPixelValue int const height
Definition: saturated.cc:44
#define LSST_EXCEPT(type,...)
Definition: Exception.h:46
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
lsst::afw::math::Kernel::Kernel ( int  width,
int  height,
const std::vector< SpatialFunctionPtr spatialFunctionList 
)
explicit

Construct a spatially varying Kernel with a list of spatial functions (one per kernel parameter)

Note: if the list of spatial functions is empty then the kernel is not spatially varying.

Exceptions
lsst::pex::exceptions::InvalidParameterErrorif a width or height < 1
Parameters
widthnumber of columns
heightnumber of height
spatialFunctionListlist of spatial function, one per kernel parameter

Definition at line 113 of file Kernel.cc.

117 :
118  daf::base::Citizen(typeid(this)),
119  _width(width),
120  _height(height),
121  _ctrX(width/2),
122  _ctrY(height/2),
123  _nKernelParams(spatialFunctionList.size())
124 {
125  if ((width < 1) || (height < 1)) {
126  std::ostringstream os;
127  os << "kernel height = " << height << " and/or width = " << width << " < 1";
128  throw LSST_EXCEPT(pexExcept::InvalidParameterError, os.str());
129  }
130  for (unsigned int ii = 0; ii < spatialFunctionList.size(); ++ii) {
131  SpatialFunctionPtr spatialFunctionCopy = spatialFunctionList[ii]->clone();
132  this->_spatialFunctionList.push_back(spatialFunctionCopy);
133  }
134 }
boost::shared_ptr< lsst::afw::math::Function2< double > > SpatialFunctionPtr
Definition: Kernel.h:143
void ImageT ImageT int float saturatedPixelValue int const width
Definition: saturated.cc:44
unsigned int _nKernelParams
Definition: Kernel.h:533
void ImageT ImageT int float saturatedPixelValue int const height
Definition: saturated.cc:44
#define LSST_EXCEPT(type,...)
Definition: Exception.h:46
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
virtual lsst::afw::math::Kernel::~Kernel ( )
inlinevirtual

Definition at line 187 of file Kernel.h.

187 {}
lsst::afw::math::Kernel::Kernel ( const Kernel )
private

Member Function Documentation

virtual void lsst::afw::math::Kernel::_setKernelXY ( )
inlineprivatevirtual

Reimplemented in lsst::afw::math::SeparableKernel.

Definition at line 539 of file Kernel.h.

539 {}
virtual boost::shared_ptr< Kernel > lsst::afw::math::Kernel::clone ( ) const
pure virtual

Return a pointer to a deep copy of this kernel.

This kernel exists instead of a copy constructor so one can obtain a copy of an actual kernel instead of a useless copy of the base class.

Every kernel subclass must override this method.

Returns
a pointer to a deep copy of the kernel

Implemented in lsst::afw::math::SeparableKernel, lsst::afw::math::LinearCombinationKernel, lsst::afw::math::DeltaFunctionKernel, lsst::afw::math::AnalyticKernel, lsst::afw::math::FixedKernel, lsst::afw::math::NearestWarpingKernel, lsst::afw::math::BilinearWarpingKernel, and lsst::afw::math::LanczosWarpingKernel.

virtual void lsst::afw::math::Kernel::computeCache ( int  const)
inlinevirtual

Compute a cache of Kernel values, if desired.

Warning
: few kernel classes actually support this, in which case this is a no-op and getCacheSize always returns 0.
Parameters
constdesired cache size

Reimplemented in lsst::afw::math::SeparableKernel.

Definition at line 469 of file Kernel.h.

471  {}
double lsst::afw::math::Kernel::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.

x, y are ignored if there is no spatial function.

Returns
The kernel sum
Note
computeNewImage has been retired; it doesn't need to be a member
Exceptions
lsst::pex::exceptions::InvalidParameterErrorif the image is the wrong size
lsst::pex::exceptions::OverflowErrorif doNormalize is true and the kernel sum is exactly 0
Parameters
imageimage whose pixels are to be set (output); xy0 of the image will be set to -kernel.getCtr()
doNormalizenormalize the image (so sum is 1)?
xx (column position) at which to compute spatial function
yy (row position) at which to compute spatial function

Definition at line 94 of file Kernel.cc.

99  {
100  if (image.getDimensions() != this->getDimensions()) {
101  std::ostringstream os;
102  os << "image dimensions = ( " << image.getWidth() << ", " << image.getHeight()
103  << ") != (" << this->getWidth() << ", " << this->getHeight() << ") = kernel dimensions";
104  throw LSST_EXCEPT(pexExcept::InvalidParameterError, os.str());
105  }
106  image.setXY0(-_ctrX, -_ctrY);
107  if (this->isSpatiallyVarying()) {
109  }
110  return doComputeImage(image, doNormalize);
111 }
int y
void setXY0(geom::Point2I const origin)
Definition: Image.h:362
geom::Extent2I const getDimensions() const
Return the Kernel&#39;s dimensions (width, height)
Definition: Kernel.h:226
int getHeight() const
Return the Kernel&#39;s height.
Definition: Kernel.h:247
int getWidth() const
Return the Kernel&#39;s width.
Definition: Kernel.h:240
void setKernelParametersFromSpatialModel(double x, double y) const
Set the kernel parameters from the spatial model (if any).
Definition: Kernel.cc:257
geom::Extent2I getDimensions() const
Return the image&#39;s size; useful for passing to constructors.
Definition: Image.h:298
int getHeight() const
Return the number of rows in the image.
Definition: Image.h:239
double x
#define LSST_EXCEPT(type,...)
Definition: Exception.h:46
virtual double doComputeImage(lsst::afw::image::Image< Pixel > &image, bool doNormalize) const =0
Low-level version of computeImage.
int getWidth() const
Return the number of columns in the image.
Definition: Image.h:237
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:402
void lsst::afw::math::Kernel::computeKernelParametersFromSpatialModel ( std::vector< double > &  kernelParams,
double  x,
double  y 
) const

Compute the kernel parameters at a specified point.

Warning: this is a low-level function that assumes kernelParams is the right length. It will fail in unpredictable ways if that condition is not met.

Definition at line 162 of file Kernel.cc.

163  {
164  std::vector<double>::iterator paramIter = kernelParams.begin();
165  std::vector<SpatialFunctionPtr>::const_iterator funcIter = _spatialFunctionList.begin();
166  for ( ; funcIter != _spatialFunctionList.end(); ++funcIter, ++paramIter) {
167  *paramIter = (*(*funcIter))(x,y);
168  }
169 }
int y
double x
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
virtual double lsst::afw::math::Kernel::doComputeImage ( lsst::afw::image::Image< Pixel > &  image,
bool  doNormalize 
) const
protectedpure virtual

Low-level version of computeImage.

Before this is called the image dimensions are checked, the image's xy0 is set and the kernel's parameters are set. This routine sets the pixels, including normalization if requested.

Returns
The kernel sum
Parameters
imageimage whose pixels are to be set (output)
doNormalizenormalize the image (so sum is 1)?

Implemented in lsst::afw::math::SeparableKernel, lsst::afw::math::LinearCombinationKernel, lsst::afw::math::DeltaFunctionKernel, lsst::afw::math::AnalyticKernel, and lsst::afw::math::FixedKernel.

lsst::afw::geom::Box2I lsst::afw::math::Kernel::getBBox ( ) const
inline

return parent bounding box, with XY0 = -center

Definition at line 279 of file Kernel.h.

virtual int lsst::afw::math::Kernel::getCacheSize ( ) const
inlinevirtual

Get the current size of the kernel cache (0 if none or if caches not supported)

Reimplemented in lsst::afw::math::SeparableKernel.

Definition at line 476 of file Kernel.h.

476 { return 0; };
lsst::afw::geom::Point2I lsst::afw::math::Kernel::getCtr ( ) const
inline

Return index of kernel's center.

Definition at line 254 of file Kernel.h.

254  {
256  }
Point< int, 2 > Point2I
Definition: Point.h:283
int lsst::afw::math::Kernel::getCtrX ( ) const
inline

Return x index of kernel's center.

Deprecated:
Use getCtr instead

Definition at line 263 of file Kernel.h.

263  {
264  return _ctrX;
265  }
int lsst::afw::math::Kernel::getCtrY ( ) const
inline

Return y index of kernel's center.

Deprecated:
Use getCtr instead

Definition at line 272 of file Kernel.h.

272  {
273  return _ctrY;
274  }
geom::Extent2I const lsst::afw::math::Kernel::getDimensions ( ) const
inline

Return the Kernel's dimensions (width, height)

Definition at line 226 of file Kernel.h.

226  {
227  return geom::Extent2I(_width, _height); }
Extent< int, 2 > Extent2I
Definition: Extent.h:355
int lsst::afw::math::Kernel::getHeight ( ) const
inline

Return the Kernel's height.

Definition at line 247 of file Kernel.h.

247  {
248  return _height;
249  }
virtual double lsst::afw::math::Kernel::getKernelParameter ( unsigned int  i) const
inlinevirtual

Return a particular Kernel Parameter (no bounds checking). This version is slow, but specialisations may be faster

Reimplemented in lsst::afw::math::SeparableKernel.

Definition at line 324 of file Kernel.h.

324  {
325  return getKernelParameters()[i];
326  }
virtual std::vector< double > getKernelParameters() const
Return the current kernel parameters.
Definition: Kernel.cc:196
std::vector< double > lsst::afw::math::Kernel::getKernelParameters ( ) const
virtual

Return the current kernel parameters.

If the kernel is spatially varying then the parameters are those last computed. See also computeKernelParametersFromSpatialModel. If there are no kernel parameters then returns an empty vector.

Reimplemented in lsst::afw::math::SeparableKernel, lsst::afw::math::LinearCombinationKernel, and lsst::afw::math::AnalyticKernel.

Definition at line 196 of file Kernel.cc.

196  {
197  return std::vector<double>();
198 }
unsigned int lsst::afw::math::Kernel::getNKernelParameters ( ) const
inline

Return the number of kernel parameters (0 if none)

Definition at line 289 of file Kernel.h.

289  {
290  return _nKernelParams;
291  }
unsigned int _nKernelParams
Definition: Kernel.h:533
int lsst::afw::math::Kernel::getNSpatialParameters ( ) const
inline

Return the number of spatial parameters (0 if not spatially varying)

Definition at line 296 of file Kernel.h.

296  {
297  return this->isSpatiallyVarying() ? _spatialFunctionList[0]->getNParameters() : 0;
298  }
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:402
std::string lsst::afw::math::Kernel::getPythonModule ( ) const
protectedvirtual

Return the fully-qualified Python module that should be imported to guarantee that its factory is registered.

Must be less than ArchiveIndexSchema::MAX_MODULE_LENGTH characters.

Will be ignored if empty.

Reimplemented from lsst::afw::table::io::Persistable.

Definition at line 264 of file Kernel.cc.

264 { return "lsst.afw.math"; }
afwMath::Kernel::SpatialFunctionPtr lsst::afw::math::Kernel::getSpatialFunction ( unsigned int  index) const

Return a clone of the specified spatial function (one component of the spatial model)

Returns
a shared pointer to a spatial function. The function is a deep copy, so setting its parameters has no effect on the kernel.
Exceptions
lsst::pex::exceptions::InvalidParameterErrorif kernel not spatially varying
lsst::pex::exceptions::InvalidParameterErrorif index out of range
Parameters
indexindex of desired spatial function; must be in range [0, number spatial parameters - 1]

Definition at line 171 of file Kernel.cc.

173  {
174  if (index >= _spatialFunctionList.size()) {
175  if (!this->isSpatiallyVarying()) {
176  throw LSST_EXCEPT(pexExcept::InvalidParameterError, "kernel is not spatially varying");
177  } else {
178  std::ostringstream errStream;
179  errStream << "index = " << index << "; must be < , " << _spatialFunctionList.size();
180  throw LSST_EXCEPT(pexExcept::InvalidParameterError, errStream.str());
181  }
182  }
183  return _spatialFunctionList[index]->clone();
184 }
#define LSST_EXCEPT(type,...)
Definition: Exception.h:46
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:402
std::vector< afwMath::Kernel::SpatialFunctionPtr > lsst::afw::math::Kernel::getSpatialFunctionList ( ) const

Return a list of clones of the spatial functions.

Returns
a list of shared pointers to spatial functions. The functions are deep copies, so setting their parameters has no effect on the kernel.

Definition at line 186 of file Kernel.cc.

187  {
188  std::vector<SpatialFunctionPtr> spFuncCopyList;
189  for (std::vector<SpatialFunctionPtr>::const_iterator spFuncIter = _spatialFunctionList.begin();
190  spFuncIter != _spatialFunctionList.end(); ++spFuncIter) {
191  spFuncCopyList.push_back((**spFuncIter).clone());
192  }
193  return spFuncCopyList;
194 }
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
std::vector<std::vector<double> > lsst::afw::math::Kernel::getSpatialParameters ( ) const
inline

Return the spatial parameters parameters (an empty vector if not spatially varying)

Definition at line 390 of file Kernel.h.

390  {
391  std::vector<std::vector<double> > spatialParams;
392  std::vector<SpatialFunctionPtr>::const_iterator spFuncIter = _spatialFunctionList.begin();
393  for ( ; spFuncIter != _spatialFunctionList.end(); ++spFuncIter) {
394  spatialParams.push_back((*spFuncIter)->getParameters());
395  }
396  return spatialParams;
397  }
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
int lsst::afw::math::Kernel::getWidth ( ) const
inline

Return the Kernel's width.

Definition at line 240 of file Kernel.h.

240  {
241  return _width;
242  }
afwGeom::Box2I lsst::afw::math::Kernel::growBBox ( lsst::afw::geom::Box2I const &  bbox) const

Given a bounding box for pixels one wishes to compute by convolving an image with this kernel, return the bounding box of pixels that must be accessed on the image to be convolved. Thus the box shifted by -kernel.getCtr() and its size is expanded by kernel.getDimensions()-1.

Returns
the bbox expanded by the kernel.

Definition at line 201 of file Kernel.cc.

201  {
202  return afwGeom::Box2I(
203  afwGeom::Point2I(bbox.getMin() - afwGeom::Extent2I(getCtr())),
204  afwGeom::Extent2I(bbox.getDimensions() + getDimensions() - afwGeom::Extent2I(1,1)));
205 }
geom::Extent2I const getDimensions() const
Return the Kernel&#39;s dimensions (width, height)
Definition: Kernel.h:226
Extent< int, 2 > Extent2I
Definition: Extent.h:355
An integer coordinate rectangle.
Definition: Box.h:53
lsst::afw::geom::Point2I getCtr() const
Return index of kernel&#39;s center.
Definition: Kernel.h:254
bool lsst::afw::math::Kernel::isSpatiallyVarying ( ) const
inline

Return true iff the kernel is spatially varying (has a spatial function)

Definition at line 402 of file Kernel.h.

402  {
403  return _spatialFunctionList.size() != 0;
404  }
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
Kernel& lsst::afw::math::Kernel::operator= ( const Kernel )
private
void lsst::afw::math::Kernel::setCtr ( lsst::afw::geom::Point2I  ctr)
inline

Set index of kernel's center.

Definition at line 361 of file Kernel.h.

361  {
362  _ctrX = ctr.getX();
363  _ctrY = ctr.getY();
364  _setKernelXY();
365  }
virtual void _setKernelXY()
Definition: Kernel.h:539
void lsst::afw::math::Kernel::setCtrX ( int  ctrX)
inline

Set x index of kernel's center.

Deprecated:
Use setCtr instead

Definition at line 372 of file Kernel.h.

372  {
373  _ctrX = ctrX;
374  _setKernelXY();
375  }
virtual void _setKernelXY()
Definition: Kernel.h:539
void lsst::afw::math::Kernel::setCtrY ( int  ctrY)
inline

Set y index of kernel's center.

Deprecated:
Use setCtr instead

Definition at line 382 of file Kernel.h.

382  {
383  _ctrY = ctrY;
384  _setKernelXY();
385  }
virtual void _setKernelXY()
Definition: Kernel.h:539
void lsst::afw::math::Kernel::setDimensions ( geom::Extent2I  dims)
inline

Definition at line 229 of file Kernel.h.

229  {
230  _width = dims.getX();
231  _height = dims.getY();
232 
233  }
void lsst::afw::math::Kernel::setHeight ( int  height)
inline

Definition at line 235 of file Kernel.h.

235 { _height = height; }
void ImageT ImageT int float saturatedPixelValue int const height
Definition: saturated.cc:44
void lsst::afw::math::Kernel::setKernelParameter ( unsigned int  ind,
double  value 
) const
protectedvirtual

Set one kernel parameter.

Classes that have kernel parameters must subclass this function.

This function is marked "const", despite modifying unimportant internals, so that computeImage can be const.

Exceptions
lsst::pex::exceptions::InvalidParameterErroralways (unless subclassed)

Reimplemented in lsst::afw::math::SeparableKernel, lsst::afw::math::LinearCombinationKernel, lsst::afw::math::AnalyticKernel, lsst::afw::math::NearestWarpingKernel, lsst::afw::math::BilinearWarpingKernel, and lsst::afw::math::LanczosWarpingKernel.

Definition at line 253 of file Kernel.cc.

253  {
254  throw LSST_EXCEPT(pexExcept::InvalidParameterError, "Kernel has no kernel parameters");
255 }
#define LSST_EXCEPT(type,...)
Definition: Exception.h:46
void lsst::afw::math::Kernel::setKernelParameters ( std::vector< double > const &  params)
inline

Set the kernel parameters of a spatially invariant kernel.

Exceptions
lsst::pex::exceptions::RuntimeErrorif the kernel has a spatial function
lsst::pex::exceptions::InvalidParameterErrorif the params vector is the wrong length

Definition at line 412 of file Kernel.h.

412  {
413  if (this->isSpatiallyVarying()) {
414  throw LSST_EXCEPT(lsst::pex::exceptions::RuntimeError,
415  "Kernel is spatially varying");
416  }
417  const unsigned int nParams = this->getNKernelParameters();
418  if (nParams != params.size()) {
419  throw LSST_EXCEPT(lsst::pex::exceptions::InvalidParameterError,
420  (boost::format("Number of parameters is wrong, saw %d expected %d") %
421  nParams % params.size()).str());
422  }
423  for (unsigned int ii = 0; ii < nParams; ++ii) {
424  this->setKernelParameter(ii, params[ii]);
425  }
426  }
virtual void setKernelParameter(unsigned int ind, double value) const
Set one kernel parameter.
Definition: Kernel.cc:253
unsigned int getNKernelParameters() const
Return the number of kernel parameters (0 if none)
Definition: Kernel.h:289
#define LSST_EXCEPT(type,...)
Definition: Exception.h:46
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:402
void lsst::afw::math::Kernel::setKernelParameters ( std::pair< double, double > const &  params)
inline

Set the kernel parameters of a 2-component spatially invariant kernel.

Warning
This is a low-level method intended for maximum efficiency when using warping kernels. No error checking is performed. Use the std::vector<double> form if you want safety.

Definition at line 434 of file Kernel.h.

434  {
435  this->setKernelParameter(0, params.first);
436  this->setKernelParameter(1, params.second);
437  }
virtual void setKernelParameter(unsigned int ind, double value) const
Set one kernel parameter.
Definition: Kernel.cc:253
void lsst::afw::math::Kernel::setKernelParametersFromSpatialModel ( double  x,
double  y 
) const
protected

Set the kernel parameters from the spatial model (if any).

This function has no effect if there is no spatial model.

This function is marked "const", despite modifying unimportant internals, so that computeImage can be const.

Definition at line 257 of file Kernel.cc.

257  {
258  std::vector<SpatialFunctionPtr>::const_iterator funcIter = _spatialFunctionList.begin();
259  for (int ii = 0; funcIter != _spatialFunctionList.end(); ++funcIter, ++ii) {
260  this->setKernelParameter(ii, (*(*funcIter))(x,y));
261  }
262 }
int y
virtual void setKernelParameter(unsigned int ind, double value) const
Set one kernel parameter.
Definition: Kernel.cc:253
double x
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
void lsst::afw::math::Kernel::setSpatialParameters ( const std::vector< std::vector< double > >  params)

Set the parameters of all spatial functions.

Params is indexed as [kernel parameter][spatial parameter]

Exceptions
lsst::pex::exceptions::InvalidParameterErrorif params is the wrong shape (if this exception is thrown then no parameters are changed)

Definition at line 139 of file Kernel.cc.

139  {
140  // Check params size before changing anything
141  unsigned int nKernelParams = this->getNKernelParameters();
142  if (params.size() != nKernelParams) {
143  throw LSST_EXCEPT(pexExcept::InvalidParameterError,
144  (boost::format("params has %d entries instead of %d") % params.size() % nKernelParams).str());
145  }
146  unsigned int nSpatialParams = this->getNSpatialParameters();
147  for (unsigned int ii = 0; ii < nKernelParams; ++ii) {
148  if (params[ii].size() != nSpatialParams) {
149  throw LSST_EXCEPT(pexExcept::InvalidParameterError,
150  (boost::format("params[%d] has %d entries instead of %d") %
151  ii % params[ii].size() % nSpatialParams).str());
152  }
153  }
154  // Set parameters
155  if (nSpatialParams > 0) {
156  for (unsigned int ii = 0; ii < nKernelParams; ++ii) {
157  this->_spatialFunctionList[ii]->setParameters(params[ii]);
158  }
159  }
160 }
int getNSpatialParameters() const
Return the number of spatial parameters (0 if not spatially varying)
Definition: Kernel.h:296
unsigned int getNKernelParameters() const
Return the number of kernel parameters (0 if none)
Definition: Kernel.h:289
#define LSST_EXCEPT(type,...)
Definition: Exception.h:46
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
void lsst::afw::math::Kernel::setWidth ( int  width)
inline

Definition at line 234 of file Kernel.h.

234 { _width = width; }
void ImageT ImageT int float saturatedPixelValue int const width
Definition: saturated.cc:44
afwGeom::Box2I lsst::afw::math::Kernel::shrinkBBox ( lsst::afw::geom::Box2I const &  bbox) const

Given a bounding box for an image one wishes to convolve with this kernel, return the bounding box for the region of pixels that can be computed. Thus the box shifted by kernel.getCtr() and its size is reduced by kernel.getDimensions()-1.

Returns
the bbox shrunk by the kernel.
Exceptions
lsst::pex::exceptions::InvalidParameterErrorif the resulting box would have dimension < 1 in either axis

Definition at line 207 of file Kernel.cc.

207  {
208  if ((bbox.getWidth() < getWidth()) || ((bbox.getHeight() < getHeight()))) {
209  std::ostringstream os;
210  os << "bbox dimensions = " << bbox.getDimensions() << " < ("
211  << getWidth() << ", " << getHeight() << ") in one or both dimensions";
212  throw LSST_EXCEPT(pexExcept::InvalidParameterError, os.str());
213  }
214  return afwGeom::Box2I(
216  bbox.getMinX() + getCtrX(),
217  bbox.getMinY() + getCtrY()),
219  bbox.getWidth() + 1 - getWidth(),
220  bbox.getHeight() + 1 - getHeight()));
221 }
int getCtrY() const
Return y index of kernel&#39;s center.
Definition: Kernel.h:272
int getCtrX() const
Return x index of kernel&#39;s center.
Definition: Kernel.h:263
An integer coordinate rectangle.
Definition: Box.h:53
int getHeight() const
Return the Kernel&#39;s height.
Definition: Kernel.h:247
int getWidth() const
Return the Kernel&#39;s width.
Definition: Kernel.h:240
#define LSST_EXCEPT(type,...)
Definition: Exception.h:46
std::string lsst::afw::math::Kernel::toString ( std::string const &  prefix = "") const
virtual

Return a string representation of the kernel.

Reimplemented in lsst::afw::math::SeparableKernel, lsst::afw::math::LinearCombinationKernel, lsst::afw::math::DeltaFunctionKernel, lsst::afw::math::AnalyticKernel, and lsst::afw::math::FixedKernel.

Definition at line 224 of file Kernel.cc.

224  {
225  std::ostringstream os;
226  os << prefix << "Kernel:" << std::endl;
227  os << prefix << "..height, width: " << _height << ", " << _width << std::endl;
228  os << prefix << "..ctr (X, Y): " << _ctrX << ", " << _ctrY << std::endl;
229  os << prefix << "..nKernelParams: " << _nKernelParams << std::endl;
230  os << prefix << "..isSpatiallyVarying: " << (this->isSpatiallyVarying() ? "True" : "False") << std::endl;
231  if (this->isSpatiallyVarying()) {
232  os << prefix << "..spatialFunctions:" << std::endl;
233  for (std::vector<SpatialFunctionPtr>::const_iterator spFuncPtr = _spatialFunctionList.begin();
234  spFuncPtr != _spatialFunctionList.end(); ++spFuncPtr) {
235  os << prefix << "...." << (*spFuncPtr)->toString() << std::endl;
236  }
237  }
238  return os.str();
239 }
unsigned int _nKernelParams
Definition: Kernel.h:533
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:524
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:402

Member Data Documentation

int lsst::afw::math::Kernel::_ctrX
private

Definition at line 531 of file Kernel.h.

int lsst::afw::math::Kernel::_ctrY
private

Definition at line 532 of file Kernel.h.

int lsst::afw::math::Kernel::_height
private

Definition at line 530 of file Kernel.h.

unsigned int lsst::afw::math::Kernel::_nKernelParams
private

Definition at line 533 of file Kernel.h.

std::vector<SpatialFunctionPtr> lsst::afw::math::Kernel::_spatialFunctionList
protected

Definition at line 524 of file Kernel.h.

int lsst::afw::math::Kernel::_width
private

Definition at line 529 of file Kernel.h.


The documentation for this class was generated from the following files: