LSST Applications  21.0.0+04719a4bac,21.0.0-1-ga51b5d4+f5e6047307,21.0.0-11-g2b59f77+a9c1acf22d,21.0.0-11-ga42c5b2+86977b0b17,21.0.0-12-gf4ce030+76814010d2,21.0.0-13-g1721dae+760e7a6536,21.0.0-13-g3a573fe+768d78a30a,21.0.0-15-g5a7caf0+f21cbc5713,21.0.0-16-g0fb55c1+b60e2d390c,21.0.0-19-g4cded4ca+71a93a33c0,21.0.0-2-g103fe59+bb20972958,21.0.0-2-g45278ab+04719a4bac,21.0.0-2-g5242d73+3ad5d60fb1,21.0.0-2-g7f82c8f+8babb168e8,21.0.0-2-g8f08a60+06509c8b61,21.0.0-2-g8faa9b5+616205b9df,21.0.0-2-ga326454+8babb168e8,21.0.0-2-gde069b7+5e4aea9c2f,21.0.0-2-gecfae73+1d3a86e577,21.0.0-2-gfc62afb+3ad5d60fb1,21.0.0-25-g1d57be3cd+e73869a214,21.0.0-3-g357aad2+ed88757d29,21.0.0-3-g4a4ce7f+3ad5d60fb1,21.0.0-3-g4be5c26+3ad5d60fb1,21.0.0-3-g65f322c+e0b24896a3,21.0.0-3-g7d9da8d+616205b9df,21.0.0-3-ge02ed75+a9c1acf22d,21.0.0-4-g591bb35+a9c1acf22d,21.0.0-4-g65b4814+b60e2d390c,21.0.0-4-gccdca77+0de219a2bc,21.0.0-4-ge8a399c+6c55c39e83,21.0.0-5-gd00fb1e+05fce91b99,21.0.0-6-gc675373+3ad5d60fb1,21.0.0-64-g1122c245+4fb2b8f86e,21.0.0-7-g04766d7+cd19d05db2,21.0.0-7-gdf92d54+04719a4bac,21.0.0-8-g5674e7b+d1bd76f71f,master-gac4afde19b+a9c1acf22d,w.2021.13
LSST Data Management Base Package
KernelCandidate.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
12 #ifndef LSST_IP_DIFFIM_KERNELCANDIDATE_H
13 #define LSST_IP_DIFFIM_KERNELCANDIDATE_H
14 
15 #include <memory>
16 #include "Eigen/Core"
17 
18 #include "lsst/afw/math.h"
19 #include "lsst/afw/image.h"
21 #include "lsst/afw/table/Source.h"
22 #include "lsst/daf/base.h"
23 
24 namespace lsst {
25 namespace ip {
26 namespace diffim {
27 
28 
38  template <typename _PixelT>
40  public:
42  typedef _PixelT PixelT; // _after_ afw::math::Kernel::Pixel
43  public:
48 
50  ORIG = 0,
51  PCA = 1,
52  RECENT = 2
53  };
54 
64  KernelCandidate(float const xCenter,
65  float const yCenter,
66  MaskedImagePtr const& templateMaskedImage,
67  MaskedImagePtr const& scienceMaskedImage,
68  daf::base::PropertySet const& ps);
69 
80  MaskedImagePtr const& templateMaskedImage,
81  MaskedImagePtr const& scienceMaskedImage,
82  daf::base::PropertySet const& ps);
84  virtual ~KernelCandidate() {};
85 
91  double getCandidateRating() const { return _coreFlux; }
95  SourcePtr getSource() const { return _source; }
99  MaskedImagePtr getTemplateMaskedImage() {return _templateMaskedImage;}
100  MaskedImagePtr getScienceMaskedImage() {return _scienceMaskedImage;}
101 
107  double getBackground(CandidateSwitch cand) const;
108  double getKsum(CandidateSwitch cand) const;
110  CONST_PTR(ImageT) getImage() const; // For SpatialCellImageCandidate
112 
117 
125  double background
126  );
127 
128  bool isInitialized() const {return _isInitialized;}
129 
130 
165  /*
166  * @note This method uses an estimate of the variance which is the
167  * straight difference of the 2 images. If requested in the PropertySet
168  * ("iterateSingleKernel"), the kernel will be rebuilt using the
169  * variance of the difference image resulting from this first
170  * approximate step. This is particularly useful when convolving a
171  * single-depth science image; the variance (and thus resulting kernel)
172  * generally converges after 1 iteration. If
173  * "constantVarianceWeighting" is requested in the PropertySet, no iterations
174  * will be performed even if requested.
175  */
176 
177  void build(
178  afw::math::KernelList const& basisList
179  );
180  void build(
181  afw::math::KernelList const& basisList,
182  Eigen::MatrixXd const& hMat
183  );
184 
185  private:
186  MaskedImagePtr _templateMaskedImage;
187  MaskedImagePtr _scienceMaskedImage;
188  VariancePtr _varianceEstimate;
190  SourcePtr _source;
191  double _coreFlux;
192  bool _isInitialized;
193  bool _useRegularization;
194  bool _fitForBackground;
195 
196  /* best single raw kernel */
197  std::shared_ptr<StaticKernelSolution<PixelT> > _kernelSolutionOrig;
198 
199  /* with Pca basis */
200  std::shared_ptr<StaticKernelSolution<PixelT> > _kernelSolutionPca;
201 
202  void _buildKernelSolution(afw::math::KernelList const& basisList,
203  Eigen::MatrixXd const& hMat);
204  };
205 
206 
218  template <typename PixelT>
220  makeKernelCandidate(float const xCenter,
221  float const yCenter,
222  std::shared_ptr<afw::image::MaskedImage<PixelT> > const& templateMaskedImage,
223  std::shared_ptr<afw::image::MaskedImage<PixelT> > const& scienceMaskedImage,
224  daf::base::PropertySet const& ps){
225 
227  templateMaskedImage,
228  scienceMaskedImage,
229  ps));
230  }
231 
243  template <typename PixelT>
246  std::shared_ptr<afw::image::MaskedImage<PixelT> > const& templateMaskedImage,
247  std::shared_ptr<afw::image::MaskedImage<PixelT> > const& scienceMaskedImage,
248  daf::base::PropertySet const& ps){
249 
251  templateMaskedImage,
252  scienceMaskedImage,
253  ps));
254  }
255 
256 
257 }}} // end of namespace lsst::ip::diffim
258 
259 #endif
Declaration of classes to store the solution for convolution kernels.
#define PTR(...)
Definition: base.h:41
#define CONST_PTR(...)
A shared pointer to a const object.
Definition: base.h:47
A class to represent a 2-dimensional array of pixels.
Definition: Image.h:58
A class to manipulate images, masks, and variance as a single object.
Definition: MaskedImage.h:73
Base class for candidate objects in a SpatialCell that are able to return an Image of some sort (e....
Definition: SpatialCell.h:126
Class for storing generic metadata.
Definition: PropertySet.h:67
Class stored in SpatialCells for spatial Kernel fitting.
boost::shared_ptr< ImageT const > getImage() const
std::shared_ptr< afw::image::MaskedImage< PixelT > > MaskedImagePtr
std::shared_ptr< afw::image::Image< afw::image::VariancePixel > > VariancePtr
virtual ~KernelCandidate()
Destructor.
afw::image::Image< afw::math::Kernel::Pixel > ImageT
afw::image::MaskedImage< PixelT > getDifferenceImage(CandidateSwitch cand)
Calculate associated difference image using internal solutions.
double getCandidateRating() const
Return Candidate rating.
std::shared_ptr< KernelCandidate > Ptr
MaskedImagePtr getTemplateMaskedImage()
Return pointers to the image pixels used in kernel determination.
double getBackground(CandidateSwitch cand) const
double getKsum(CandidateSwitch cand) const
std::shared_ptr< afw::table::SourceRecord > SourcePtr
std::shared_ptr< StaticKernelSolution< PixelT > > getKernelSolution(CandidateSwitch cand) const
std::shared_ptr< afw::math::Kernel > getKernel(CandidateSwitch cand) const
Return results of kernel solution.
KernelCandidate(float const xCenter, float const yCenter, MaskedImagePtr const &templateMaskedImage, MaskedImagePtr const &scienceMaskedImage, daf::base::PropertySet const &ps)
Constructor.
SourcePtr getSource() const
Return the original source.
boost::shared_ptr< ImageT > getKernelImage(CandidateSwitch cand) const
void build(afw::math::KernelList const &basisList)
Core functionality of KernelCandidate, to build and fill a KernelSolution.
const char * source()
Source function that allows astChannel to source from a Stream.
Definition: Stream.h:224
std::shared_ptr< KernelCandidate< PixelT > > makeKernelCandidate(float const xCenter, float const yCenter, std::shared_ptr< afw::image::MaskedImage< PixelT > > const &templateMaskedImage, std::shared_ptr< afw::image::MaskedImage< PixelT > > const &scienceMaskedImage, daf::base::PropertySet const &ps)
Return a KernelCandidate pointer of the right sort.
A base class for image defects.