LSSTApplications  18.1.0
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/daf/base/Citizen.h"
32 #include "lsst/utils/CacheFwd.h"
34 #include "lsst/afw/math/Kernel.h"
35 #include "lsst/afw/image/Color.h"
38 
39 namespace lsst {
40 namespace afw {
41 namespace detection {
42 namespace detail {
43 
45 struct PsfCacheKey;
46 
47 } // namespace detail
48 
76 class Psf : public daf::base::Citizen,
79  static lsst::geom::Point2D makeNullPoint() {
81  }
82 
83 public:
86 
89  COPY = 0,
90  INTERNAL = 1
94  };
95 
96  Psf(Psf const&);
97  Psf& operator=(Psf const&) = delete;
98  Psf& operator=(Psf&&) = delete;
99 
100  Psf(Psf&&);
101  ~Psf() override;
102 
110  virtual std::shared_ptr<Psf> clone() const = 0;
111 
118  std::shared_ptr<typehandling::Storable> cloneStorable() const override final { return clone(); }
119 
128  virtual std::shared_ptr<Psf> resized(int width, int height) const = 0;
129 
150  std::shared_ptr<Image> computeImage(lsst::geom::Point2D position = makeNullPoint(),
152  ImageOwnerEnum owner = COPY) const;
153 
176  std::shared_ptr<Image> computeKernelImage(lsst::geom::Point2D position = makeNullPoint(),
178  ImageOwnerEnum owner = COPY) const;
179 
191  double computePeak(lsst::geom::Point2D position = makeNullPoint(),
192  image::Color color = image::Color()) const;
193 
205  double computeApertureFlux(double radius, lsst::geom::Point2D position = makeNullPoint(),
206  image::Color color = image::Color()) const;
207 
218  geom::ellipses::Quadrupole computeShape(lsst::geom::Point2D position = makeNullPoint(),
219  image::Color color = image::Color()) const;
220 
227  std::shared_ptr<math::Kernel const> getLocalKernel(lsst::geom::Point2D position = makeNullPoint(),
228  image::Color color = image::Color()) const;
229 
236 
242  virtual lsst::geom::Point2D getAveragePosition() const;
243 
247  lsst::geom::Box2I computeBBox(lsst::geom::Point2D position = makeNullPoint(),
248  image::Color color = image::Color()) const;
249 
268  static std::shared_ptr<Image> recenterKernelImage(std::shared_ptr<Image> im,
269  lsst::geom::Point2D const& position,
270  std::string const& warpAlgorithm = "lanczos5",
271  unsigned int warpBuffer = 5);
272 
277  std::size_t getCacheCapacity() const;
278 
283  void setCacheCapacity(std::size_t capacity);
284 
285 protected:
293  explicit Psf(bool isFixed = false, std::size_t capacity = 100);
294 
295 private:
297 
304  virtual std::shared_ptr<Image> doComputeImage(lsst::geom::Point2D const& position,
305  image::Color const& color) const;
306  virtual std::shared_ptr<Image> doComputeKernelImage(lsst::geom::Point2D const& position,
307  image::Color const& color) const = 0;
308  virtual double doComputeApertureFlux(double radius, lsst::geom::Point2D const& position,
309  image::Color const& color) const = 0;
310  virtual geom::ellipses::Quadrupole doComputeShape(lsst::geom::Point2D const& position,
311  image::Color const& color) const = 0;
312  virtual lsst::geom::Box2I doComputeBBox(lsst::geom::Point2D const& position,
313  image::Color const& color) const = 0;
315 
316  bool const _isFixed;
318  std::unique_ptr<PsfCache> _imageCache;
319  std::unique_ptr<PsfCache> _kernelImageCache;
320 };
321 } // namespace detection
322 } // namespace afw
323 } // namespace lsst
324 
325 #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:56
std::shared_ptr< typehandling::Storable > cloneStorable() const override final
Polymorphic deep-copy.
Definition: Psf.h:118
ImageOwnerEnum
Enum passed to computeImage and computeKernelImage to determine image ownership.
Definition: Psf.h:88
image::Color getAverageColor() const
Return the average Color of the stars used to construct the Psf.
Definition: Psf.h:235
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:84
STL class.
Cache of most recently used values.
Definition: Cache.h:74
Describe the colour of a source.
Definition: Color.h:26
Citizen is a class that should be among all LSST classes base classes, and handles basic memory manag...
Definition: Citizen.h:55
A polymorphic base class for representing an image&#39;s Point Spread Function.
Definition: Psf.h:76
A CRTP facade class for subclasses of Persistable.
Definition: Persistable.h:176
An integer coordinate rectangle.
Definition: Box.h:54
image::Image< Pixel > Image
Image type returned by computeImage.
Definition: Psf.h:85