LSST Applications
21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
|
A virtual base class to evaluate image background levels. More...
#include <Background.h>
Public Types | |
using | InternalPixelT = float |
type used for any internal images, and returned by getApproximate More... | |
Public Member Functions | |
Background (Background const &)=delete | |
Background (Background &&)=delete | |
virtual | ~Background ()=default |
dtor More... | |
Background & | operator= (Background const &)=delete |
Background & | operator= (Background &&)=delete |
virtual Background & | operator+= (float const delta)=0 |
Add a constant level to a background. More... | |
virtual Background & | operator-= (float const delta)=0 |
Subtract a constant level from a background. More... | |
template<typename PixelT > | |
std::shared_ptr< lsst::afw::image::Image< PixelT > > | getImage (Interpolate::Style const interpStyle, UndersampleStyle const undersampleStyle=THROW_EXCEPTION) const |
Method to interpolate and return the background for entire image. More... | |
template<typename PixelT > | |
std::shared_ptr< lsst::afw::image::Image< PixelT > > | getImage (std::string const &interpStyle, std::string const &undersampleStyle="THROW_EXCEPTION") const |
Method to interpolate and return the background for entire image. More... | |
template<typename PixelT > | |
std::shared_ptr< lsst::afw::image::Image< PixelT > > | getImage (lsst::geom::Box2I const &bbox, Interpolate::Style const interpStyle, UndersampleStyle const undersampleStyle=THROW_EXCEPTION) const |
template<typename PixelT > | |
std::shared_ptr< lsst::afw::image::Image< PixelT > > | getImage (lsst::geom::Box2I const &bbox, std::string const &interpStyle, std::string const &undersampleStyle="THROW_EXCEPTION") const |
template<typename PixelT > | |
std::shared_ptr< lsst::afw::image::Image< PixelT > > | getImage () const |
Method to interpolate and return the background for entire image. More... | |
Interpolate::Style | getAsUsedInterpStyle () const |
Return the Interpolate::Style that we actually used in the last call to getImage() More... | |
UndersampleStyle | getAsUsedUndersampleStyle () const |
Return the UndersampleStyle that we actually used in the last call to getImage() More... | |
std::shared_ptr< math::Approximate< InternalPixelT > > | getApproximate (ApproximateControl const &actrl, UndersampleStyle const undersampleStyle=THROW_EXCEPTION) const |
Method to return an approximation to the background. More... | |
lsst::geom::Box2I | getImageBBox () const |
Return the input image's (PARENT) bounding box. More... | |
std::shared_ptr< BackgroundControl > | getBackgroundControl () |
std::shared_ptr< BackgroundControl const > | getBackgroundControl () const |
Protected Member Functions | |
template<typename ImageT > | |
Background (ImageT const &img, BackgroundControl const &bgCtrl) | |
Constructor for Background. More... | |
Background (lsst::geom::Box2I const imageBBox, int const nx, int const ny) | |
Create a Background without any values in it. More... | |
Protected Attributes | |
lsst::geom::Box2I | _imgBBox |
size and origin of input image More... | |
std::shared_ptr< BackgroundControl > | _bctrl |
control info set by user. More... | |
Interpolate::Style | _asUsedInterpStyle |
the style we actually used More... | |
UndersampleStyle | _asUsedUndersampleStyle |
the undersampleStyle we actually used More... | |
std::vector< double > | _xcen |
x center pix coords of sub images More... | |
std::vector< double > | _ycen |
y center ... More... | |
std::vector< int > | _xorig |
x origin pix coords of sub images More... | |
std::vector< int > | _yorig |
y origin ... More... | |
std::vector< int > | _xsize |
x size of sub images More... | |
std::vector< int > | _ysize |
y size ... More... | |
A virtual base class to evaluate image background levels.
Definition at line 235 of file Background.h.
using lsst::afw::math::Background::InternalPixelT = float |
type used for any internal images, and returned by getApproximate
Definition at line 262 of file Background.h.
|
explicitprotected |
Constructor for Background.
Estimate the statistical properties of the Image in a grid of cells; we'll later call getImage() to interpolate those values, creating an image the same size as the original
img | ImageT (or MaskedImage) whose properties we want |
bgCtrl | Control how the Background is estimated |
Definition at line 44 of file Background.cc.
|
explicitprotected |
Create a Background without any values in it.
imageBBox | Bounding box for image to be created by getImage() |
nx | Number of samples in x-direction |
ny | Number of samples in y-direction |
Definition at line 69 of file Background.cc.
|
delete |
|
delete |
|
virtualdefault |
dtor
|
inline |
Method to return an approximation to the background.
actrl | Approximation style |
undersampleStyle | Behaviour if there are too few points |
Definition at line 348 of file Background.h.
|
inline |
Return the Interpolate::Style that we actually used in the last call to getImage()
N.b. Interpolate can fallback to a lower order if there aren't enough samples
Definition at line 337 of file Background.h.
|
inline |
Return the UndersampleStyle that we actually used in the last call to getImage()
Definition at line 341 of file Background.h.
|
inline |
Definition at line 359 of file Background.h.
|
inline |
Definition at line 360 of file Background.h.
|
inline |
Method to interpolate and return the background for entire image.
Definition at line 329 of file Background.h.
|
inline |
Method to interpolate and return the background for entire image.
interpStyle | Style of the interpolation |
undersampleStyle | Behaviour if there are too few points |
Definition at line 283 of file Background.h.
|
inline |
bbox | Bounding box for sub-image |
interpStyle | Style of the interpolation |
undersampleStyle | Behaviour if there are too few points |
Definition at line 307 of file Background.h.
|
inline |
bbox | Bounding box for sub-image |
interpStyle | Style of the interpolation |
undersampleStyle | Behaviour if there are too few points |
Definition at line 318 of file Background.h.
|
inline |
Method to interpolate and return the background for entire image.
interpStyle | Style of the interpolation |
undersampleStyle | Behaviour if there are too few points |
Definition at line 296 of file Background.h.
|
inline |
|
pure virtual |
Add a constant level to a background.
Implemented in lsst::afw::math::BackgroundMI.
|
pure virtual |
Subtract a constant level from a background.
Implemented in lsst::afw::math::BackgroundMI.
|
delete |
|
delete |
|
mutableprotected |
the style we actually used
Definition at line 365 of file Background.h.
|
mutableprotected |
the undersampleStyle we actually used
Definition at line 366 of file Background.h.
|
protected |
control info set by user.
Definition at line 364 of file Background.h.
|
protected |
size and origin of input image
Definition at line 363 of file Background.h.
|
protected |
x center pix coords of sub images
Definition at line 368 of file Background.h.
|
protected |
x origin pix coords of sub images
Definition at line 370 of file Background.h.
|
protected |
x size of sub images
Definition at line 372 of file Background.h.
|
protected |
y center ...
Definition at line 369 of file Background.h.
|
protected |
y origin ...
Definition at line 371 of file Background.h.
|
protected |
y size ...
Definition at line 373 of file Background.h.