LSSTApplications  18.1.0
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"
10 #include "lsst/afw/table/io/Persistable.cc"
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) : daf::base::Citizen(typeid(this)), _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  : daf::base::Citizen(std::move(other)),
83  _isFixed(other._isFixed),
84  _imageCache(std::move(other._imageCache)),
85  _kernelImageCache(std::move(other._kernelImageCache)) {}
86 
88  lsst::geom::Point2D const &position,
89  std::string const &warpAlgorithm,
90  unsigned int warpBuffer) {
91  // "ir" : (integer, residual)
92  std::pair<int, double> const irX = image::positionToIndex(position.getX(), true);
93  std::pair<int, double> const irY = image::positionToIndex(position.getY(), true);
94 
95  if (irX.second != 0.0 || irY.second != 0.0) {
96  im = math::offsetImage(*im, irX.second, irY.second, warpAlgorithm, warpBuffer);
97  }
98 
99  im->setXY0(irX.first + im->getX0(), irY.first + im->getY0());
100  return im;
101 }
102 
104  ImageOwnerEnum owner) const {
105  if (isPointNull(position)) position = getAveragePosition();
106  if (color.isIndeterminate()) color = getAverageColor();
107  std::shared_ptr<Psf::Image> result = (*_imageCache)(
108  detail::PsfCacheKey(position, color),
109  [this](detail::PsfCacheKey const &key) { return doComputeImage(key.position, key.color); });
110  if (owner == COPY) {
111  result = std::make_shared<Image>(*result, true);
112  }
113  return result;
114 }
115 
117  ImageOwnerEnum owner) const {
118  if (_isFixed || isPointNull(position)) position = getAveragePosition();
119  if (_isFixed || color.isIndeterminate()) color = getAverageColor();
120  std::shared_ptr<Psf::Image> result = (*_kernelImageCache)(
121  detail::PsfCacheKey(position, color),
122  [this](detail::PsfCacheKey const &key) { return doComputeKernelImage(key.position, key.color); });
123  if (owner == COPY) {
124  result = std::make_shared<Image>(*result, true);
125  }
126  return result;
127 }
128 
130  if (isPointNull(position)) position = getAveragePosition();
131  if (color.isIndeterminate()) color = getAverageColor();
132  return doComputeBBox(position, color);
133 }
134 
136  image::Color color) const {
137  if (isPointNull(position)) position = getAveragePosition();
138  if (color.isIndeterminate()) color = getAverageColor();
139  // FixedKernel ctor will deep copy image, so we can use INTERNAL.
141  return std::make_shared<math::FixedKernel>(*image);
142 }
143 
145  if (isPointNull(position)) position = getAveragePosition();
146  if (color.isIndeterminate()) color = getAverageColor();
148  return (*image)(-image->getX0(), -image->getY0());
149 }
150 
151 double Psf::computeApertureFlux(double radius, lsst::geom::Point2D position, image::Color color) const {
152  if (isPointNull(position)) position = getAveragePosition();
153  if (color.isIndeterminate()) color = getAverageColor();
154  return doComputeApertureFlux(radius, position, color);
155 }
156 
158  if (isPointNull(position)) position = getAveragePosition();
159  if (color.isIndeterminate()) color = getAverageColor();
160  return doComputeShape(position, color);
161 }
162 
163 std::shared_ptr<Psf::Image> Psf::doComputeImage(lsst::geom::Point2D const &position,
164  image::Color const &color) const {
165  std::shared_ptr<Psf::Image> im = computeKernelImage(position, color, COPY);
166  return recenterKernelImage(im, position);
167 }
168 
170 
171 std::size_t Psf::getCacheCapacity() const { return _kernelImageCache->capacity(); }
172 
174  _imageCache->reserve(capacity);
175  _kernelImageCache->reserve(capacity);
176 }
177 
178 } // namespace detection
179 } // namespace afw
180 } // 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:169
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:171
lsst::geom::Point2D const position
Definition: Psf.cc:28
py::object result
Definition: schema.cc:418
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:135
ImageOwnerEnum
Enum passed to computeImage and computeKernelImage to determine image ownership.
Definition: Psf.h:88
bool isIndeterminate() const noexcept
Whether the color is the special value that indicates that it is unspecified.
Definition: Color.h:37
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:103
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:151
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.
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:144
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
void setCacheCapacity(std::size_t capacity)
Set the capacity of the caches.
Definition: Psf.cc:173
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:87
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
Citizen(const std::type_info &)
Definition: Citizen.cc:163
Key< U > key
Definition: Schema.cc:281
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:116
T isnan(T... args)
ItemVariant const * other
Definition: Schema.cc:56
An internal image will be returned without copying.
Definition: Psf.h:90
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:76
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:129
An integer coordinate rectangle.
Definition: Box.h:54
STL class.
std::ostream * os
Definition: Schema.cc:746
The image will be copied before returning; caller will own it.
Definition: Psf.h:89
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:157