LSST Applications g04a91732dc+146a938ab0,g07dc498a13+80b84b0d75,g0fba68d861+0decac7526,g1409bbee79+80b84b0d75,g1a7e361dbc+80b84b0d75,g1fd858c14a+f6e422e056,g20f46db602+483a84333a,g21d47ad084+4a6cd485de,g35bb328faa+fcb1d3bbc8,g42c1b31a95+a1301e4c20,g4d39ba7253+9b833be27e,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g60b5630c4e+9b833be27e,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+790117df0f,g89139ef638+80b84b0d75,g8d6b6b353c+9b833be27e,g9125e01d80+fcb1d3bbc8,g989de1cb63+80b84b0d75,g9f33ca652e+9c6b68d7f3,ga9baa6287d+9b833be27e,gaaedd4e678+80b84b0d75,gabe3b4be73+1e0a283bba,gb1101e3267+9f3571abad,gb58c049af0+f03b321e39,gb90eeb9370+691e4ab549,gc741bbaa4f+5f483edd21,gcf25f946ba+790117df0f,gd24842266e+c54cdbdbd2,gd315a588df+5b65d88fe4,gd6cbbdb0b4+c8606af20c,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+c99546153d,ge278dab8ac+932305ba37,ge82c20c137+76d20ab76d,w.2025.10
LSST Data Management Base Package
|
Class stored in SpatialCells for spatial Kernel fitting. More...
#include <KernelCandidate.h>
Public Types | |
enum | CandidateSwitch { ORIG = 0 , PCA = 1 , RECENT = 2 } |
typedef afw::image::Image< afw::math::Kernel::Pixel > | ImageT |
typedef _PixelT | PixelT |
typedef std::shared_ptr< KernelCandidate > | Ptr |
typedef std::shared_ptr< afw::image::MaskedImage< PixelT > > | MaskedImagePtr |
typedef std::shared_ptr< afw::image::Image< afw::image::VariancePixel > > | VariancePtr |
typedef std::shared_ptr< afw::table::SourceRecord > | SourcePtr |
enum | Status { BAD = 0 , GOOD = 1 , UNKNOWN = 2 } |
Public Member Functions | |
KernelCandidate (float const xCenter, float const yCenter, MaskedImagePtr const &templateMaskedImage, MaskedImagePtr const &scienceMaskedImage, daf::base::PropertySet const &ps) | |
Constructor. | |
KernelCandidate (SourcePtr const &source, MaskedImagePtr const &templateMaskedImage, MaskedImagePtr const &scienceMaskedImage, daf::base::PropertySet const &ps) | |
Constructor. | |
virtual | ~KernelCandidate () |
Destructor. | |
double | getCandidateRating () const |
Return Candidate rating. | |
SourcePtr | getSource () const |
Return the original source. | |
MaskedImagePtr | getTemplateMaskedImage () |
Return pointers to the image pixels used in kernel determination. | |
MaskedImagePtr | getScienceMaskedImage () |
std::shared_ptr< afw::math::Kernel > | getKernel (CandidateSwitch cand) const |
Return results of kernel solution. | |
double | getBackground (CandidateSwitch cand) const |
double | getKsum (CandidateSwitch cand) const |
std::shared_ptr< ImageT > | getKernelImage (CandidateSwitch cand) const |
std::shared_ptr< ImageT const > | getImage () const |
std::shared_ptr< StaticKernelSolution< PixelT > > | getKernelSolution (CandidateSwitch cand) const |
afw::image::MaskedImage< PixelT > | getDifferenceImage (CandidateSwitch cand) |
Calculate associated difference image using internal solutions. | |
afw::image::MaskedImage< PixelT > | getDifferenceImage (std::shared_ptr< afw::math::Kernel > kernel, double background) |
Calculate associated difference image using input kernel and background. | |
bool | isInitialized () const |
void | build (afw::math::KernelList const &basisList) |
Core functionality of KernelCandidate, to build and fill a KernelSolution. | |
void | build (afw::math::KernelList const &basisList, Eigen::MatrixXd const &hMat) |
double | getChi2 () const |
Return the candidate's chi^2. | |
void | setChi2 (double chi2) |
Set the candidate's chi^2. | |
float | getXCenter () const |
Return the object's column-centre. | |
float | getYCenter () const |
Return the object's row-centre. | |
virtual bool | instantiate () |
Do anything needed to make this candidate usable. | |
virtual void | setCandidateRating (double) |
Set the candidate's rating. | |
int | getId () const |
Return the candidate's unique ID. | |
Status | getStatus () const |
Return the candidate's status. | |
void | setStatus (Status status) |
Set the candidate's status. | |
virtual bool | isBad () const |
Is this candidate unacceptable? | |
Static Public Member Functions | |
static void | setWidth (int width) |
Set the width of the image that getImage should return. | |
static int | getWidth () |
Return the width of the image that getImage should return. | |
static void | setHeight (int height) |
Set the height of the image that getImage should return. | |
static int | getHeight () |
Return the height of the image that getImage should return. | |
Class stored in SpatialCells for spatial Kernel fitting.
Definition at line 39 of file KernelCandidate.h.
typedef afw::image::Image<afw::math::Kernel::Pixel> lsst::ip::diffim::KernelCandidate< _PixelT >::ImageT |
Definition at line 41 of file KernelCandidate.h.
typedef std::shared_ptr<afw::image::MaskedImage<PixelT> > lsst::ip::diffim::KernelCandidate< _PixelT >::MaskedImagePtr |
Definition at line 45 of file KernelCandidate.h.
typedef _PixelT lsst::ip::diffim::KernelCandidate< _PixelT >::PixelT |
Definition at line 42 of file KernelCandidate.h.
typedef std::shared_ptr<KernelCandidate> lsst::ip::diffim::KernelCandidate< _PixelT >::Ptr |
Definition at line 44 of file KernelCandidate.h.
typedef std::shared_ptr<afw::table::SourceRecord> lsst::ip::diffim::KernelCandidate< _PixelT >::SourcePtr |
Definition at line 47 of file KernelCandidate.h.
typedef std::shared_ptr<afw::image::Image<afw::image::VariancePixel> > lsst::ip::diffim::KernelCandidate< _PixelT >::VariancePtr |
Definition at line 46 of file KernelCandidate.h.
enum lsst::ip::diffim::KernelCandidate::CandidateSwitch |
Enumerator | |
---|---|
ORIG | |
PCA | |
RECENT |
Definition at line 49 of file KernelCandidate.h.
|
inherited |
lsst::ip::diffim::KernelCandidate< PixelT >::KernelCandidate | ( | float const | xCenter, |
float const | yCenter, | ||
MaskedImagePtr const & | templateMaskedImage, | ||
MaskedImagePtr const & | scienceMaskedImage, | ||
daf::base::PropertySet const & | ps ) |
Constructor.
xCenter | Col position of object |
yCenter | Row position of object |
templateMaskedImage | Pointer to template image |
scienceMaskedImage | Pointer to science image |
ps | PropertySet |
Definition at line 32 of file KernelCandidate.cc.
lsst::ip::diffim::KernelCandidate< PixelT >::KernelCandidate | ( | SourcePtr const & | source, |
MaskedImagePtr const & | templateMaskedImage, | ||
MaskedImagePtr const & | scienceMaskedImage, | ||
daf::base::PropertySet const & | ps ) |
Constructor.
source | Pointer to a source to use in constructing the candidate |
templateMaskedImage | Pointer to template image |
scienceMaskedImage | Pointer to science image |
ps | PropertySet |
Definition at line 66 of file KernelCandidate.cc.
|
inlinevirtual |
void lsst::ip::diffim::KernelCandidate< PixelT >::build | ( | afw::math::KernelList const & | basisList | ) |
Core functionality of KernelCandidate, to build and fill a KernelSolution.
o _isInitialized = false. This is a constructed but not initialized KernelCandidate. When build() is called, M and B are derived from the MaskedImages and the basisList. KernelCandidate owns the knowledge of how to fill this KernelSolution; the solution knows how to solve itself and how to turn that into an output kernel. This solution ends up being _kernelSolution0.
o _isInitialized = true. This is for when build() is re-called using a different basis list, e.g. one based on Pca. We need to use M and B for the spatial modeling, but do not want to override the original KernelSolution. This solution ends up as _kernelSolutionCurrent.
Build KernelSolution matrices for M x = B with regularization matrix H
Definition at line 86 of file KernelCandidate.cc.
void lsst::ip::diffim::KernelCandidate< PixelT >::build | ( | afw::math::KernelList const & | basisList, |
Eigen::MatrixXd const & | hMat ) |
Definition at line 91 of file KernelCandidate.cc.
double lsst::ip::diffim::KernelCandidate< PixelT >::getBackground | ( | CandidateSwitch | cand | ) | const |
Definition at line 247 of file KernelCandidate.cc.
|
inlinevirtual |
Return Candidate rating.
Implements lsst::afw::math::SpatialCellCandidate.
Definition at line 91 of file KernelCandidate.h.
|
inlineinherited |
lsst::afw::image::MaskedImage< PixelT > lsst::ip::diffim::KernelCandidate< PixelT >::getDifferenceImage | ( | CandidateSwitch | cand | ) |
Calculate associated difference image using internal solutions.
Definition at line 366 of file KernelCandidate.cc.
lsst::afw::image::MaskedImage< PixelT > lsst::ip::diffim::KernelCandidate< PixelT >::getDifferenceImage | ( | std::shared_ptr< afw::math::Kernel > | kernel, |
double | background ) |
Calculate associated difference image using input kernel and background.
Definition at line 398 of file KernelCandidate.cc.
|
inlinestaticinherited |
Return the height of the image that getImage should return.
Definition at line 143 of file SpatialCell.h.
|
inlineinherited |
std::shared_ptr< typename KernelCandidate< PixelT >::ImageT const > lsst::ip::diffim::KernelCandidate< PixelT >::getImage | ( | ) | const |
Definition at line 332 of file KernelCandidate.cc.
std::shared_ptr< lsst::afw::math::Kernel > lsst::ip::diffim::KernelCandidate< PixelT >::getKernel | ( | CandidateSwitch | cand | ) | const |
Return results of kernel solution.
Definition at line 219 of file KernelCandidate.cc.
std::shared_ptr< typename KernelCandidate< PixelT >::ImageT > lsst::ip::diffim::KernelCandidate< PixelT >::getKernelImage | ( | CandidateSwitch | cand | ) | const |
Definition at line 303 of file KernelCandidate.cc.
std::shared_ptr< StaticKernelSolution< PixelT > > lsst::ip::diffim::KernelCandidate< PixelT >::getKernelSolution | ( | CandidateSwitch | cand | ) | const |
Definition at line 337 of file KernelCandidate.cc.
double lsst::ip::diffim::KernelCandidate< PixelT >::getKsum | ( | CandidateSwitch | cand | ) | const |
Definition at line 275 of file KernelCandidate.cc.
|
inline |
Definition at line 100 of file KernelCandidate.h.
|
inline |
|
inlineinherited |
|
inline |
Return pointers to the image pixels used in kernel determination.
Definition at line 99 of file KernelCandidate.h.
|
inlinestaticinherited |
Return the width of the image that getImage should return.
Definition at line 138 of file SpatialCell.h.
|
inlineinherited |
Return the object's column-centre.
Definition at line 88 of file SpatialCell.h.
|
inlineinherited |
|
inlinevirtualinherited |
Do anything needed to make this candidate usable.
Definition at line 94 of file SpatialCell.h.
|
inlinevirtualinherited |
|
inline |
Definition at line 128 of file KernelCandidate.h.
|
inlinevirtualinherited |
|
inlineinherited |
|
inlinestaticinherited |
Set the height of the image that getImage should return.
Definition at line 141 of file SpatialCell.h.
|
inherited |
Set the candidate's status.
Definition at line 52 of file SpatialCell.cc.
|
inlinestaticinherited |
Set the width of the image that getImage should return.
Definition at line 136 of file SpatialCell.h.