31 : position(position_), color(color_) {}
71Psf::Psf(
bool isFixed,
std::size_t capacity) : _isFixed(isFixed) {
72 _imageCache = std::make_unique<PsfCache>(capacity);
73 _kernelImageCache = std::make_unique<PsfCache>(capacity);
81 : _isFixed(other._isFixed),
82 _imageCache(
std::move(other._imageCache)),
83 _kernelImageCache(
std::move(other._kernelImageCache)) {}
88 unsigned int warpBuffer) {
93 if (irX.second != 0.0 || irY.second != 0.0) {
97 im->setXY0(irX.first + im->getX0(), irY.first + im->getY0());
131 if (cached_image.has_value()) {
132 return cached_image.value()->getBBox();
142 if (cached_image.has_value()) {
143 return cached_image.value()->getBBox();
155 return std::make_shared<math::FixedKernel>(*
image);
186 return im->getBBox();
194 _imageCache->reserve(capacity);
195 _kernelImageCache->reserve(capacity);
A polymorphic base class for representing an image's Point Spread Function.
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,...
lsst::geom::Box2I computeBBox(lsst::geom::Point2D position, image::Color color=image::Color()) const
Return the bounding box of the image returned by computeKernelImage()
virtual std::shared_ptr< Image > doComputeImage(lsst::geom::Point2D const &position, image::Color const &color) const
These virtual members are protected (rather than private) so that python-implemented derived classes ...
std::shared_ptr< Image > computeKernelImage(lsst::geom::Point2D position, image::Color color=image::Color(), ImageOwnerEnum owner=COPY) const
Return an Image of the PSF, in a form suitable for convolution.
virtual std::shared_ptr< Image > doComputeKernelImage(lsst::geom::Point2D const &position, image::Color const &color) const =0
These virtual member functions are private, not protected, because we only want derived classes to im...
std::size_t getCacheCapacity() const
Return the capacity of the caches.
double computeApertureFlux(double radius, lsst::geom::Point2D position, image::Color color=image::Color()) const
Compute the "flux" of the Psf model within a circular aperture of the given radius.
std::shared_ptr< Image > computeImage(lsst::geom::Point2D position, 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.
double computePeak(lsst::geom::Point2D position, image::Color color=image::Color()) const
Return the peak value of the PSF image.
image::Color getAverageColor() const
Return the average Color of the stars used to construct the Psf.
virtual lsst::geom::Box2I doComputeImageBBox(lsst::geom::Point2D const &position, image::Color const &color) const
ImageOwnerEnum
Enum passed to computeImage and computeKernelImage to determine image ownership.
@ COPY
The image will be copied before returning; caller will own it.
@ INTERNAL
An internal image will be returned without copying.
virtual lsst::geom::Box2I doComputeBBox(lsst::geom::Point2D const &position, image::Color const &color) const =0
void setCacheCapacity(std::size_t capacity)
Set the capacity of the caches.
std::shared_ptr< math::Kernel const > getLocalKernel(lsst::geom::Point2D position, image::Color color=image::Color()) const
Return a FixedKernel corresponding to the Psf image at the given point.
virtual double doComputeApertureFlux(double radius, lsst::geom::Point2D const &position, image::Color const &color) const =0
virtual lsst::geom::Point2D getAveragePosition() const
Return the average position of the stars used to construct the Psf.
virtual geom::ellipses::Quadrupole doComputeShape(lsst::geom::Point2D const &position, image::Color const &color) const =0
geom::ellipses::Quadrupole computeShape(lsst::geom::Point2D position, image::Color color=image::Color()) const
Compute the ellipse corresponding to the second moments of the Psf.
lsst::geom::Box2I computeImageBBox(lsst::geom::Point2D position, image::Color color=image::Color()) const
Return the bounding box of the image returned by computeImage()
An ellipse core with quadrupole moments as parameters.
Describe the colour of a source.
bool isIndeterminate() const noexcept
Whether the color is the special value that indicates that it is unspecified.
static std::shared_ptr< T > dynamicCast(std::shared_ptr< Persistable > const &ptr)
Dynamically cast a shared_ptr.
An integer coordinate rectangle.
int positionToIndex(double pos)
Convert image position to nearest integer index.
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.
Point< double, 2 > Point2D
lsst::geom::Point2D const position
bool operator==(PsfCacheKey const &other) const
PsfCacheKey(lsst::geom::Point2D const &position_, image::Color color_=image::Color())
friend std::ostream & operator<<(std::ostream &os, PsfCacheKey const &key)
std::size_t operator()(lsst::afw::detection::detail::PsfCacheKey const &key) const noexcept