LSSTApplications  17.0+124,17.0+14,17.0+73,18.0.0+37,18.0.0+80,18.0.0-4-g68ffd23+4,18.1.0-1-g0001055+12,18.1.0-1-g03d53ef+5,18.1.0-1-g1349e88+55,18.1.0-1-g2505f39+44,18.1.0-1-g5315e5e+4,18.1.0-1-g5e4b7ea+14,18.1.0-1-g7e8fceb+4,18.1.0-1-g85f8cd4+48,18.1.0-1-g8ff0b9f+4,18.1.0-1-ga2c679d+1,18.1.0-1-gd55f500+35,18.1.0-10-gb58edde+2,18.1.0-11-g0997b02+4,18.1.0-13-gfe4edf0b+12,18.1.0-14-g259bd21+21,18.1.0-19-gdb69f3f+2,18.1.0-2-g5f9922c+24,18.1.0-2-gd3b74e5+11,18.1.0-2-gfbf3545+32,18.1.0-26-g728bddb4+5,18.1.0-27-g6ff7ca9+2,18.1.0-3-g52aa583+25,18.1.0-3-g8ea57af+9,18.1.0-3-gb69f684+42,18.1.0-3-gfcaddf3+6,18.1.0-32-gd8786685a,18.1.0-4-gf3f9b77+6,18.1.0-5-g1dd662b+2,18.1.0-5-g6dbcb01+41,18.1.0-6-gae77429+3,18.1.0-7-g9d75d83+9,18.1.0-7-gae09a6d+30,18.1.0-9-gc381ef5+4,w.2019.45
LSSTDataManagementBasePackage
KernelSolution.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
12 #ifndef LSST_IP_DIFFIM_KERNELSOLUTION_H
13 #define LSST_IP_DIFFIM_KERNELSOLUTION_H
14 
15 #include <memory>
16 #include "Eigen/Core"
17 
18 #include "lsst/afw/math.h"
19 #include "lsst/afw/image.h"
20 #include "lsst/geom.h"
21 #include "lsst/daf/base.h"
22 
23 namespace lsst {
24 namespace ip {
25 namespace diffim {
26 
27  /*
28  * @brief Method used to solve for M and B
29  */
30 
32  public:
36 
38  NONE = 0,
41  LU = 3,
43  };
44 
47  SVD = 1
48  };
49 
50  explicit KernelSolution(Eigen::MatrixXd mMat,
51  Eigen::VectorXd bVec,
52  bool fitForBackground);
53  explicit KernelSolution(bool fitForBackground);
54  explicit KernelSolution();
55 
56  virtual ~KernelSolution() {};
57  virtual void solve();
58  virtual void solve(Eigen::MatrixXd const& mMat,
59  Eigen::VectorXd const& bVec);
61  virtual double getConditionNumber(ConditionNumberType conditionType);
62  virtual double getConditionNumber(Eigen::MatrixXd const& mMat, ConditionNumberType conditionType);
63 
64  inline Eigen::MatrixXd const& getM() {return _mMat;}
65  inline Eigen::VectorXd const& getB() {return _bVec;}
66  void printM() {std::cout << _mMat << std::endl;}
67  void printB() {std::cout << _bVec << std::endl;}
68  void printA() {std::cout << _aVec << std::endl;}
69  inline int getId() const { return _id; }
70 
71  protected:
72  int _id;
73  Eigen::MatrixXd _mMat;
74  Eigen::VectorXd _bVec;
75  Eigen::VectorXd _aVec;
78  static int _SolutionId;
79 
80  };
81 
82  template <typename InputT>
84  public:
86 
88  bool fitForBackground);
89  virtual ~StaticKernelSolution() {};
90 
91  /* Overrides KernelSolution */
92  void solve();
93 
94  /* Used by RegularizedKernelSolution */
95  virtual void build(lsst::afw::image::Image<InputT> const &templateImage,
96  lsst::afw::image::Image<InputT> const &scienceImage,
98  virtual std::shared_ptr<lsst::afw::math::Kernel> getKernel();
100  virtual double getBackground();
101  virtual double getKsum();
102  virtual std::pair<std::shared_ptr<lsst::afw::math::Kernel>, double> getSolutionPair();
103 
104  protected:
105  Eigen::MatrixXd _cMat;
106  Eigen::VectorXd _iVec;
107  Eigen::VectorXd _ivVec;
108 
110  double _background;
111  double _kSum;
112 
113  void _setKernel();
114  void _setKernelUncertainty();
115  };
116 
117 
118  template <typename InputT>
120  public:
122 
124  bool fitForBackground);
125  virtual ~MaskedKernelSolution() {};
126  virtual void buildOrig(lsst::afw::image::Image<InputT> const &templateImage,
127  lsst::afw::image::Image<InputT> const &scienceImage,
129  const &varianceEstimate,
131 
132  virtual void buildWithMask(lsst::afw::image::Image<InputT> const &templateImage,
133  lsst::afw::image::Image<InputT> const &scienceImage,
135  const &varianceEstimate,
137 
138  virtual void buildSingleMaskOrig(lsst::afw::image::Image<InputT> const &templateImage,
139  lsst::afw::image::Image<InputT> const &scienceImage,
141  const &varianceEstimate,
142  lsst::geom::Box2I maskBox);
143  };
144 
145 
146 
147  template <typename InputT>
149  public:
151 
153  bool fitForBackground,
154  Eigen::MatrixXd const& hMat,
156  );
158  void solve();
159  double getLambda() {return _lambda;}
160  double estimateRisk(double maxCond);
161 
162  /* Include additive term (_lambda * _hMat) in M matrix? */
163  Eigen::MatrixXd getM(bool includeHmat = true);
164 
165  private:
166  Eigen::MatrixXd const _hMat;
167  double _lambda;
169 
170  std::vector<double> _createLambdaSteps();
171  };
172 
173 
175  public:
177 
178  /* Creates a polynomial SpatialFunction */
180  lsst::afw::math::Kernel::SpatialFunctionPtr spatialKernelFunction,
183  );
184 
186 
187  void addConstraint(float xCenter, float yCenter,
188  Eigen::MatrixXd const& qMat,
189  Eigen::VectorXd const& wVec);
190 
191  void solve();
195 
196  private:
197  lsst::afw::math::Kernel::SpatialFunctionPtr _spatialKernelFunction;
198  bool _constantFirstTerm;
199 
202  double _kSum;
203 
205  int _nbases;
206  int _nkt;
207  int _nbt;
208  int _nt;
209 
210  void _setKernel();
211  void _setKernelUncertainty();
212  };
213 
214 }}} // end of namespace lsst::ip::diffim
215 
216 #endif
std::shared_ptr< SpatialKernelSolution > Ptr
std::shared_ptr< RegularizedKernelSolution< InputT > > Ptr
Eigen::VectorXd _bVec
Derived least squares B vector.
T endl(T... args)
KernelSolvedBy _solvedBy
Type of algorithm used to make solution.
double _background
Derived differential background estimate.
Eigen::VectorXd _iVec
Vectorized I.
lsst::afw::math::Kernel::Pixel PixelT
Eigen::VectorXd _ivVec
Inverse variance.
Eigen::VectorXd const & getB()
std::shared_ptr< StaticKernelSolution< InputT > > Ptr
A base class for image defects.
static int _SolutionId
Unique identifier for solution.
bool _fitForBackground
Background terms included in fit.
Represent a 2-dimensional array of bitmask pixels.
Definition: Mask.h:77
lsst::afw::image::Image< lsst::afw::math::Kernel::Pixel > ImageT
virtual double getConditionNumber(ConditionNumberType conditionType)
int _id
Unique ID for object.
std::shared_ptr< KernelSolution > Ptr
Eigen::MatrixXd _mMat
Derived least squares M matrix.
double _kSum
Derived kernel sum.
Class for storing generic metadata.
Definition: PropertySet.h:67
Eigen::MatrixXd const & getM()
Eigen::VectorXd _aVec
Derived least squares solution matrix.
std::shared_ptr< lsst::afw::math::Kernel > _kernel
Derived single-object convolution kernel.
std::shared_ptr< MaskedKernelSolution< InputT > > Ptr
An integer coordinate rectangle.
Definition: Box.h:55