Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04a91732dc+a3f7a6a005,g07dc498a13+5ab4d22ec3,g0fba68d861+870ee37b31,g1409bbee79+5ab4d22ec3,g1a7e361dbc+5ab4d22ec3,g1fd858c14a+11200c7927,g20f46db602+25d63fd678,g35bb328faa+fcb1d3bbc8,g4d2262a081+cc8af5cafb,g4d39ba7253+6b9d64fe03,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g60b5630c4e+6b9d64fe03,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8048e755c2+a1301e4c20,g8852436030+a750987b4a,g89139ef638+5ab4d22ec3,g89e1512fd8+a86d53a4aa,g8d6b6b353c+6b9d64fe03,g9125e01d80+fcb1d3bbc8,g989de1cb63+5ab4d22ec3,g9f33ca652e+38ca901d1a,ga9baa6287d+6b9d64fe03,gaaedd4e678+5ab4d22ec3,gabe3b4be73+1e0a283bba,gb1101e3267+aa269f591c,gb58c049af0+f03b321e39,gb90eeb9370+af74afe682,gc741bbaa4f+7f5db660ea,gcf25f946ba+a750987b4a,gd315a588df+b78635c672,gd6cbbdb0b4+c8606af20c,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+5839af1903,ge278dab8ac+932305ba37,ge82c20c137+76d20ab76d,w.2025.11
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
_exposure.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 "pybind11/pybind11.h"
26
34
35namespace py = pybind11;
36using namespace pybind11::literals;
37
38namespace lsst {
39namespace afw {
40namespace image {
41namespace {
42
43template <typename PixelT>
44using PyExposure = py::class_<Exposure<PixelT>, std::shared_ptr<Exposure<PixelT>>>;
45
46/*
47Declare a constructor that takes an Exposure of FromPixelT and returns an Exposure cast to ToPixelT
48
49The mask and variance must be of the standard types.
50
51@param[in] cls The pybind11 class to which add the constructor
52*/
53template <typename FromPixelT, typename ToPixelT>
54void declareCastConstructor(PyExposure<ToPixelT> &cls) {
55 cls.def(py::init<Exposure<FromPixelT> const &, bool const>(), "src"_a, "deep"_a);
56}
57
58template <typename PixelT> // only the image type varies; mask and variance are fixed to default tparams
59PyExposure<PixelT> declareExposure(lsst::cpputils::python::WrapperCollection &wrappers,
60 const std::string &suffix) {
61 using ExposureT = Exposure<PixelT>;
62 using MaskedImageT = typename ExposureT::MaskedImageT;
63 wrappers.wrap([](auto &mod) {
64 mod.def("makeExposure", &makeExposure<PixelT, MaskPixel, VariancePixel>, "maskedImage"_a,
65 "wcs"_a = std::shared_ptr<geom::SkyWcs const>());
66 });
67 return wrappers.wrapType(
68 PyExposure<PixelT>(wrappers.module, ("Exposure" + suffix).c_str()), [](auto &mod, auto &cls) {
69 /* Constructors */
70 cls.def(py::init<unsigned int, unsigned int, std::shared_ptr<geom::SkyWcs const>>(),
71 "width"_a, "height"_a, "wcs"_a = std::shared_ptr<geom::SkyWcs const>());
72 cls.def(py::init<lsst::geom::Extent2I const &, std::shared_ptr<geom::SkyWcs const>>(),
73 "dimensions"_a = lsst::geom::Extent2I(),
74 "wcs"_a = std::shared_ptr<geom::SkyWcs const>());
75 cls.def(py::init<lsst::geom::Box2I const &, std::shared_ptr<geom::SkyWcs const>>(), "bbox"_a,
76 "wcs"_a = std::shared_ptr<geom::SkyWcs const>());
77 cls.def(py::init<MaskedImageT &, std::shared_ptr<geom::SkyWcs const>>(), "maskedImage"_a,
78 "wcs"_a = std::shared_ptr<geom::SkyWcs const>());
79 cls.def(py::init<MaskedImageT &, std::shared_ptr<ExposureInfo>>(), "maskedImage"_a,
80 "exposureInfo"_a);
81 cls.def(py::init<std::string const &, lsst::geom::Box2I const &, ImageOrigin, bool, bool>(),
82 "fileName"_a, "bbox"_a = lsst::geom::Box2I(), "origin"_a = PARENT,
83 "conformMasks"_a = false, "allowUnsafe"_a = false);
84 cls.def(py::init<fits::MemFileManager &, lsst::geom::Box2I const &, ImageOrigin, bool,
85 bool>(),
86 "manager"_a, "bbox"_a = lsst::geom::Box2I(), "origin"_a = PARENT,
87 "conformMasks"_a = false, "allowUnsafe"_a = false);
88 cls.def(py::init<ExposureT const &, bool>(), "other"_a, "deep"_a = false);
89 cls.def(py::init<ExposureT const &, lsst::geom::Box2I const &, ImageOrigin, bool>(),
90 "other"_a, "bbox"_a, "origin"_a = PARENT, "deep"_a = false);
91
92 /* Members */
93 cls.def("getMaskedImage", (MaskedImageT(ExposureT::*)()) & ExposureT::getMaskedImage);
94 cls.def("setMaskedImage", &ExposureT::setMaskedImage, "maskedImage"_a);
95 cls.def_property("maskedImage", (MaskedImageT(ExposureT::*)()) & ExposureT::getMaskedImage,
96 &ExposureT::setMaskedImage);
97 cls.def("getMetadata", &ExposureT::getMetadata);
98 cls.def("setMetadata", &ExposureT::setMetadata, "metadata"_a);
99 cls.def_property("metadata", &ExposureT::getMetadata, &ExposureT::setMetadata);
100 cls.def("getWidth", &ExposureT::getWidth);
101 cls.def("getHeight", &ExposureT::getHeight);
102 cls.def_property_readonly("width", &ExposureT::getWidth);
103 cls.def_property_readonly("height", &ExposureT::getHeight);
104 cls.def("getDimensions", &ExposureT::getDimensions);
105 cls.def("getX0", &ExposureT::getX0);
106 cls.def("getY0", &ExposureT::getY0);
107 cls.def_property_readonly("x0", &ExposureT::getX0);
108 cls.def_property_readonly("y0", &ExposureT::getY0);
109 cls.def("getXY0", &ExposureT::getXY0);
110 cls.def("setXY0", &ExposureT::setXY0, "xy0"_a);
111 cls.def("getBBox", &ExposureT::getBBox, "origin"_a = PARENT);
112 cls.def("getWcs", (std::shared_ptr<geom::SkyWcs>(ExposureT::*)()) & ExposureT::getWcs);
113 cls.def_property_readonly(
114 "wcs", (std::shared_ptr<geom::SkyWcs>(ExposureT::*)()) & ExposureT::getWcs);
115 cls.def("setWcs", &ExposureT::setWcs, "wcs"_a);
116 cls.def("hasWcs", &ExposureT::hasWcs);
117 cls.def("getDetector", &ExposureT::getDetector);
118 cls.def_property_readonly("detector", &ExposureT::getDetector);
119 cls.def("setDetector", &ExposureT::setDetector, "detector"_a);
120 cls.def("getFilter", &ExposureT::getFilter);
121 cls.def_property_readonly("filter", &ExposureT::getFilter);
122 cls.def("setFilter", &ExposureT::setFilter, "filterLabel"_a);
123
124 cls.def("getPhotoCalib", &ExposureT::getPhotoCalib);
125 cls.def_property_readonly("photoCalib", &ExposureT::getPhotoCalib);
126 cls.def("setPhotoCalib", &ExposureT::setPhotoCalib, "photoCalib"_a);
127 cls.def("getPsf", (std::shared_ptr<detection::Psf>(ExposureT::*)()) & ExposureT::getPsf);
128 cls.def_property_readonly(
129 "psf", (std::shared_ptr<detection::Psf>(ExposureT::*)()) & ExposureT::getPsf);
130 cls.def("setPsf", &ExposureT::setPsf, "psf"_a);
131 cls.def("hasPsf", &ExposureT::hasPsf);
132 cls.def("getInfo", (std::shared_ptr<ExposureInfo>(ExposureT::*)()) & ExposureT::getInfo);
133 cls.def_property_readonly(
134 "info", (std::shared_ptr<ExposureInfo>(ExposureT::*)()) & ExposureT::getInfo);
135 cls.def("setInfo", &ExposureT::setInfo, "exposureInfo"_a);
136
137 cls.def_property_readonly("visitInfo",
138 [](ExposureT &self) { return self.getInfo()->getVisitInfo(); });
139
140 cls.def("setApCorrMap", &ExposureT::setApCorrMap, "apCorrMap"_a);
141 cls.def_property_readonly("apCorrMap", [](ExposureT &self) { return self.getApCorrMap(); });
142
143 cls.def("subset", &ExposureT::subset, "bbox"_a, "origin"_a = PARENT);
144
145 cls.def("writeFits", (void(ExposureT::*)(std::string const &) const) & ExposureT::writeFits);
146 cls.def("writeFits",
147 (void(ExposureT::*)(fits::MemFileManager &) const) & ExposureT::writeFits);
148 cls.def("writeFits", [](ExposureT &self, fits::Fits &fits) { self.writeFits(fits); });
149
150 cls.def(
151 "writeFits",
152 [](ExposureT &self, std::string const &filename,
153 fits::ImageWriteOptions const &imageOptions,
154 fits::ImageWriteOptions const &maskOptions,
155 fits::ImageWriteOptions const &varianceOptions) {
156 self.writeFits(filename, imageOptions, maskOptions, varianceOptions);
157 },
158 "filename"_a, "imageOptions"_a, "maskOptions"_a, "varianceOptions"_a);
159 cls.def(
160 "writeFits",
161 [](ExposureT &self, fits::MemFileManager &manager,
162 fits::ImageWriteOptions const &imageOptions,
163 fits::ImageWriteOptions const &maskOptions,
164 fits::ImageWriteOptions const &varianceOptions) {
165 self.writeFits(manager, imageOptions, maskOptions, varianceOptions);
166 },
167 "manager"_a, "imageOptions"_a, "maskOptions"_a, "varianceOptions"_a);
168 cls.def(
169 "writeFits",
170 [](ExposureT &self, fits::Fits &fits, fits::ImageWriteOptions const &imageOptions,
171 fits::ImageWriteOptions const &maskOptions,
172 fits::ImageWriteOptions const &varianceOptions) {
173 self.writeFits(fits, imageOptions, maskOptions, varianceOptions);
174 },
175 "fits"_a, "imageOptions"_a, "maskOptions"_a, "varianceOptions"_a);
176
177 cls.def_static("readFits", (ExposureT(*)(std::string const &))ExposureT::readFits);
178 cls.def_static("readFits", (ExposureT(*)(fits::MemFileManager &))ExposureT::readFits);
179
180 cls.def("getCutout",
181 py::overload_cast<lsst::geom::SpherePoint const &, lsst::geom::Extent2I const &>(
182 &ExposureT::getCutout, py::const_),
183 "center"_a, "size"_a);
184 cls.def("getCutout",
185 py::overload_cast<lsst::geom::Point2D const &, lsst::geom::Extent2I const &>(
186 &ExposureT::getCutout, py::const_),
187 "center"_a, "size"_a);
188 cls.def("getCutout",
189 py::overload_cast<lsst::geom::Box2I const &>(&ExposureT::getCutout, py::const_),
190 "box"_a);
191 });
192}
193} // namespace
195 lsst::cpputils::python::WrapperCollection wrappers(mod, "lsst.afw.image._exposure");
196 wrappers.addSignatureDependency("lsst.afw.image._apCorrMap");
197 wrappers.addSignatureDependency("lsst.afw.geom");
198 wrappers.addSignatureDependency("lsst.afw.detection");
199 wrappers.addSignatureDependency("lsst.afw.image._maskedImage");
200
201 auto clsExposureF = declareExposure<float>(wrappers, "F");
202 auto clsExposureD = declareExposure<double>(wrappers, "D");
203 declareExposure<int>(wrappers, "I");
204 declareExposure<std::uint16_t>(wrappers, "U");
205 declareExposure<std::uint64_t>(wrappers, "L");
206
207 // Declare constructors for casting all exposure types to to float and double
208 // (the only two types of casts that Python supports)
209 declareCastConstructor<int, float>(clsExposureF);
210 declareCastConstructor<int, double>(clsExposureD);
211
212 declareCastConstructor<float, double>(clsExposureD);
213 declareCastConstructor<double, float>(clsExposureF);
214
215 declareCastConstructor<std::uint16_t, float>(clsExposureF);
216 declareCastConstructor<std::uint16_t, double>(clsExposureD);
217
218 declareCastConstructor<std::uint64_t, float>(clsExposureF);
219 declareCastConstructor<std::uint64_t, double>(clsExposureD);
220
221 wrappers.finish();
222}
223} // namespace image
224} // namespace afw
225} // namespace lsst
Implementation of the Photometric Calibration class.
A class to contain the data, WCS, and other information needed to describe an image of the sky.
Definition Exposure.h:72
A helper class for subdividing pybind11 module across multiple translation units (i....
Definition python.h:242
void addSignatureDependency(std::string const &name)
Indicate an external module that provides a type used in function/method signatures.
Definition python.h:357
void wrap(WrapperCallback function)
Add a set of wrappers without defining a class.
Definition python.h:369
PyType wrapType(PyType cls, ClassWrapperCallback function, bool setModuleName=true)
Add a type (class or enum) wrapper, deferring method and other attribute definitions until finish() i...
Definition python.h:391
pybind11::module module
The module object passed to the PYBIND11_MODULE block that contains this WrapperCollection.
Definition python.h:448
void finish()
Invoke all deferred wrapper-declaring callables.
Definition python.h:435
PYBIND11_MODULE(_gauss2d, m)
Definition pybind11.cc:31
std::shared_ptr< Exposure< ImagePixelT, MaskPixelT, VariancePixelT > > makeExposure(MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT > &mimage, std::shared_ptr< geom::SkyWcs const > wcs=std::shared_ptr< geom::SkyWcs const >())
A function to return an Exposure of the correct type (cf.
Definition Exposure.h:484