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
Classes | Public Types | Public Member Functions | Static Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | List of all members
lsst::afw::math::FixedKernel Class Reference

A kernel created from an Image. More...

#include <Kernel.h>

Inheritance diagram for lsst::afw::math::FixedKernel:
lsst::afw::table::io::PersistableFacade< FixedKernel > lsst::afw::math::Kernel lsst::afw::table::io::PersistableFacade< Kernel > lsst::afw::table::io::Persistable

Classes

class  Factory
 

Public Types

typedef double Pixel
 
typedef std::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 Member Functions

 FixedKernel ()
 Construct an empty FixedKernel of size 0x0. More...
 
 FixedKernel (lsst::afw::image::Image< Pixel > const &image)
 Construct a FixedKernel from an image. More...
 
 FixedKernel (lsst::afw::math::Kernel const &kernel, lsst::geom::Point2D const &pos)
 Construct a FixedKernel from a generic Kernel. More...
 
 FixedKernel (const FixedKernel &)=delete
 
 FixedKernel (FixedKernel &&)=delete
 
FixedKerneloperator= (const FixedKernel &)=delete
 
FixedKerneloperator= (FixedKernel &&)=delete
 
 ~FixedKernel () override=default
 
std::shared_ptr< Kernelclone () const override
 Return a pointer to a deep copy of this kernel. More...
 
std::shared_ptr< Kernelresized (int width, int height) const override
 Return a pointer to a clone with specified kernel dimensions. More...
 
std::string toString (std::string const &prefix="") const override
 Return a string representation of the kernel. More...
 
virtual Pixel getSum () const
 
bool isPersistable () const noexcept override
 Return true if this particular object can be persisted using afw::table::io. 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...
 
lsst::geom::Extent2I const getDimensions () const
 Return the Kernel's dimensions (width, height) More...
 
void setDimensions (lsst::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::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::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
 Return a particular Kernel Parameter (no bounds checking). More...
 
virtual std::vector< double > getKernelParameters () const
 Return the current kernel parameters. More...
 
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, return the bounding box of pixels that must be accessed on the image to be convolved. More...
 
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 for the region of pixels that can be computed. More...
 
void setCtr (lsst::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 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...
 
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...
 

Static Public Member Functions

static std::shared_ptr< FixedKernelreadFits (fits::Fits &fitsfile)
 Read an object from an already open FITS object. More...
 
static std::shared_ptr< FixedKernelreadFits (std::string const &fileName, int hdu=fits::DEFAULT_HDU)
 Read an object from a regular FITS file. More...
 
static std::shared_ptr< FixedKernelreadFits (fits::MemFileManager &manager, int hdu=fits::DEFAULT_HDU)
 Read an object from a FITS file in memory. More...
 
static std::shared_ptr< FixedKerneldynamicCast (std::shared_ptr< Persistable > const &ptr)
 Dynamically cast a shared_ptr. More...
 
static std::shared_ptr< KernelreadFits (fits::Fits &fitsfile)
 Read an object from an already open FITS object. More...
 
static std::shared_ptr< KernelreadFits (std::string const &fileName, int hdu=fits::DEFAULT_HDU)
 Read an object from a regular FITS file. More...
 
static std::shared_ptr< KernelreadFits (fits::MemFileManager &manager, int hdu=fits::DEFAULT_HDU)
 Read an object from a FITS file in memory. More...
 
static std::shared_ptr< KerneldynamicCast (std::shared_ptr< Persistable > const &ptr)
 Dynamically cast a shared_ptr. More...
 

Protected Types

typedef io::OutputArchiveHandle OutputArchiveHandle
 

Protected Member Functions

double doComputeImage (lsst::afw::image::Image< Pixel > &image, bool doNormalize) const override
 Low-level version of computeImage. More...
 
std::string getPersistenceName () const override
 Return the unique name used to persist this object and look up its factory. More...
 
void write (OutputArchiveHandle &handle) const override
 Write the object to one or more catalogs. More...
 
std::string getPythonModule () const override
 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...
 

Protected Attributes

std::vector< SpatialFunctionPtr_spatialFunctionList
 

Detailed Description

A kernel created from an Image.

It has no adjustable parameters and so cannot be spatially varying.

Definition at line 518 of file Kernel.h.

Member Typedef Documentation

◆ kernel_fill_factor

Definition at line 119 of file Kernel.h.

◆ NullSpatialFunction

Definition at line 116 of file Kernel.h.

◆ OutputArchiveHandle

typedef io::OutputArchiveHandle lsst::afw::table::io::Persistable::OutputArchiveHandle
protectedinherited

Definition at line 108 of file Persistable.h.

◆ Pixel

typedef double lsst::afw::math::Kernel::Pixel
inherited

Definition at line 113 of file Kernel.h.

◆ SpatialFunction

Definition at line 115 of file Kernel.h.

◆ SpatialFunctionPtr

Definition at line 114 of file Kernel.h.

Constructor & Destructor Documentation

◆ FixedKernel() [1/5]

lsst::afw::math::FixedKernel::FixedKernel ( )
explicit

Construct an empty FixedKernel of size 0x0.

Definition at line 42 of file FixedKernel.cc.

42 : Kernel(), _image(), _sum(0) {}
Kernel()
Construct a null Kernel of size 0,0.
Definition: Kernel.cc:58

◆ FixedKernel() [2/5]

lsst::afw::math::FixedKernel::FixedKernel ( lsst::afw::image::Image< Pixel > const &  image)
explicit

Construct a FixedKernel from an image.

Parameters
imageimage for kernel

Definition at line 44 of file FixedKernel.cc.

45  : Kernel(image.getWidth(), image.getHeight(), 0), _image(image, true), _sum(0) {
46  typedef image::Image<Pixel>::x_iterator XIter;
47  double imSum = 0.0;
48  for (int y = 0; y != image.getHeight(); ++y) {
49  for (XIter imPtr = image.row_begin(y), imEnd = image.row_end(y); imPtr != imEnd; ++imPtr) {
50  imSum += *imPtr;
51  }
52  }
53  this->_sum = imSum;
54 }
int getHeight() const
Return the number of rows in the image.
Definition: ImageBase.h:335
int y
Definition: SpanSet.cc:49
x_iterator row_begin(int y) const
Return an x_iterator to the start of the y&#39;th row.
Definition: ImageBase.h:438
int getWidth() const
Return the number of columns in the image.
Definition: ImageBase.h:333
Kernel()
Construct a null Kernel of size 0,0.
Definition: Kernel.cc:58
x_iterator row_end(int y) const
Return an x_iterator to the end of the y&#39;th row.
Definition: ImageBase.h:441
A class to represent a 2-dimensional array of pixels.
Definition: Image.h:58

◆ FixedKernel() [3/5]

lsst::afw::math::FixedKernel::FixedKernel ( lsst::afw::math::Kernel const &  kernel,
lsst::geom::Point2D const &  pos 
)
explicit

Construct a FixedKernel from a generic Kernel.

Parameters
kernelKernel to convert to Fixed
posdesired position

Definition at line 56 of file FixedKernel.cc.

57  : Kernel(kernel.getWidth(), kernel.getHeight(), 0), _image(kernel.getDimensions()), _sum(0) {
58  _sum = kernel.computeImage(_image, false, pos[0], pos[1]);
59 }
Kernel()
Construct a null Kernel of size 0,0.
Definition: Kernel.cc:58

◆ FixedKernel() [4/5]

lsst::afw::math::FixedKernel::FixedKernel ( const FixedKernel )
delete

◆ FixedKernel() [5/5]

lsst::afw::math::FixedKernel::FixedKernel ( FixedKernel &&  )
delete

◆ ~FixedKernel()

lsst::afw::math::FixedKernel::~FixedKernel ( )
overridedefault

Member Function Documentation

◆ clone()

std::shared_ptr< Kernel > lsst::afw::math::FixedKernel::clone ( ) const
overridevirtual

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

Implements lsst::afw::math::Kernel.

Definition at line 61 of file FixedKernel.cc.

61  {
62  std::shared_ptr<Kernel> retPtr(new FixedKernel(_image));
63  retPtr->setCtr(this->getCtr());
64  return retPtr;
65 }
FixedKernel()
Construct an empty FixedKernel of size 0x0.
Definition: FixedKernel.cc:42
lsst::geom::Point2I getCtr() const
Return index of kernel&#39;s center.
Definition: Kernel.h:235

◆ computeCache()

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

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 444 of file Kernel.h.

445  {}

◆ computeImage()

double lsst::afw::math::Kernel::computeImage ( lsst::afw::image::Image< Pixel > &  image,
bool  doNormalize,
double  x = 0.0,
double  y = 0.0 
) const
inherited

Compute an image (pixellized representation of the kernel) in place.

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
Returns
The kernel sum
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
Note
computeNewImage has been retired; it doesn't need to be a member

Definition at line 85 of file Kernel.cc.

85  {
86  if (image.getDimensions() != this->getDimensions()) {
88  os << "image dimensions = ( " << image.getWidth() << ", " << image.getHeight() << ") != ("
89  << this->getWidth() << ", " << this->getHeight() << ") = kernel dimensions";
91  }
92  image.setXY0(-_ctrX, -_ctrY);
93  if (this->isSpatiallyVarying()) {
95  }
96  return doComputeImage(image, doNormalize);
97 }
int getHeight() const
Return the Kernel&#39;s height.
Definition: Kernel.h:230
int getHeight() const
Return the number of rows in the image.
Definition: ImageBase.h:335
int y
Definition: SpanSet.cc:49
void setXY0(lsst::geom::Point2I const origin)
Set the ImageBase&#39;s origin.
Definition: ImageBase.h:471
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:380
T str(T... args)
double x
void setKernelParametersFromSpatialModel(double x, double y) const
Set the kernel parameters from the spatial model (if any).
Definition: Kernel.cc:228
int getWidth() const
Return the Kernel&#39;s width.
Definition: Kernel.h:225
lsst::geom::Extent2I const getDimensions() const
Return the Kernel&#39;s dimensions (width, height)
Definition: Kernel.h:213
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
int getWidth() const
Return the number of columns in the image.
Definition: ImageBase.h:333
virtual double doComputeImage(lsst::afw::image::Image< Pixel > &image, bool doNormalize) const =0
Low-level version of computeImage.
Reports invalid arguments.
Definition: Runtime.h:66
lsst::geom::Extent2I getDimensions() const
Return the image&#39;s size; useful for passing to constructors.
Definition: ImageBase.h:393
std::ostream * os
Definition: Schema.cc:746

◆ computeKernelParametersFromSpatialModel()

void lsst::afw::math::Kernel::computeKernelParametersFromSpatialModel ( std::vector< double > &  kernelParams,
double  x,
double  y 
) const
inherited

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 144 of file Kernel.cc.

145  {
146  std::vector<double>::iterator paramIter = kernelParams.begin();
148  for (; funcIter != _spatialFunctionList.end(); ++funcIter, ++paramIter) {
149  *paramIter = (*(*funcIter))(x, y);
150  }
151 }
int y
Definition: SpanSet.cc:49
double x
STL class.
T begin(T... args)
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:496

◆ doComputeImage()

double lsst::afw::math::FixedKernel::doComputeImage ( lsst::afw::image::Image< Pixel > &  image,
bool  doNormalize 
) const
overrideprotectedvirtual

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.

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

Implements lsst::afw::math::Kernel.

Definition at line 104 of file FixedKernel.cc.

104  {
105  double multFactor = 1.0;
106  double imSum = this->_sum;
107  if (doNormalize) {
108  if (imSum == 0) {
109  throw LSST_EXCEPT(pexExcept::OverflowError, "Cannot normalize; kernel sum is 0");
110  }
111  multFactor = 1.0 / static_cast<double>(this->_sum);
112  imSum = 1.0;
113  }
114 
115  typedef image::Image<Pixel>::x_iterator XIter;
116 
117  for (int y = 0; y != this->getHeight(); ++y) {
118  for (XIter imPtr = image.row_begin(y), imEnd = image.row_end(y), kPtr = this->_image.row_begin(y);
119  imPtr != imEnd; ++imPtr, ++kPtr) {
120  imPtr[0] = multFactor * kPtr[0];
121  }
122  }
123 
124  return imSum;
125 }
int getHeight() const
Return the Kernel&#39;s height.
Definition: Kernel.h:230
int y
Definition: SpanSet.cc:49
x_iterator row_begin(int y) const
Return an x_iterator to the start of the y&#39;th row.
Definition: ImageBase.h:438
Reports when the result of an arithmetic operation is too large for the destination type...
Definition: Runtime.h:124
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
x_iterator row_end(int y) const
Return an x_iterator to the end of the y&#39;th row.
Definition: ImageBase.h:441
A class to represent a 2-dimensional array of pixels.
Definition: Image.h:58

◆ dynamicCast() [1/2]

Dynamically cast a shared_ptr.

Dynamically cast a shared pointer and raise on failure.

You must provide an explicit template instantiation in the .cc file for each class that inherits from PersistableFacade. Designed to work around RTTI issues on macOS with hidden symbols;

Exceptions
lsst::pex::exceptions::LogicErrorif the cast fails

param[in] ptr The pointer to be cast.

Returns
The cast pointer.
Exceptions
lsst::pex::exceptions::TypeErrorIf the dynamic cast fails.

Definition at line 18 of file Persistable.cc.

18  {
20  if (!result) {
21  throw LSST_EXCEPT(pex::exceptions::TypeError, "Dynamic pointer cast failed");
22  }
23  return result;
24 }
uint64_t * ptr
Definition: RangeSet.cc:88
T dynamic_pointer_cast(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
py::object result
Definition: _schema.cc:429

◆ dynamicCast() [2/2]

Dynamically cast a shared_ptr.

Dynamically cast a shared pointer and raise on failure.

You must provide an explicit template instantiation in the .cc file for each class that inherits from PersistableFacade. Designed to work around RTTI issues on macOS with hidden symbols;

Exceptions
lsst::pex::exceptions::LogicErrorif the cast fails

param[in] ptr The pointer to be cast.

Returns
The cast pointer.
Exceptions
lsst::pex::exceptions::TypeErrorIf the dynamic cast fails.

Definition at line 18 of file Persistable.cc.

18  {
20  if (!result) {
21  throw LSST_EXCEPT(pex::exceptions::TypeError, "Dynamic pointer cast failed");
22  }
23  return result;
24 }
uint64_t * ptr
Definition: RangeSet.cc:88
T dynamic_pointer_cast(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
py::object result
Definition: _schema.cc:429

◆ getBBox()

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

return parent bounding box, with XY0 = -center

Definition at line 262 of file Kernel.h.

◆ getCacheSize()

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

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 450 of file Kernel.h.

450 { return 0; };

◆ getCtr()

lsst::geom::Point2I lsst::afw::math::Kernel::getCtr ( ) const
inlineinherited

Return index of kernel's center.

Definition at line 235 of file Kernel.h.

235 { return lsst::geom::Point2I(_ctrX, _ctrY); }
Point< int, 2 > Point2I
Definition: Point.h:321

◆ getCtrX()

int lsst::afw::math::Kernel::getCtrX ( ) const
inlineinherited

Return x index of kernel's center.

Deprecated:
Use getCtr instead

Definition at line 244 of file Kernel.h.

244  {
245  return _ctrX;
246  }

◆ getCtrY()

int lsst::afw::math::Kernel::getCtrY ( ) const
inlineinherited

Return y index of kernel's center.

Deprecated:
Use getCtr instead

Definition at line 255 of file Kernel.h.

255  {
256  return _ctrY;
257  }

◆ getDimensions()

lsst::geom::Extent2I const lsst::afw::math::Kernel::getDimensions ( ) const
inlineinherited

Return the Kernel's dimensions (width, height)

Definition at line 213 of file Kernel.h.

213 { return lsst::geom::Extent2I(_width, _height); }
Extent< int, 2 > Extent2I
Definition: Extent.h:397

◆ getHeight()

int lsst::afw::math::Kernel::getHeight ( ) const
inlineinherited

Return the Kernel's height.

Definition at line 230 of file Kernel.h.

230 { return _height; }

◆ getKernelParameter()

virtual double lsst::afw::math::Kernel::getKernelParameter ( unsigned int  i) const
inlinevirtualinherited

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 300 of file Kernel.h.

300 { return getKernelParameters()[i]; }
virtual std::vector< double > getKernelParameters() const
Return the current kernel parameters.
Definition: Kernel.cc:175

◆ getKernelParameters()

std::vector< double > lsst::afw::math::Kernel::getKernelParameters ( ) const
virtualinherited

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 175 of file Kernel.cc.

◆ getNKernelParameters()

unsigned int lsst::afw::math::Kernel::getNKernelParameters ( ) const
inlineinherited

Return the number of kernel parameters (0 if none)

Definition at line 269 of file Kernel.h.

269 { return _nKernelParams; }

◆ getNSpatialParameters()

int lsst::afw::math::Kernel::getNSpatialParameters ( ) const
inlineinherited

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

Definition at line 274 of file Kernel.h.

274  {
275  return this->isSpatiallyVarying() ? _spatialFunctionList[0]->getNParameters() : 0;
276  }
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:380
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:496

◆ getPersistenceName()

std::string lsst::afw::math::FixedKernel::getPersistenceName ( ) const
overrideprotectedvirtual

Return the unique name used to persist this object and look up its factory.

Must be less than ArchiveIndexSchema::MAX_NAME_LENGTH characters.

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

Definition at line 179 of file FixedKernel.cc.

179 { return getFixedKernelPersistenceName(); }

◆ getPythonModule()

std::string lsst::afw::math::Kernel::getPythonModule ( ) const
overrideprotectedvirtualinherited

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 235 of file Kernel.cc.

235 { return "lsst.afw.math"; }

◆ getSpatialFunction()

Kernel::SpatialFunctionPtr lsst::afw::math::Kernel::getSpatialFunction ( unsigned int  index) const
inherited

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

Parameters
indexindex of desired spatial function; must be in range [0, number spatial parameters - 1]
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

Definition at line 153 of file Kernel.cc.

153  {
154  if (index >= _spatialFunctionList.size()) {
155  if (!this->isSpatiallyVarying()) {
156  throw LSST_EXCEPT(pexExcept::InvalidParameterError, "kernel is not spatially varying");
157  } else {
158  std::ostringstream errStream;
159  errStream << "index = " << index << "; must be < , " << _spatialFunctionList.size();
161  }
162  }
163  return _spatialFunctionList[index]->clone();
164 }
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:380
T str(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:496
Reports invalid arguments.
Definition: Runtime.h:66

◆ getSpatialFunctionList()

std::vector< Kernel::SpatialFunctionPtr > lsst::afw::math::Kernel::getSpatialFunctionList ( ) const
inherited

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 166 of file Kernel.cc.

166  {
167  std::vector<SpatialFunctionPtr> spFuncCopyList;
169  spFuncIter != _spatialFunctionList.end(); ++spFuncIter) {
170  spFuncCopyList.push_back((**spFuncIter).clone());
171  }
172  return spFuncCopyList;
173 }
T push_back(T... args)
STL class.
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:496

◆ getSpatialParameters()

std::vector<std::vector<double> > lsst::afw::math::Kernel::getSpatialParameters ( ) const
inlineinherited

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

Definition at line 368 of file Kernel.h.

368  {
369  std::vector<std::vector<double>> spatialParams;
371  for (; spFuncIter != _spatialFunctionList.end(); ++spFuncIter) {
372  spatialParams.push_back((*spFuncIter)->getParameters());
373  }
374  return spatialParams;
375  }
T push_back(T... args)
STL class.
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:496

◆ getSum()

virtual Pixel lsst::afw::math::FixedKernel::getSum ( ) const
inlinevirtual

Definition at line 551 of file Kernel.h.

551 { return _sum; }

◆ getWidth()

int lsst::afw::math::Kernel::getWidth ( ) const
inlineinherited

Return the Kernel's width.

Definition at line 225 of file Kernel.h.

225 { return _width; }

◆ growBBox()

lsst::geom::Box2I lsst::afw::math::Kernel::growBBox ( lsst::geom::Box2I const &  bbox) const
inherited

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 177 of file Kernel.cc.

177  {
178  return lsst::geom::Box2I(
180  lsst::geom::Extent2I(bbox.getDimensions() + getDimensions() - lsst::geom::Extent2I(1, 1)));
181 }
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
lsst::geom::Point2I getCtr() const
Return index of kernel&#39;s center.
Definition: Kernel.h:235
lsst::geom::Extent2I const getDimensions() const
Return the Kernel&#39;s dimensions (width, height)
Definition: Kernel.h:213
Extent< int, 2 > Extent2I
Definition: Extent.h:397

◆ isPersistable()

bool lsst::afw::math::FixedKernel::isPersistable ( ) const
inlineoverridevirtualnoexcept

Return true if this particular object can be persisted using afw::table::io.

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

Definition at line 553 of file Kernel.h.

553 { return true; }

◆ isSpatiallyVarying()

bool lsst::afw::math::Kernel::isSpatiallyVarying ( ) const
inlineinherited

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

Definition at line 380 of file Kernel.h.

380 { return _spatialFunctionList.size() != 0; }
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:496

◆ operator=() [1/2]

FixedKernel& lsst::afw::math::FixedKernel::operator= ( const FixedKernel )
delete

◆ operator=() [2/2]

FixedKernel& lsst::afw::math::FixedKernel::operator= ( FixedKernel &&  )
delete

◆ readFits() [1/6]

static std::shared_ptr<FixedKernel > lsst::afw::table::io::PersistableFacade< FixedKernel >::readFits ( fits::Fits fitsfile)
inlinestaticinherited

Read an object from an already open FITS object.

Parameters
[in]fitsfileFITS object to read from, already positioned at the desired HDU.

Definition at line 183 of file Persistable.h.

183  {
184  return dynamicCast(Persistable::_readFits(fitsfile));
185  }
static std::shared_ptr< FixedKernel > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18

◆ readFits() [2/6]

static std::shared_ptr<Kernel > lsst::afw::table::io::PersistableFacade< Kernel >::readFits ( fits::Fits fitsfile)
inlinestaticinherited

Read an object from an already open FITS object.

Parameters
[in]fitsfileFITS object to read from, already positioned at the desired HDU.

Definition at line 183 of file Persistable.h.

183  {
184  return dynamicCast(Persistable::_readFits(fitsfile));
185  }
static std::shared_ptr< Kernel > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18

◆ readFits() [3/6]

static std::shared_ptr<Kernel > lsst::afw::table::io::PersistableFacade< Kernel >::readFits ( std::string const &  fileName,
int  hdu = fits::DEFAULT_HDU 
)
inlinestaticinherited

Read an object from a regular FITS file.

Parameters
[in]fileNameName of the file to read.
[in]hduHDU to read, where 0 is the primary. The special value of afw::fits::DEFAULT_HDU skips the primary HDU if it is empty.

Definition at line 194 of file Persistable.h.

194  {
195  return dynamicCast(Persistable::_readFits(fileName, hdu));
196  }
static std::shared_ptr< Kernel > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18

◆ readFits() [4/6]

static std::shared_ptr<FixedKernel > lsst::afw::table::io::PersistableFacade< FixedKernel >::readFits ( std::string const &  fileName,
int  hdu = fits::DEFAULT_HDU 
)
inlinestaticinherited

Read an object from a regular FITS file.

Parameters
[in]fileNameName of the file to read.
[in]hduHDU to read, where 0 is the primary. The special value of afw::fits::DEFAULT_HDU skips the primary HDU if it is empty.

Definition at line 194 of file Persistable.h.

194  {
195  return dynamicCast(Persistable::_readFits(fileName, hdu));
196  }
static std::shared_ptr< FixedKernel > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18

◆ readFits() [5/6]

static std::shared_ptr<FixedKernel > lsst::afw::table::io::PersistableFacade< FixedKernel >::readFits ( fits::MemFileManager manager,
int  hdu = fits::DEFAULT_HDU 
)
inlinestaticinherited

Read an object from a FITS file in memory.

Parameters
[in]managerManager for the memory to read from.
[in]hduHDU to read, where 0 is the primary. The special value of afw::fits::DEFAULT_HDU skips the primary HDU if it is empty.

Definition at line 205 of file Persistable.h.

205  {
206  return dynamicCast(Persistable::_readFits(manager, hdu));
207  }
static std::shared_ptr< FixedKernel > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18

◆ readFits() [6/6]

static std::shared_ptr<Kernel > lsst::afw::table::io::PersistableFacade< Kernel >::readFits ( fits::MemFileManager manager,
int  hdu = fits::DEFAULT_HDU 
)
inlinestaticinherited

Read an object from a FITS file in memory.

Parameters
[in]managerManager for the memory to read from.
[in]hduHDU to read, where 0 is the primary. The special value of afw::fits::DEFAULT_HDU skips the primary HDU if it is empty.

Definition at line 205 of file Persistable.h.

205  {
206  return dynamicCast(Persistable::_readFits(manager, hdu));
207  }
static std::shared_ptr< Kernel > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18

◆ resized()

std::shared_ptr< Kernel > lsst::afw::math::FixedKernel::resized ( int  width,
int  height 
) const
overridevirtual

Return a pointer to a clone with specified kernel dimensions.

Parameters
widthNumber of columns in pixels
heightNumber of rows in pixels
Returns
a pointer to a clone with new dimensions.

Must be implemented by derived classes.

Implements lsst::afw::math::Kernel.

Definition at line 67 of file FixedKernel.cc.

67  {
68  if ((width <= 0) || (height <= 0)) {
70  os << "Cannot create FixedKernel with dimensions (" << width << ", " << height << "). ";
72  }
73  if ((width - getWidth()) % 2 || (height - getHeight()) % 2) {
75  os << "Cannot resize FixedKernel from (" << getWidth() << ", " << getHeight() << ") to (" << width
76  << ", " << height << "), because at least one dimension would change by an odd value.";
78  }
79 
80  lsst::geom::Box2I bboxNew(lsst::geom::Point2I((1 - width) / 2, (1 - height) / 2),
81  lsst::geom::Extent2I(width, height));
82  std::shared_ptr<image::Image<Pixel>> imNew = std::make_shared<image::Image<Pixel>>(bboxNew);
83 
84  // getBBox() instantiates a new BBox from member data _width, _height, _ctrX, _ctrY
85  // so modifying it is OK
86  lsst::geom::Box2I bboxIntersect = getBBox();
87  bboxIntersect.clip(bboxNew);
88 
89  // Kernel (this) and member image (this->_image) do not always have same XY0.
90  // Member image of resized kernel will not have same BBox as orig,
91  // but BBox of member image is ignored by the kernel.
92  int offsetX = _image.getX0() - getBBox().getMinX();
93  int offsetY = _image.getY0() - getBBox().getMinY();
94  lsst::geom::Box2I bboxIntersectShifted = lsst::geom::Box2I(
95  lsst::geom::Point2I(bboxIntersect.getMinX() + offsetX, bboxIntersect.getMinY() + offsetY),
96  bboxIntersect.getDimensions());
97  image::Image<Pixel> imIntersect = image::Image<Pixel>(_image, bboxIntersectShifted);
98 
99  imNew->assign(imIntersect, bboxIntersect);
100  std::shared_ptr<Kernel> retPtr = std::make_shared<FixedKernel>(*imNew);
101  return retPtr;
102 }
int getHeight() const
Return the Kernel&#39;s height.
Definition: Kernel.h:230
int getX0() const
Return the image&#39;s column-origin.
Definition: ImageBase.h:343
lsst::geom::Box2I getBBox() const
return parent bounding box, with XY0 = -center
Definition: Kernel.h:262
T str(T... args)
int getWidth() const
Return the Kernel&#39;s width.
Definition: Kernel.h:225
int getMinX() const noexcept
Definition: Box.h:157
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
int getY0() const
Return the image&#39;s row-origin.
Definition: ImageBase.h:351
Reports invalid arguments.
Definition: Runtime.h:66
std::ostream * os
Definition: Schema.cc:746
An integer coordinate rectangle.
Definition: Box.h:55
int getMinY() const noexcept
Definition: Box.h:158

◆ setCtr()

void lsst::afw::math::Kernel::setCtr ( lsst::geom::Point2I  ctr)
inlineinherited

Set index of kernel's center.

Definition at line 335 of file Kernel.h.

335  {
336  _ctrX = ctr.getX();
337  _ctrY = ctr.getY();
338  _setKernelXY();
339  }

◆ setCtrX()

void lsst::afw::math::Kernel::setCtrX ( int  ctrX)
inlineinherited

Set x index of kernel's center.

Deprecated:
Use setCtr instead

Definition at line 348 of file Kernel.h.

348  {
349  _ctrX = ctrX;
350  _setKernelXY();
351  }

◆ setCtrY()

void lsst::afw::math::Kernel::setCtrY ( int  ctrY)
inlineinherited

Set y index of kernel's center.

Deprecated:
Use setCtr instead

Definition at line 360 of file Kernel.h.

360  {
361  _ctrY = ctrY;
362  _setKernelXY();
363  }

◆ setDimensions()

void lsst::afw::math::Kernel::setDimensions ( lsst::geom::Extent2I  dims)
inlineinherited

Definition at line 215 of file Kernel.h.

215  {
216  _width = dims.getX();
217  _height = dims.getY();
218  }

◆ setHeight()

void lsst::afw::math::Kernel::setHeight ( int  height)
inlineinherited

Definition at line 220 of file Kernel.h.

220 { _height = height; }

◆ setKernelParameter()

void lsst::afw::math::Kernel::setKernelParameter ( unsigned int  ind,
double  value 
) const
protectedvirtualinherited

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 224 of file Kernel.cc.

224  {
225  throw LSST_EXCEPT(pexExcept::InvalidParameterError, "Kernel has no kernel parameters");
226 }
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
Reports invalid arguments.
Definition: Runtime.h:66

◆ setKernelParameters() [1/2]

void lsst::afw::math::Kernel::setKernelParameters ( std::vector< double > const &  params)
inlineinherited

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 388 of file Kernel.h.

388  {
389  if (this->isSpatiallyVarying()) {
390  throw LSST_EXCEPT(lsst::pex::exceptions::RuntimeError, "Kernel is spatially varying");
391  }
392  const unsigned int nParams = this->getNKernelParameters();
393  if (nParams != params.size()) {
395  (boost::format("Number of parameters is wrong, saw %d expected %d") % nParams %
396  params.size())
397  .str());
398  }
399  for (unsigned int ii = 0; ii < nParams; ++ii) {
400  this->setKernelParameter(ii, params[ii]);
401  }
402  }
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
virtual void setKernelParameter(unsigned int ind, double value) const
Set one kernel parameter.
Definition: Kernel.cc:224
bool isSpatiallyVarying() const
Return true iff the kernel is spatially varying (has a spatial function)
Definition: Kernel.h:380
unsigned int getNKernelParameters() const
Return the number of kernel parameters (0 if none)
Definition: Kernel.h:269
T size(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
Reports invalid arguments.
Definition: Runtime.h:66
Reports errors that are due to events beyond the control of the program.
Definition: Runtime.h:104

◆ setKernelParameters() [2/2]

void lsst::afw::math::Kernel::setKernelParameters ( std::pair< double, double > const &  params)
inlineinherited

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 410 of file Kernel.h.

410  {
411  this->setKernelParameter(0, params.first);
412  this->setKernelParameter(1, params.second);
413  }
virtual void setKernelParameter(unsigned int ind, double value) const
Set one kernel parameter.
Definition: Kernel.cc:224

◆ setKernelParametersFromSpatialModel()

void lsst::afw::math::Kernel::setKernelParametersFromSpatialModel ( double  x,
double  y 
) const
protectedinherited

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 228 of file Kernel.cc.

228  {
230  for (int ii = 0; funcIter != _spatialFunctionList.end(); ++funcIter, ++ii) {
231  this->setKernelParameter(ii, (*(*funcIter))(x, y));
232  }
233 }
virtual void setKernelParameter(unsigned int ind, double value) const
Set one kernel parameter.
Definition: Kernel.cc:224
int y
Definition: SpanSet.cc:49
double x
STL class.
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:496

◆ setSpatialParameters()

void lsst::afw::math::Kernel::setSpatialParameters ( const std::vector< std::vector< double >>  params)
inherited

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 119 of file Kernel.cc.

119  {
120  // Check params size before changing anything
121  unsigned int nKernelParams = this->getNKernelParameters();
122  if (params.size() != nKernelParams) {
123  throw LSST_EXCEPT(
125  (boost::format("params has %d entries instead of %d") % params.size() % nKernelParams).str());
126  }
127  unsigned int nSpatialParams = this->getNSpatialParameters();
128  for (unsigned int ii = 0; ii < nKernelParams; ++ii) {
129  if (params[ii].size() != nSpatialParams) {
131  (boost::format("params[%d] has %d entries instead of %d") % ii %
132  params[ii].size() % nSpatialParams)
133  .str());
134  }
135  }
136  // Set parameters
137  if (nSpatialParams > 0) {
138  for (unsigned int ii = 0; ii < nKernelParams; ++ii) {
139  this->_spatialFunctionList[ii]->setParameters(params[ii]);
140  }
141  }
142 }
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
unsigned int getNKernelParameters() const
Return the number of kernel parameters (0 if none)
Definition: Kernel.h:269
T size(T... args)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
std::vector< SpatialFunctionPtr > _spatialFunctionList
Definition: Kernel.h:496
int getNSpatialParameters() const
Return the number of spatial parameters (0 if not spatially varying)
Definition: Kernel.h:274
Reports invalid arguments.
Definition: Runtime.h:66

◆ setWidth()

void lsst::afw::math::Kernel::setWidth ( int  width)
inlineinherited

Definition at line 219 of file Kernel.h.

219 { _width = width; }

◆ shrinkBBox()

lsst::geom::Box2I lsst::afw::math::Kernel::shrinkBBox ( lsst::geom::Box2I const &  bbox) const
inherited

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 183 of file Kernel.cc.

183  {
184  if ((bbox.getWidth() < getWidth()) || ((bbox.getHeight() < getHeight()))) {
186  os << "bbox dimensions = " << bbox.getDimensions() << " < (" << getWidth() << ", " << getHeight()
187  << ") in one or both dimensions";
189  }
190  return lsst::geom::Box2I(
191  lsst::geom::Point2I(bbox.getMinX() + getCtrX(), bbox.getMinY() + getCtrY()),
192  lsst::geom::Extent2I(bbox.getWidth() + 1 - getWidth(), bbox.getHeight() + 1 - getHeight()));
193 }
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
int getHeight() const
Return the Kernel&#39;s height.
Definition: Kernel.h:230
int getCtrX() const
Return x index of kernel&#39;s center.
Definition: Kernel.h:244
int getCtrY() const
Return y index of kernel&#39;s center.
Definition: Kernel.h:255
T str(T... args)
int getWidth() const
Return the Kernel&#39;s width.
Definition: Kernel.h:225
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
Reports invalid arguments.
Definition: Runtime.h:66
std::ostream * os
Definition: Schema.cc:746

◆ toString()

std::string lsst::afw::math::FixedKernel::toString ( std::string const &  prefix = "") const
overridevirtual

Return a string representation of the kernel.

Reimplemented from lsst::afw::math::Kernel.

Definition at line 127 of file FixedKernel.cc.

127  {
129  os << prefix << "FixedKernel:" << std::endl;
130  os << prefix << "..sum: " << _sum << std::endl;
131  os << Kernel::toString(prefix + "\t");
132  return os.str();
133 }
T endl(T... args)
T str(T... args)
std::string prefix
Definition: SchemaMapper.cc:79
std::ostream * os
Definition: Schema.cc:746
virtual std::string toString(std::string const &prefix="") const
Return a string representation of the kernel.
Definition: Kernel.cc:195

◆ write()

void lsst::afw::math::FixedKernel::write ( OutputArchiveHandle handle) const
overrideprotectedvirtual

Write the object to one or more catalogs.

The handle object passed to this function provides an interface for adding new catalogs and adding nested objects to the same archive (while checking for duplicates). See OutputArchiveHandle for more information.

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

Definition at line 181 of file FixedKernel.cc.

181  {
182  FixedKernelPersistenceHelper const keys(getDimensions());
183  std::shared_ptr<afw::table::BaseRecord> record = keys.write(handle, *this);
184  (*record)[keys.image] = ndarray::flatten<1>(ndarray::copy(_image.getArray()));
185 }
lsst::geom::Extent2I const getDimensions() const
Return the Kernel&#39;s dimensions (width, height)
Definition: Kernel.h:213

◆ writeFits() [1/3]

void lsst::afw::table::io::Persistable::writeFits ( std::string const &  fileName,
std::string const &  mode = "w" 
) const
inherited

Write the object to a regular FITS file.

Parameters
[in]fileNameName of the file to write to.
[in]modeIf "w", any existing file with the given name will be overwritten. If "a", new HDUs will be appended to an existing file.

Definition at line 24 of file Persistable.cc.

24  {
25  fits::Fits fitsfile(fileName, mode, fits::Fits::AUTO_CLOSE | fits::Fits::AUTO_CHECK);
26  writeFits(fitsfile);
27 }
void writeFits(std::string const &fileName, std::string const &mode="w") const
Write the object to a regular FITS file.
Definition: Persistable.cc:24

◆ writeFits() [2/3]

void lsst::afw::table::io::Persistable::writeFits ( fits::MemFileManager manager,
std::string const &  mode = "w" 
) const
inherited

Write the object to a FITS image in memory.

Parameters
[in]managerName of the file to write to.
[in]modeIf "w", any existing file with the given name will be overwritten. If "a", new HDUs will be appended to an existing file.

Definition at line 29 of file Persistable.cc.

29  {
30  fits::Fits fitsfile(manager, mode, fits::Fits::AUTO_CLOSE | fits::Fits::AUTO_CHECK);
31  writeFits(fitsfile);
32 }
void writeFits(std::string const &fileName, std::string const &mode="w") const
Write the object to a regular FITS file.
Definition: Persistable.cc:24

◆ writeFits() [3/3]

void lsst::afw::table::io::Persistable::writeFits ( fits::Fits fitsfile) const
inherited

Write the object to an already-open FITS object.

Parameters
[in]fitsfileOpen FITS object to write to.

Definition at line 18 of file Persistable.cc.

18  {
19  OutputArchive archive;
20  archive.put(this);
21  archive.writeFits(fitsfile);
22 }

Member Data Documentation

◆ _spatialFunctionList

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

Definition at line 496 of file Kernel.h.


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