LSST Applications g0603fd7c41+501e3db9f9,g0aad566f14+23d8574c86,g0dd44d6229+a1a4c8b791,g2079a07aa2+86d27d4dc4,g2305ad1205+a62672bbc1,g2bbee38e9b+047b288a59,g337abbeb29+047b288a59,g33d1c0ed96+047b288a59,g3a166c0a6a+047b288a59,g3d1719c13e+23d8574c86,g487adcacf7+cb7fd919b2,g4be5004598+23d8574c86,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+4a9e435310,g63cd9335cc+585e252eca,g858d7b2824+23d8574c86,g88963caddf+0cb8e002cc,g99cad8db69+43388bcaec,g9ddcbc5298+9a081db1e4,ga1e77700b3+a912195c07,gae0086650b+585e252eca,gb0e22166c9+60f28cb32d,gb2522980b2+793639e996,gb3a676b8dc+b4feba26a1,gb4b16eec92+63f8520565,gba4ed39666+c2a2e4ac27,gbb8dafda3b+a5d255a82e,gc120e1dc64+d820f8acdb,gc28159a63d+047b288a59,gc3e9b769f7+f4f1cc6b50,gcf0d15dbbd+a1a4c8b791,gdaeeff99f8+f9a426f77a,gdb0af172c8+b6d5496702,ge79ae78c31+047b288a59,w.2024.19
LSST Data Management Base Package
Loading...
Searching...
No Matches
BasisLists.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
12#ifndef LSST_IP_DIFFIM_BASISSLISTS_H
13#define LSST_IP_DIFFIM_BASISSLISTS_H
14
15#include <memory>
16#include <vector>
17
18#include "Eigen/Core"
19
22
23namespace lsst {
24namespace ip {
25namespace diffim {
26
38 int width,
39 int height
40 );
41
52 Eigen::MatrixXd makeRegularizationMatrix(
54 );
55
67 Eigen::MatrixXd makeForwardDifferenceMatrix(
68 int width,
69 int height,
70 std::vector<int> const & orders,
71 float borderPenalty,
72 bool fitForBackground
73 );
74
86 Eigen::MatrixXd makeCentralDifferenceMatrix(
87 int width,
88 int height,
89 int stencil,
90 float borderPenalty,
91 bool fitForBackground
92 );
93
110 lsst::afw::math::KernelList const &kernelListIn
111 );
112
127 int halfWidth,
128 int nGauss,
129 std::vector<double> const& sigGauss,
130 std::vector<int> const& degGauss
131 );
132
133}}} // end of namespace lsst::ip::diffim
134
135#endif
Class for storing generic metadata.
Definition PropertySet.h:66
lsst::afw::math::KernelList makeDeltaFunctionBasisList(int width, int height)
Build a set of Delta Function basis kernels.
Definition BasisLists.cc:45
lsst::afw::math::KernelList renormalizeKernelList(lsst::afw::math::KernelList const &kernelListIn)
Renormalize a list of basis kernels.
Eigen::MatrixXd makeRegularizationMatrix(lsst::daf::base::PropertySet const &ps)
Build a regularization matrix for Delta function kernels.
Eigen::MatrixXd makeCentralDifferenceMatrix(int width, int height, int stencil, float borderPenalty, bool fitForBackground)
Build a central difference Laplacian regularization matrix for Delta function kernels.
Eigen::MatrixXd makeForwardDifferenceMatrix(int width, int height, std::vector< int > const &orders, float borderPenalty, bool fitForBackground)
Build a forward difference regularization matrix for Delta function kernels.
lsst::afw::math::KernelList makeAlardLuptonBasisList(int halfWidth, int nGauss, std::vector< double > const &sigGauss, std::vector< int > const &degGauss)
Build a set of Alard/Lupton basis kernels.
Definition BasisLists.cc:76