|
virtual std::shared_ptr< Psf > | clone () const=0 |
|
std::shared_ptr< typehandling::Storable > | cloneStorable () const override |
|
virtual std::shared_ptr< Psf > | resized (int width, int height) const=0 |
|
std::shared_ptr< Image > | computeImage (lsst::geom::Point2D position, image::Color color=image::Color(), ImageOwnerEnum owner=COPY) const |
|
std::shared_ptr< Image > | computeImage () const |
|
std::shared_ptr< Image > | computeKernelImage (lsst::geom::Point2D position, image::Color color=image::Color(), ImageOwnerEnum owner=COPY) const |
|
std::shared_ptr< Image > | computeKernelImage () const |
|
double | computePeak (lsst::geom::Point2D position, image::Color color=image::Color()) const |
|
double | computePeak () const |
|
double | computeApertureFlux (double radius, lsst::geom::Point2D position, image::Color color=image::Color()) const |
|
double | computeApertureFlux (double radius) const |
|
geom::ellipses::Quadrupole | computeShape (lsst::geom::Point2D position, image::Color color=image::Color()) const |
|
geom::ellipses::Quadrupole | computeShape () const |
|
std::shared_ptr< math::Kernel const > | getLocalKernel (lsst::geom::Point2D position, image::Color color=image::Color()) const |
|
std::shared_ptr< math::Kernel const > | getLocalKernel () const |
|
image::Color | getAverageColor () const |
|
virtual lsst::geom::Point2D | getAveragePosition () const |
|
lsst::geom::Box2I | computeBBox (lsst::geom::Point2D position, image::Color color=image::Color()) const |
|
lsst::geom::Box2I | computeBBox () const |
|
lsst::geom::Box2I | computeImageBBox (lsst::geom::Point2D position, image::Color color=image::Color()) const |
|
lsst::geom::Box2I | computeImageBBox () const |
|
lsst::geom::Box2I | computeKernelBBox (lsst::geom::Point2D position, image::Color color=image::Color()) const |
|
lsst::geom::Box2I | computeKernelBBox () const |
|
std::size_t | getCacheCapacity () const |
|
void | setCacheCapacity (std::size_t capacity) |
|
virtual std::string | toString () const |
|
virtual std::size_t | hash_value () const |
|
virtual bool | equals (Storable const &other) const noexcept |
|
virtual bool | equals (Storable const &other) const noexcept |
|
void | writeFits (std::string const &fileName, std::string const &mode="w") const |
|
void | writeFits (fits::MemFileManager &manager, std::string const &mode="w") const |
|
void | writeFits (fits::Fits &fitsfile) const |
|
virtual bool | isPersistable () const noexcept |
|
std::ostream & | operator<< (std::ostream &os, Storable const &storable) |
|
std::ostream & | operator<< (std::ostream &os, Storable const &storable) |
|
An intermediate base class for Psfs that use an image representation.
ImagePsf exists only to provide implementations of doComputeApertureFlux and doComputeShape for its derived classes. These implementations use the SincFlux and SdssShape algorithms defined in meas_algorithms, and hence could not be included with the Psf base class in afw.
Definition at line 40 of file ImagePsf.h.