LSSTApplications  18.0.0+64,19.0.0+37,19.0.0+4,19.0.0+40,19.0.0+43,19.0.0+48,19.0.0+8,19.0.0-1-g20d9b18+20,19.0.0-1-g49a97f9+2,19.0.0-1-g5549ca4+3,19.0.0-1-g8c57eb9+20,19.0.0-1-ga72da6b+2,19.0.0-1-gbfe0924+29,19.0.0-1-ge272bc4+20,19.0.0-1-gefe1d0d+19,19.0.0-10-ged17d6e+1,19.0.0-12-gcc0ea3c,19.0.0-13-g154200d1e+1,19.0.0-2-g0d9f9cd+40,19.0.0-2-g260436e+23,19.0.0-2-g9675b69+2,19.0.0-2-g9b11441+28,19.0.0-2-gde8e5e3+2,19.0.0-2-gf01c5b1,19.0.0-2-gff6972b+4,19.0.0-22-g282de62,19.0.0-29-g47457369+1,19.0.0-3-g27e4659+8,19.0.0-3-g6513920+30,19.0.0-3-gce3f959+16,19.0.0-5-g9aa49c1+1,19.0.0-7-g2f7a0e4+8,19.0.0-7-g686a884+3,19.0.0-7-g99cd2d5+4,19.0.0-7-ga57c4689+15,19.0.0-8-g079e426+5,w.2020.09
LSSTDataManagementBasePackage
Psf.cc
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 #include <limits>
3 #include <typeinfo>
4 #include <cmath>
5 #include <memory>
6 
7 #include "lsst/utils/Cache.h"
11 
12 namespace lsst {
13 namespace afw {
14 
17 
18 namespace detection {
19 namespace detail {
20 
21 // Key for caching PSFs with lsst::utils::Cache
22 //
23 // We cache PSFs by their x,y position. Although there are placeholders
24 // in the `Psf` class and here for `image::Color`, these are not used
25 // in the cache because `image::Color` is not currently well-defined
26 // or used.
27 struct PsfCacheKey {
30 
32  : position(position_), color(color_) {}
33 
34  bool operator==(PsfCacheKey const &other) const {
35  return position == other.position; // Currently don't care about color
36  }
37 
38  friend std::ostream &operator<<(std::ostream &os, PsfCacheKey const &key) { return os << key.position; }
39 };
40 
41 } // namespace detail
42 } // namespace detection
43 } // namespace afw
44 } // namespace lsst
45 
46 namespace std {
47 
48 // Template specialisation for hashing PsfCacheKey
49 //
50 // We currently ignore the color, consistent with operator==.
51 template <>
56  return std::hash<lsst::geom::Point2D>()(key.position);
57  }
58 };
59 
60 } // namespace std
61 
62 namespace lsst {
63 namespace afw {
64 namespace detection {
65 
66 namespace {
67 
68 bool isPointNull(lsst::geom::Point2D const &p) { return std::isnan(p.getX()) && std::isnan(p.getY()); }
69 
70 } // namespace
71 
72 Psf::Psf(bool isFixed, std::size_t capacity) : _isFixed(isFixed) {
73  _imageCache = std::make_unique<PsfCache>(capacity);
74  _kernelImageCache = std::make_unique<PsfCache>(capacity);
75 }
76 
77 Psf::~Psf() = default;
78 
79 Psf::Psf(Psf const &other) : Psf(other._isFixed, other.getCacheCapacity()) {}
80 
82  : _isFixed(other._isFixed),
83  _imageCache(std::move(other._imageCache)),
84  _kernelImageCache(std::move(other._kernelImageCache)) {}
85 
87  lsst::geom::Point2D const &position,
88  std::string const &warpAlgorithm,
89  unsigned int warpBuffer) {
90  // "ir" : (integer, residual)
91  std::pair<int, double> const irX = image::positionToIndex(position.getX(), true);
92  std::pair<int, double> const irY = image::positionToIndex(position.getY(), true);
93 
94  if (irX.second != 0.0 || irY.second != 0.0) {
95  im = math::offsetImage(*im, irX.second, irY.second, warpAlgorithm, warpBuffer);
96  }
97 
98  im->setXY0(irX.first + im->getX0(), irY.first + im->getY0());
99  return im;
100 }
101 
103  ImageOwnerEnum owner) const {
104  if (isPointNull(position)) position = getAveragePosition();
105  if (color.isIndeterminate()) color = getAverageColor();
106  std::shared_ptr<Psf::Image> result = (*_imageCache)(
107  detail::PsfCacheKey(position, color),
108  [this](detail::PsfCacheKey const &key) { return doComputeImage(key.position, key.color); });
109  if (owner == COPY) {
110  result = std::make_shared<Image>(*result, true);
111  }
112  return result;
113 }
114 
116  ImageOwnerEnum owner) const {
117  if (_isFixed || isPointNull(position)) position = getAveragePosition();
118  if (_isFixed || color.isIndeterminate()) color = getAverageColor();
119  std::shared_ptr<Psf::Image> result = (*_kernelImageCache)(
120  detail::PsfCacheKey(position, color),
121  [this](detail::PsfCacheKey const &key) { return doComputeKernelImage(key.position, key.color); });
122  if (owner == COPY) {
123  result = std::make_shared<Image>(*result, true);
124  }
125  return result;
126 }
127 
129  if (isPointNull(position)) position = getAveragePosition();
130  if (color.isIndeterminate()) color = getAverageColor();
131  return doComputeBBox(position, color);
132 }
133 
135  image::Color color) const {
136  if (isPointNull(position)) position = getAveragePosition();
137  if (color.isIndeterminate()) color = getAverageColor();
138  // FixedKernel ctor will deep copy image, so we can use INTERNAL.
140  return std::make_shared<math::FixedKernel>(*image);
141 }
142 
144  if (isPointNull(position)) position = getAveragePosition();
145  if (color.isIndeterminate()) color = getAverageColor();
147  return (*image)(-image->getX0(), -image->getY0());
148 }
149 
151  if (isPointNull(position)) position = getAveragePosition();
152  if (color.isIndeterminate()) color = getAverageColor();
153  return doComputeApertureFlux(radius, position, color);
154 }
155 
157  if (isPointNull(position)) position = getAveragePosition();
158  if (color.isIndeterminate()) color = getAverageColor();
159  return doComputeShape(position, color);
160 }
161 
162 std::shared_ptr<Psf::Image> Psf::doComputeImage(lsst::geom::Point2D const &position,
163  image::Color const &color) const {
164  std::shared_ptr<Psf::Image> im = computeKernelImage(position, color, COPY);
165  return recenterKernelImage(im, position);
166 }
167 
169 
170 std::size_t Psf::getCacheCapacity() const { return _kernelImageCache->capacity(); }
171 
173  _imageCache->reserve(capacity);
174  _kernelImageCache->reserve(capacity);
175 }
176 
177 } // namespace detection
178 } // namespace afw
179 } // namespace lsst
An ellipse core with quadrupole moments as parameters.
Definition: Quadrupole.h:47
std::size_t operator()(lsst::afw::detection::detail::PsfCacheKey const &key) const noexcept
Definition: Psf.cc:55
Psf(Psf const &)
Definition: Psf.cc:79
static std::shared_ptr< T > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
Definition: Persistable.cc:18
virtual lsst::geom::Point2D getAveragePosition() const
Return the average position of the stars used to construct the Psf.
Definition: Psf.cc:168
int positionToIndex(double pos)
Convert image position to nearest integer index.
Definition: ImageUtils.h:69
std::size_t getCacheCapacity() const
Return the capacity of the caches.
Definition: Psf.cc:170
lsst::geom::Point2D const position
Definition: Psf.cc:28
STL namespace.
std::shared_ptr< math::Kernel const > getLocalKernel(lsst::geom::Point2D position=makeNullPoint(), image::Color color=image::Color()) const
Return a FixedKernel corresponding to the Psf image at the given point.
Definition: Psf.cc:134
ImageOwnerEnum
Enum passed to computeImage and computeKernelImage to determine image ownership.
Definition: Psf.h:86
bool isIndeterminate() const noexcept
Whether the color is the special value that indicates that it is unspecified.
Definition: Color.h:37
ItemVariant const * other
Definition: Schema.cc:56
std::shared_ptr< Image > computeImage(lsst::geom::Point2D position=makeNullPoint(), image::Color color=image::Color(), ImageOwnerEnum owner=COPY) const
Return an Image of the PSF, in a form that can be compared directly with star images.
Definition: Psf.cc:102
double computeApertureFlux(double radius, lsst::geom::Point2D position=makeNullPoint(), image::Color color=image::Color()) const
Compute the "flux" of the Psf model within a circular aperture of the given radius.
Definition: Psf.cc:150
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.
friend std::ostream & operator<<(std::ostream &os, PsfCacheKey const &key)
Definition: Psf.cc:38
double computePeak(lsst::geom::Point2D position=makeNullPoint(), image::Color color=image::Color()) const
Return the peak value of the PSF image.
Definition: Psf.cc:143
A base class for image defects.
PsfCacheKey(lsst::geom::Point2D const &position_, image::Color color_=image::Color())
Definition: Psf.cc:31
bool operator==(PsfCacheKey const &other) const
Definition: Psf.cc:34
Key< U > key
Definition: Schema.cc:281
void setCacheCapacity(std::size_t capacity)
Set the capacity of the caches.
Definition: Psf.cc:172
static std::shared_ptr< Image > recenterKernelImage(std::shared_ptr< Image > im, lsst::geom::Point2D const &position, std::string const &warpAlgorithm="lanczos5", unsigned int warpBuffer=5)
Helper function for Psf::doComputeImage(): converts a kernel image (centered at (0,0) when xy0 is taken into account) to an image centered at position when xy0 is taken into account.
Definition: Psf.cc:86
std::shared_ptr< ImageT > offsetImage(ImageT const &image, float dx, float dy, std::string const &algorithmName="lanczos5", unsigned int buffer=0)
Return an image offset by (dx, dy) using the specified algorithm.
Definition: offsetImage.cc:41
std::shared_ptr< Image > computeKernelImage(lsst::geom::Point2D position=makeNullPoint(), image::Color color=image::Color(), ImageOwnerEnum owner=COPY) const
Return an Image of the PSF, in a form suitable for convolution.
Definition: Psf.cc:115
T isnan(T... args)
An internal image will be returned without copying.
Definition: Psf.h:88
Describe the colour of a source.
Definition: Color.h:26
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects...
A polymorphic base class for representing an image&#39;s Point Spread Function.
Definition: Psf.h:75
std::ostream * os
Definition: Schema.cc:746
lsst::geom::Box2I computeBBox(lsst::geom::Point2D position=makeNullPoint(), image::Color color=image::Color()) const
Return the bounding box of the image returned by computeKernelImage()
Definition: Psf.cc:128
An integer coordinate rectangle.
Definition: Box.h:55
STL class.
py::object result
Definition: _schema.cc:429
The image will be copied before returning; caller will own it.
Definition: Psf.h:87
geom::ellipses::Quadrupole computeShape(lsst::geom::Point2D position=makeNullPoint(), image::Color color=image::Color()) const
Compute the ellipse corresponding to the second moments of the Psf.
Definition: Psf.cc:156