LSSTApplications  18.1.0
LSSTDataManagementBasePackage
SpatialModelPsf.h
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 #if !defined(LSST_MEAS_ALGORITHMS_SPATIALMODELPSF_H)
3 #define LSST_MEAS_ALGORITHMS_SPATIALMODELPSF_H
4 
5 /*
6  * LSST Data Management System
7  * Copyright 2008, 2009, 2010 LSST Corporation.
8  *
9  * This product includes software developed by the
10  * LSST Project (http://www.lsst.org/).
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the LSST License Statement and
23  * the GNU General Public License along with this program. If not,
24  * see <http://www.lsstcorp.org/LegalNotices/>.
25  */
26 
34 #include <memory>
35 #include <utility>
36 #include <vector>
37 
38 #include "lsst/afw.h"
39 #include "lsst/pex/policy.h"
40 #include "lsst/geom/Point.h"
41 #include "lsst/afw/detection/Psf.h"
42 #include "lsst/afw/math/Kernel.h"
44 
45 namespace lsst {
46 namespace meas {
47 namespace algorithms {
48 
49 template <typename PixelT>
51 createKernelFromPsfCandidates(afw::math::SpatialCellSet const& psfCells, geom::Extent2I const& dims,
52  geom::Point2I const& xy0, int const nEigenComponents, int const spatialOrder,
53  int const ksize, int const nStarPerCell = -1, bool const constantWeight = true,
54  int const border = 3);
55 
56 template <typename PixelT>
57 int countPsfCandidates(afw::math::SpatialCellSet const& psfCells, int const nStarPerCell = -1);
58 
59 template <typename PixelT>
61  afw::math::SpatialCellSet const& psfCells,
62  int const nStarPerCell = -1,
63  double const tolerance = 1e-5,
64  double const lambda = 0.0);
65 template <typename PixelT>
67  afw::math::Kernel* kernel, afw::math::SpatialCellSet const& psfCells, bool const doNonLinearFit,
68  int const nStarPerCell = -1, double const tolerance = 1e-5, double const lambda = 0.0);
69 
70 template <typename ImageT>
71 double subtractPsf(afw::detection::Psf const& psf, ImageT* data, double x, double y,
73 
74 template <typename Image>
76  afw::math::LinearCombinationKernel const& kernel, Image const& image, geom::Point2D const& pos);
77 
78 template <typename Image>
80  afw::math::LinearCombinationKernel const& kernel, Image const& image, geom::Point2D const& pos);
81 
82 } // namespace algorithms
83 } // namespace meas
84 } // namespace lsst
85 
86 #endif
double subtractPsf(afw::detection::Psf const &psf, ImageT *data, double x, double y, double psfFlux=std::numeric_limits< double >::quiet_NaN())
std::pair< std::shared_ptr< afw::math::Kernel >, std::pair< double, double > > fitKernelToImage(afw::math::LinearCombinationKernel const &kernel, Image const &image, geom::Point2D const &pos)
Fit a LinearCombinationKernel to an Image, allowing the coefficients of the components to vary...
int countPsfCandidates(afw::math::SpatialCellSet const &psfCells, int const nStarPerCell=-1)
Count the number of candidates in use.
int y
Definition: SpanSet.cc:49
Point< double, 2 > Point2D
Definition: Point.h:324
std::pair< bool, double > fitSpatialKernelFromPsfCandidates(afw::math::Kernel *kernel, afw::math::SpatialCellSet const &psfCells, int const nStarPerCell=-1, double const tolerance=1e-5, double const lambda=0.0)
Fit spatial kernel using full-nonlinear optimization to estimate candidate amplitudes.
A base class for image defects.
char * data
Definition: BaseRecord.cc:62
Point< int, 2 > Point2I
Definition: Point.h:321
double x
Extent< int, 2 > Extent2I
Definition: Extent.h:397
std::vector< std::shared_ptr< Kernel > > KernelList
Definition: Kernel.h:500
std::pair< std::shared_ptr< afw::math::LinearCombinationKernel >, std::vector< double > > createKernelFromPsfCandidates(afw::math::SpatialCellSet const &psfCells, geom::Extent2I const &dims, geom::Point2I const &xy0, int const nEigenComponents, int const spatialOrder, int const ksize, int const nStarPerCell=-1, bool const constantWeight=true, int const border=3)
Return a Kernel pointer and a list of eigenvalues resulting from analysing the provided SpatialCellSe...
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects...
std::pair< std::vector< double >, afw::math::KernelList > fitKernelParamsToImage(afw::math::LinearCombinationKernel const &kernel, Image const &image, geom::Point2D const &pos)
Fit a LinearCombinationKernel to an Image, allowing the coefficients of the components to vary...