LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
Psf.h
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2008-2013 LSST Corporation.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <http://www.lsstcorp.org/LegalNotices/>.
22  */
23 #ifndef LSST_AFW_DETECTION_Psf_h_INCLUDED
24 #define LSST_AFW_DETECTION_Psf_h_INCLUDED
25 
26 #include <string>
27 #include <limits>
28 
29 #include <memory>
30 
31 #include "lsst/utils/CacheFwd.h"
33 #include "lsst/afw/math/Kernel.h"
34 #include "lsst/afw/image/Color.h"
37 
38 namespace lsst {
39 namespace afw {
40 namespace detection {
41 namespace detail {
42 
44 struct PsfCacheKey;
45 
46 } // namespace detail
47 
77  static lsst::geom::Point2D makeNullPoint() {
79  }
80 
81 public:
84 
87  COPY = 0,
88  INTERNAL = 1
92  };
93 
94  Psf(Psf const&);
95  Psf& operator=(Psf const&) = delete;
96  Psf& operator=(Psf&&) = delete;
97 
98  Psf(Psf&&);
99  ~Psf() override;
100 
108  virtual std::shared_ptr<Psf> clone() const = 0;
109 
116  std::shared_ptr<typehandling::Storable> cloneStorable() const override final { return clone(); }
117 
126  virtual std::shared_ptr<Psf> resized(int width, int height) const = 0;
127 
148  std::shared_ptr<Image> computeImage(lsst::geom::Point2D position = makeNullPoint(),
150  ImageOwnerEnum owner = COPY) const;
151 
174  std::shared_ptr<Image> computeKernelImage(lsst::geom::Point2D position = makeNullPoint(),
176  ImageOwnerEnum owner = COPY) const;
177 
189  double computePeak(lsst::geom::Point2D position = makeNullPoint(),
190  image::Color color = image::Color()) const;
191 
203  double computeApertureFlux(double radius, lsst::geom::Point2D position = makeNullPoint(),
204  image::Color color = image::Color()) const;
205 
216  geom::ellipses::Quadrupole computeShape(lsst::geom::Point2D position = makeNullPoint(),
217  image::Color color = image::Color()) const;
218 
225  std::shared_ptr<math::Kernel const> getLocalKernel(lsst::geom::Point2D position = makeNullPoint(),
226  image::Color color = image::Color()) const;
227 
234 
240  virtual lsst::geom::Point2D getAveragePosition() const;
241 
245  lsst::geom::Box2I computeBBox(lsst::geom::Point2D position = makeNullPoint(),
246  image::Color color = image::Color()) const;
247 
266  static std::shared_ptr<Image> recenterKernelImage(std::shared_ptr<Image> im,
267  lsst::geom::Point2D const& position,
268  std::string const& warpAlgorithm = "lanczos5",
269  unsigned int warpBuffer = 5);
270 
275  std::size_t getCacheCapacity() const;
276 
281  void setCacheCapacity(std::size_t capacity);
282 
283 protected:
291  explicit Psf(bool isFixed = false, std::size_t capacity = 100);
292 
293 private:
295 
302  virtual std::shared_ptr<Image> doComputeImage(lsst::geom::Point2D const& position,
303  image::Color const& color) const;
304  virtual std::shared_ptr<Image> doComputeKernelImage(lsst::geom::Point2D const& position,
305  image::Color const& color) const = 0;
306  virtual double doComputeApertureFlux(double radius, lsst::geom::Point2D const& position,
307  image::Color const& color) const = 0;
308  virtual geom::ellipses::Quadrupole doComputeShape(lsst::geom::Point2D const& position,
309  image::Color const& color) const = 0;
310  virtual lsst::geom::Box2I doComputeBBox(lsst::geom::Point2D const& position,
311  image::Color const& color) const = 0;
313 
314  bool const _isFixed;
316  std::unique_ptr<PsfCache> _imageCache;
317  std::unique_ptr<PsfCache> _kernelImageCache;
318 };
319 } // namespace detection
320 } // namespace afw
321 } // namespace lsst
322 
323 #endif // !LSST_AFW_DETECTION_Psf_h_INCLUDED
An ellipse core with quadrupole moments as parameters.
Definition: Quadrupole.h:47
Interface supporting iteration over heterogenous containers.
Definition: Storable.h:58
std::shared_ptr< typehandling::Storable > cloneStorable() const override final
Polymorphic deep-copy.
Definition: Psf.h:116
ImageOwnerEnum
Enum passed to computeImage and computeKernelImage to determine image ownership.
Definition: Psf.h:86
image::Color getAverageColor() const
Return the average Color of the stars used to construct the Psf.
Definition: Psf.h:233
Point< double, 2 > Point2D
Definition: Point.h:324
STL class.
A base class for image defects.
math::Kernel::Pixel Pixel
Pixel type of Image returned by computeImage.
Definition: Psf.h:82
STL class.
Cache of most recently used values.
Definition: Cache.h:74
Describe the colour of a source.
Definition: Color.h:26
A polymorphic base class for representing an image&#39;s Point Spread Function.
Definition: Psf.h:75
A CRTP facade class for subclasses of Persistable.
Definition: Persistable.h:176
An integer coordinate rectangle.
Definition: Box.h:55
image::Image< Pixel > Image
Image type returned by computeImage.
Definition: Psf.h:83