LSST Applications g063fba187b+cac8b7c890,g0f08755f38+6aee506743,g1653933729+a8ce1bb630,g168dd56ebc+a8ce1bb630,g1a2382251a+b4475c5878,g1dcb35cd9c+8f9bc1652e,g20f6ffc8e0+6aee506743,g217e2c1bcf+73dee94bd0,g28da252d5a+1f19c529b9,g2bbee38e9b+3f2625acfc,g2bc492864f+3f2625acfc,g3156d2b45e+6e55a43351,g32e5bea42b+1bb94961c2,g347aa1857d+3f2625acfc,g35bb328faa+a8ce1bb630,g3a166c0a6a+3f2625acfc,g3e281a1b8c+c5dd892a6c,g3e8969e208+a8ce1bb630,g414038480c+5927e1bc1e,g41af890bb2+8a9e676b2a,g7af13505b9+809c143d88,g80478fca09+6ef8b1810f,g82479be7b0+f568feb641,g858d7b2824+6aee506743,g89c8672015+f4add4ffd5,g9125e01d80+a8ce1bb630,ga5288a1d22+2903d499ea,gb58c049af0+d64f4d3760,gc28159a63d+3f2625acfc,gcab2d0539d+b12535109e,gcf0d15dbbd+46a3f46ba9,gda6a2b7d83+46a3f46ba9,gdaeeff99f8+1711a396fd,ge79ae78c31+3f2625acfc,gef2f8181fd+0a71e47438,gf0baf85859+c1f95f4921,gfa517265be+6aee506743,gfa999e8aa5+17cd334064,w.2024.51
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.