LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
LSST Data Management Base Package
GaussianPsf.cc
Go to the documentation of this file.
1 // -*- LSST-C++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2008-2014 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 
24 #include <memory>
25 
26 #include "ndarray/eigen.h"
27 
33 
34 namespace lsst {
35 namespace afw {
36 
37 template std::shared_ptr<detection::GaussianPsf> table::io::PersistableFacade<
38  detection::GaussianPsf>::dynamicCast(std::shared_ptr<table::io::Persistable> const&);
39 
40 namespace detection {
41 
42 namespace {
43 
44 // Read-only singleton struct containing the schema and keys that a GaussianPsf is mapped
45 // to in record persistence.
46 struct GaussianPsfPersistenceHelper {
47  afw::table::Schema schema;
48  afw::table::PointKey<int> dimensions;
49  afw::table::Key<double> sigma;
50 
51  static GaussianPsfPersistenceHelper const& get() {
52  static GaussianPsfPersistenceHelper instance;
53  return instance;
54  }
55 
56  // No copying
57  GaussianPsfPersistenceHelper(const GaussianPsfPersistenceHelper&) = delete;
58  GaussianPsfPersistenceHelper& operator=(const GaussianPsfPersistenceHelper&) = delete;
59 
60  // No moving
61  GaussianPsfPersistenceHelper(GaussianPsfPersistenceHelper&&) = delete;
62  GaussianPsfPersistenceHelper& operator=(GaussianPsfPersistenceHelper&&) = delete;
63 
64 private:
65  GaussianPsfPersistenceHelper()
66  : schema(),
67  dimensions(afw::table::PointKey<int>::addFields(schema, "dimensions",
68  "width/height of realization of Psf", "pixel")),
69  sigma(schema.addField<double>("sigma", "radius of Gaussian", "pixel")) {}
70 };
71 
72 class GaussianPsfFactory : public afw::table::io::PersistableFactory {
73 public:
74  std::shared_ptr<afw::table::io::Persistable> read(InputArchive const& archive,
75  CatalogVector const& catalogs) const override {
76  static GaussianPsfPersistenceHelper const& keys = GaussianPsfPersistenceHelper::get();
77  LSST_ARCHIVE_ASSERT(catalogs.size() == 1u);
78  LSST_ARCHIVE_ASSERT(catalogs.front().size() == 1u);
79  afw::table::BaseRecord const& record = catalogs.front().front();
80  LSST_ARCHIVE_ASSERT(record.getSchema() == keys.schema);
81  return std::make_shared<GaussianPsf>(record.get(keys.dimensions.getX()),
82  record.get(keys.dimensions.getY()), record.get(keys.sigma));
83  }
84 
85  GaussianPsfFactory(std::string const& name) : afw::table::io::PersistableFactory(name) {}
86 };
87 
88 GaussianPsfFactory registration("GaussianPsf");
89 
90 void checkDimensions(lsst::geom::Extent2I const& dimensions) {
91  if (dimensions.getX() % 2 == 0 || dimensions.getY() % 2 == 2) {
92  throw LSST_EXCEPT(pex::exceptions::InvalidParameterError, "GaussianPsf dimensions must be odd");
93  }
94 }
95 
96 } // namespace
97 
98 GaussianPsf::GaussianPsf(int width, int height, double sigma)
99  : Psf(true), _dimensions(width, height), _sigma(sigma) {
100  checkDimensions(_dimensions);
101 }
102 
104  : Psf(true), _dimensions(dimensions), _sigma(sigma) {
105  checkDimensions(_dimensions);
106 }
107 
108 GaussianPsf::GaussianPsf(GaussianPsf const&) = default;
110 GaussianPsf::~GaussianPsf() = default;
111 
113  return std::make_shared<GaussianPsf>(_dimensions, _sigma);
114 }
115 
117  return std::make_shared<GaussianPsf>(lsst::geom::Extent2I(width, height), _sigma);
118 }
119 
120 std::string GaussianPsf::getPersistenceName() const { return "GaussianPsf"; }
121 
122 std::string GaussianPsf::getPythonModule() const { return "lsst.afw.detection"; }
123 
125  static GaussianPsfPersistenceHelper const& keys = GaussianPsfPersistenceHelper::get();
126  afw::table::BaseCatalog catalog = handle.makeCatalog(keys.schema);
128  (*record)[keys.dimensions.getX()] = _dimensions.getX();
129  (*record)[keys.dimensions.getY()] = _dimensions.getY();
130  (*record)[keys.sigma] = getSigma();
131  handle.saveCatalog(catalog);
132 }
133 
134 std::shared_ptr<GaussianPsf::Image> GaussianPsf::doComputeKernelImage(lsst::geom::Point2D const&,
135  image::Color const&) const {
137  Image::Array array = r->getArray();
138  double sum = 0.0;
139  for (int yIndex = 0, y = r->getY0(); yIndex < _dimensions.getY(); ++yIndex, ++y) {
140  Image::Array::Reference row = array[yIndex];
141  for (int xIndex = 0, x = r->getX0(); xIndex < _dimensions.getX(); ++xIndex, ++x) {
142  sum += row[xIndex] = std::exp(-0.5 * (x * x + y * y) / (_sigma * _sigma));
143  }
144  }
145  ndarray::asEigenMatrix(array) /= sum;
146  return r;
147 }
148 
149 double GaussianPsf::doComputeApertureFlux(double radius, lsst::geom::Point2D const& position,
150  image::Color const& color) const {
151  return 1.0 - std::exp(-0.5 * radius * radius / (_sigma * _sigma));
152 }
153 
154 geom::ellipses::Quadrupole GaussianPsf::doComputeShape(lsst::geom::Point2D const& position,
155  image::Color const& color) const {
156  return geom::ellipses::Quadrupole(_sigma * _sigma, _sigma * _sigma, 0.0);
157 }
158 
159 lsst::geom::Box2I GaussianPsf::doComputeBBox(lsst::geom::Point2D const& position,
160  image::Color const& color) const {
161  return lsst::geom::Box2I(lsst::geom::Point2I(-_dimensions / 2),
162  _dimensions); // integer truncation intentional
163 }
164 } // namespace detection
165 } // namespace afw
166 } // namespace lsst
table::Key< std::string > name
Definition: Amplifier.cc:116
double x
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
afw::table::Key< double > sigma
Definition: GaussianPsf.cc:49
afw::table::PointKey< int > dimensions
Definition: GaussianPsf.cc:48
afw::table::Schema schema
Definition: GaussianPsf.cc:47
int y
Definition: SpanSet.cc:48
#define LSST_ARCHIVE_ASSERT(EXPR)
An assertion macro used to validate the structure of an InputArchive.
Definition: Persistable.h:48
A circularly symmetric Gaussian Psf class with no spatial variation, intended mostly for testing purp...
Definition: GaussianPsf.h:42
std::shared_ptr< afw::detection::Psf > resized(int width, int height) const override
Return a clone with specified kernel dimensions.
Definition: GaussianPsf.cc:116
std::string getPersistenceName() const override
Return the unique name used to persist this object and look up its factory.
Definition: GaussianPsf.cc:120
double getSigma() const
Return the radius of the Gaussian.
Definition: GaussianPsf.h:77
void write(OutputArchiveHandle &handle) const override
Write the object to one or more catalogs.
Definition: GaussianPsf.cc:124
std::string getPythonModule() const override
Return the fully-qualified Python module that should be imported to guarantee that its factory is reg...
Definition: GaussianPsf.cc:122
std::shared_ptr< afw::detection::Psf > clone() const override
Polymorphic deep copy; should usually be unnecessary because Psfs are immutable.
Definition: GaussianPsf.cc:112
GaussianPsf(int width, int height, double sigma)
Constructor for a GaussianPsf.
Definition: GaussianPsf.cc:98
A polymorphic base class for representing an image's Point Spread Function.
Definition: Psf.h:76
lsst::geom::Box2I computeBBox() const
Definition: Psf.cc:135
image::Image< Pixel > Image
Image type returned by computeImage.
Definition: Psf.h:83
Describe the colour of a source.
Definition: Color.h:26
typename ndarray::Array< Pixel, 2, 1 > Array
A mutable ndarray representation of the image.
Definition: ImageBase.h:149
std::shared_ptr< RecordT > addNew()
Create a new record, add it to the end of the catalog, and return a pointer to it.
Definition: Catalog.h:490
An object passed to Persistable::write to allow it to persist itself.
void saveCatalog(BaseCatalog const &catalog)
Save a catalog in the archive.
BaseCatalog makeCatalog(Schema const &schema)
Return a new, empty catalog with the given schema.
An integer coordinate rectangle.
Definition: Box.h:55
T exp(T... args)
FilterProperty & operator=(FilterProperty const &)=default
A base class for image defects.
int row
Definition: CR.cc:145
std::shared_ptr< table::io::Persistable > read(table::io::InputArchive const &archive, table::io::CatalogVector const &catalogs) const override
Definition: warpExposure.cc:0