LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
_psf.cc
Go to the documentation of this file.
1 /*
2  * This file is part of afw.
3  *
4  * Developed for the LSST Data Management System.
5  * This product includes software developed by the LSST Project
6  * (https://www.lsst.org).
7  * See the COPYRIGHT file at the top-level directory of this distribution
8  * for details of code ownership.
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <https://www.gnu.org/licenses/>.
22  */
23 
24 #include <memory>
25 
26 #include <pybind11/pybind11.h>
27 
28 #include "lsst/utils/python.h"
30 
31 #include "lsst/geom/Point.h"
32 #include "lsst/afw/image/Color.h"
33 #include "lsst/afw/table/io/python.h" // for addPersistableMethods
35 #include "lsst/afw/detection/Psf.h"
37 
38 namespace py = pybind11;
39 using namespace pybind11::literals;
40 
41 using lsst::utils::python::PySharedPtr;
42 
43 namespace lsst {
44 namespace afw {
45 namespace detection {
46 
47 
48 void wrapPsf(utils::python::WrapperCollection& wrappers) {
49  wrappers.addInheritanceDependency("lsst.afw.typehandling");
50  wrappers.addSignatureDependency("lsst.afw.geom.ellipses");
51  wrappers.addSignatureDependency("lsst.afw.image");
52  wrappers.addSignatureDependency("lsst.afw.fits");
53 
54  auto clsPsf = wrappers.wrapType(
55  py::class_<Psf, PySharedPtr<Psf>, typehandling::Storable, PsfTrampoline<>>(
56  wrappers.module, "Psf"
57  ),
58  [](auto& mod, auto& cls) {
59  table::io::python::addPersistableMethods<Psf>(cls);
60  cls.def(py::init<bool, size_t>(), "isFixed"_a=false, "capacity"_a=100); // Constructor for pure-Python subclasses
61  cls.def("clone", &Psf::clone);
62  cls.def("resized", &Psf::resized, "width"_a, "height"_a);
63 
64  // Position-required overloads. Can (likely) remove overload_cast<> once deprecation period for
65  // default position argument ends.
66  cls.def("computeImage",
67  py::overload_cast<lsst::geom::Point2D, image::Color, Psf::ImageOwnerEnum>(&Psf::computeImage, py::const_),
68  "position"_a,
69  "color"_a = image::Color(),
70  "owner"_a = Psf::ImageOwnerEnum::COPY
71  );
72  cls.def("computeKernelImage",
73  py::overload_cast<lsst::geom::Point2D, image::Color, Psf::ImageOwnerEnum>(&Psf::computeKernelImage, py::const_),
74  "position"_a,
75  "color"_a = image::Color(),
76  "owner"_a = Psf::ImageOwnerEnum::COPY
77  );
78  cls.def("computePeak",
79  py::overload_cast<lsst::geom::Point2D, image::Color>(&Psf::computePeak, py::const_),
80  "position"_a,
81  "color"_a = image::Color()
82  );
83  cls.def("computeApertureFlux",
84  py::overload_cast<double, lsst::geom::Point2D, image::Color>(&Psf::computeApertureFlux, py::const_),
85  "radius"_a,
86  "position"_a,
87  "color"_a = image::Color()
88  );
89  cls.def("computeShape",
90  py::overload_cast<lsst::geom::Point2D, image::Color>(&Psf::computeShape, py::const_),
91  "position"_a,
92  "color"_a = image::Color()
93  );
94  cls.def("computeBBox",
95  py::overload_cast<lsst::geom::Point2D, image::Color>(&Psf::computeBBox, py::const_),
96  "position"_a,
97  "color"_a = image::Color()
98  );
99  cls.def("computeImageBBox",
100  py::overload_cast<lsst::geom::Point2D, image::Color>(&Psf::computeImageBBox, py::const_),
101  "position"_a,
102  "color"_a = image::Color()
103  );
104  cls.def("computeKernelBBox",
105  py::overload_cast<lsst::geom::Point2D, image::Color>(&Psf::computeKernelBBox, py::const_),
106  "position"_a,
107  "color"_a = image::Color()
108  );
109  cls.def("getLocalKernel",
110  py::overload_cast<lsst::geom::Point2D, image::Color>(&Psf::getLocalKernel, py::const_),
111  "position"_a,
112  "color"_a = image::Color()
113  );
114 
115  // Deprecated default position argument overloads.
116  cls.def("computeImage",
117  [](const Psf& psf) {
118  py::gil_scoped_acquire gil;
119  auto warnings = py::module::import("warnings");
120  auto FutureWarning = py::handle(PyEval_GetBuiltins())["FutureWarning"];
121  warnings.attr("warn")(
122  "Default position argument overload is deprecated and will be "
123  "removed in version 24.0. Please explicitly specify a position.",
124  "category"_a=FutureWarning
125  );
126  return psf.computeImage();
127  }
128  );
129  cls.def("computeKernelImage",
130  [](const Psf& psf) {
131  py::gil_scoped_acquire gil;
132  auto warnings = py::module::import("warnings");
133  auto FutureWarning = py::handle(PyEval_GetBuiltins())["FutureWarning"];
134  warnings.attr("warn")(
135  "Default position argument overload is deprecated and will be "
136  "removed in version 24.0. Please explicitly specify a position.",
137  "category"_a=FutureWarning
138  );
139  return psf.computeKernelImage();
140  }
141  );
142  cls.def("computePeak",
143  [](const Psf& psf) {
144  py::gil_scoped_acquire gil;
145  auto warnings = py::module::import("warnings");
146  auto FutureWarning = py::handle(PyEval_GetBuiltins())["FutureWarning"];
147  warnings.attr("warn")(
148  "Default position argument overload is deprecated and will be "
149  "removed in version 24.0. Please explicitly specify a position.",
150  "category"_a=FutureWarning
151  );
152  return psf.computePeak();
153  }
154  );
155  cls.def("computeApertureFlux",
156  [](const Psf& psf, double radius) {
157  py::gil_scoped_acquire gil;
158  auto warnings = py::module::import("warnings");
159  auto FutureWarning = py::handle(PyEval_GetBuiltins())["FutureWarning"];
160  warnings.attr("warn")(
161  "Default position argument overload is deprecated and will be "
162  "removed in version 24.0. Please explicitly specify a position.",
163  "category"_a=FutureWarning
164  );
165  return psf.computeApertureFlux(radius);
166  },
167  "radius"_a
168  );
169  cls.def("computeShape",
170  [](const Psf& psf) {
171  py::gil_scoped_acquire gil;
172  auto warnings = py::module::import("warnings");
173  auto FutureWarning = py::handle(PyEval_GetBuiltins())["FutureWarning"];
174  warnings.attr("warn")(
175  "Default position argument overload is deprecated and will be "
176  "removed in version 24.0. Please explicitly specify a position.",
177  "category"_a=FutureWarning
178  );
179  return psf.computeShape();
180  }
181  );
182  cls.def("computeBBox",
183  [](const Psf& psf) {
184  py::gil_scoped_acquire gil;
185  auto warnings = py::module::import("warnings");
186  auto FutureWarning = py::handle(PyEval_GetBuiltins())["FutureWarning"];
187  warnings.attr("warn")(
188  "Default position argument overload is deprecated and will be "
189  "removed in version 24.0. Please explicitly specify a position.",
190  "category"_a=FutureWarning
191  );
192  return psf.computeBBox();
193  }
194  );
195  cls.def("computeImageBBox",
196  [](const Psf& psf) {
197  py::gil_scoped_acquire gil;
198  auto warnings = py::module::import("warnings");
199  auto FutureWarning = py::handle(PyEval_GetBuiltins())["FutureWarning"];
200  warnings.attr("warn")(
201  "Default position argument overload is deprecated and will be "
202  "removed in version 24.0. Please explicitly specify a position.",
203  "category"_a=FutureWarning
204  );
205  return psf.computeImageBBox();
206  }
207  );
208  cls.def("computeKernelBBox",
209  [](const Psf& psf) {
210  py::gil_scoped_acquire gil;
211  auto warnings = py::module::import("warnings");
212  auto FutureWarning = py::handle(PyEval_GetBuiltins())["FutureWarning"];
213  warnings.attr("warn")(
214  "Default position argument overload is deprecated and will be "
215  "removed in version 24.0. Please explicitly specify a position.",
216  "category"_a=FutureWarning
217  );
218  return psf.computeKernelBBox();
219  }
220  );
221  cls.def("getLocalKernel",
222  [](const Psf& psf) {
223  py::gil_scoped_acquire gil;
224  auto warnings = py::module::import("warnings");
225  auto FutureWarning = py::handle(PyEval_GetBuiltins())["FutureWarning"];
226  warnings.attr("warn")(
227  "Default position argument overload is deprecated and will be "
228  "removed in version 24.0. Please explicitly specify a position.",
229  "category"_a=FutureWarning
230  );
231  return psf.getLocalKernel();
232  }
233  );
234  // End deprecated default position argument overloads.
235 
236  cls.def("getAverageColor", &Psf::getAverageColor);
237  cls.def("getAveragePosition", &Psf::getAveragePosition);
238  cls.def_static("recenterKernelImage", &Psf::recenterKernelImage, "im"_a, "position"_a,
239  "warpAlgorithm"_a = "lanczos5", "warpBuffer"_a = 5);
240  cls.def("getCacheCapacity", &Psf::getCacheCapacity);
241  cls.def("setCacheCapacity", &Psf::setCacheCapacity);
242  }
243  );
244 
245  wrappers.wrapType(py::enum_<Psf::ImageOwnerEnum>(clsPsf, "ImageOwnerEnum"), [](auto& mod, auto& enm) {
246  enm.value("COPY", Psf::ImageOwnerEnum::COPY);
247  enm.value("INTERNAL", Psf::ImageOwnerEnum::INTERNAL);
248  enm.export_values();
249  });
250 }
251 
252 } // namespace detection
253 } // namespace afw
254 } // namespace lsst
A polymorphic base class for representing an image's Point Spread Function.
Definition: Psf.h:76
"Trampoline" for Psf to let it be used as a base class in Python.
Definition: python.h:50
Interface supporting iteration over heterogenous containers.
Definition: Storable.h:58
void wrapPsf(utils::python::WrapperCollection &wrappers)
Definition: _psf.cc:48
A base class for image defects.
Key< int > psf
Definition: Exposure.cc:65