Loading [MathJax]/extensions/tex2jax.js
LSST Applications g0fba68d861+aff6b1d179,g1e78f5e6d3+b2e1eec3e3,g1fd858c14a+eb8d917efb,g35bb328faa+fcb1d3bbc8,g436fd98eb5+de86862952,g4af146b050+2f70285269,g4d2262a081+c17cfe15e3,g4e0f332c67+8616b824a5,g53246c7159+fcb1d3bbc8,g5a012ec0e7+d65fd7031a,g60b5630c4e+de86862952,g67b6fd64d1+c0248a1c13,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g87b7deb4dc+1a71b41694,g8852436030+40f6ec51d1,g89139ef638+c0248a1c13,g9125e01d80+fcb1d3bbc8,g94187f82dc+de86862952,g989de1cb63+c0248a1c13,g9f33ca652e+62adb22cd2,g9f7030ddb1+d892b2cb3e,ga2b97cdc51+de86862952,gabe3b4be73+1e0a283bba,gabf8522325+83c19109ce,gb1101e3267+1371da34ff,gb58c049af0+f03b321e39,gb89ab40317+c0248a1c13,gcf25f946ba+40f6ec51d1,gd6cbbdb0b4+d9e8db455e,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+fc726a16be,gded526ad44+763ef31e97,ge278dab8ac+4ce6343b44,ge410e46f29+c0248a1c13,gf67bdafdda+c0248a1c13,gfe06eef73a+95f9f0e40c,v29.0.0.rc3
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
WarpedPsf.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2
3/*
4 * This file is part of meas_algorithms.
5 *
6 * Developed for the LSST Data Management System.
7 * This product includes software developed by the LSST Project
8 * (https://www.lsst.org).
9 * See the COPYRIGHT file at the top-level directory of this distribution
10 * for details of code ownership.
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 GNU General Public License
23 * along with this program. If not, see <https://www.gnu.org/licenses/>.
24 */
25
26#ifndef LSST_MEAS_ALGORITHMS_WARPEDPSF_H
27#define LSST_MEAS_ALGORITHMS_WARPEDPSF_H
28
29#include "lsst/geom/Box.h"
34
35namespace lsst {
36namespace meas {
37namespace algorithms {
38
52class WarpedPsf final : public afw::table::io::PersistableFacade<WarpedPsf>, public ImagePsf {
53public:
65 std::string const& kernelName = "lanczos3", unsigned int cache = 10000);
66
72 geom::Point2D getAveragePosition() const override;
73
76
78 std::shared_ptr<afw::detection::Psf> resized(int width, int height) const override;
79
80 bool isPersistable() const noexcept override {
81 return _undistortedPsf->isPersistable() && _distortion->isPersistable() &&
82 _warpingControl->isPersistable();
83 }
84
85protected:
87 geom::Point2D const& position, afw::image::Color const& color) const override;
88
89 std::string getPersistenceName() const override;
90 std::string getPythonModule() const override;
91 void write(OutputArchiveHandle& handle) const override;
92
95
96private:
97 void _init();
99
100 geom::Box2I doComputeBBox(geom::Point2D const& position, afw::image::Color const& color) const override;
101};
102
103} // namespace algorithms
104} // namespace meas
105} // namespace lsst
106
107#endif // LSST_MEAS_ALGORITHMS_WARPEDPSF_H
Describe the colour of a source.
Definition Color.h:25
A CRTP facade class for subclasses of Persistable.
io::OutputArchiveHandle OutputArchiveHandle
An integer coordinate rectangle.
Definition Box.h:55
ImagePsf(bool isFixed=false)
Definition ImagePsf.h:42
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
Definition WarpedPsf.cc:318
std::shared_ptr< afw::detection::Psf > resized(int width, int height) const override
Return a clone with specified kernel dimensions.
Definition WarpedPsf.cc:228
geom::Point2D getAveragePosition() const override
Return the average of the positions of the stars that went into this Psf.
Definition WarpedPsf.cc:220
geom::Box2I doComputeBBox(geom::Point2D const &position, afw::image::Color const &color) const override
Definition WarpedPsf.cc:264
std::shared_ptr< afw::detection::Psf::Image > doComputeKernelImage(geom::Point2D const &position, afw::image::Color const &color) const override
These virtual member functions are private, not protected, because we only want derived classes to im...
Definition WarpedPsf.cc:235
std::shared_ptr< afw::geom::TransformPoint2ToPoint2 const > _distortion
Definition WarpedPsf.h:94
std::shared_ptr< afw::detection::Psf const > _undistortedPsf
Definition WarpedPsf.h:93
WarpedPsf(std::shared_ptr< afw::detection::Psf const > undistortedPsf, std::shared_ptr< afw::geom::TransformPoint2ToPoint2 const > distortion, std::shared_ptr< afw::math::WarpingControl const > control)
Construct WarpedPsf from unwarped psf and distortion.
Definition WarpedPsf.cc:186
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
Definition WarpedPsf.cc:315
std::shared_ptr< afw::detection::Psf > clone() const override
Polymorphic deep copy. Usually unnecessary, as Psfs are immutable.
Definition WarpedPsf.cc:224
bool isPersistable() const noexcept override
Return true if this particular object can be persisted using afw::table::io.
Definition WarpedPsf.h:80
std::string getPythonModule() const override
Return the fully-qualified Python module that should be imported to guarantee that its factory is reg...
Definition WarpedPsf.cc:316
Point< double, 2 > Point2D
Definition Point.h:324