Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04a91732dc+7fec47d7bc,g07dc498a13+5ab4d22ec3,g0fba68d861+565de8e5d5,g1409bbee79+5ab4d22ec3,g1a7e361dbc+5ab4d22ec3,g1fd858c14a+11200c7927,g20f46db602+25d63fd678,g35bb328faa+fcb1d3bbc8,g4d2262a081+61302e889d,g4d39ba7253+d05e267ece,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g60b5630c4e+d05e267ece,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8048e755c2+a1301e4c20,g8852436030+163ceb82d8,g89139ef638+5ab4d22ec3,g89e1512fd8+fbb808ebce,g8d6b6b353c+d05e267ece,g9125e01d80+fcb1d3bbc8,g989de1cb63+5ab4d22ec3,g9f33ca652e+8abe617c77,ga9baa6287d+d05e267ece,gaaedd4e678+5ab4d22ec3,gabe3b4be73+1e0a283bba,gb1101e3267+fefe9ce5b1,gb58c049af0+f03b321e39,gb90eeb9370+824c420ec4,gc741bbaa4f+77ddc33078,gcf25f946ba+163ceb82d8,gd315a588df+0f88d5218e,gd6cbbdb0b4+c8606af20c,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+e6bd566e97,ge278dab8ac+932305ba37,ge82c20c137+76d20ab76d,w.2025.10
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
baselineUtils.cc
Go to the documentation of this file.
1/*
2 * LSST Data Management System
3 *
4 * This product includes software developed by the
5 * LSST Project (http://www.lsst.org/).
6 * See the COPYRIGHT file
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the LSST License Statement and
19 * the GNU General Public License along with this program. If not,
20 * see <https://www.lsstcorp.org/LegalNotices/>.
21 */
22#include "pybind11/pybind11.h"
23#include "pybind11/stl.h"
24
29
31
32namespace py = pybind11;
33using namespace pybind11::literals;
34
35namespace lsst {
36namespace meas {
37namespace deblender {
38
39namespace {
40
41template <typename ImagePixelT, typename MaskPixelT = lsst::afw::image::MaskPixel,
42 typename VariancePixelT = lsst::afw::image::VariancePixel>
43void declareBaselineUtils(py::module& mod, const std::string& suffix) {
44 using MaskedImageT = lsst::afw::image::MaskedImage<ImagePixelT, MaskPixelT, VariancePixelT>;
45 using ImagePtrT = std::shared_ptr<lsst::afw::image::Image<ImagePixelT>>;
46 using FootprintPtrT = std::shared_ptr<lsst::afw::detection::Footprint>;
48
49 py::class_<Class, std::shared_ptr<Class>> cls(mod, ("BaselineUtils" + suffix).c_str());
50 cls.def_static("symmetrizeFootprint", &Class::symmetrizeFootprint, "foot"_a, "cx"_a, "cy"_a);
51 // The C++ function returns a std::pair return value but also takes a referenced boolean
52 // (patchedEdges) that is modified by the function and used by the python API,
53 // so we wrap this in a lambda to combine the std::pair and patchedEdges in a tuple
54 // that is returned to python.
55 cls.def_static("buildSymmetricTemplate", [](MaskedImageT const& img,
56 lsst::afw::detection::Footprint const& foot,
57 lsst::afw::detection::PeakRecord const& pk, double sigma1,
58 bool minZero, bool patchEdges) {
59 bool patchedEdges;
60 std::pair<ImagePtrT, FootprintPtrT> result;
61
62 result = Class::buildSymmetricTemplate(img, foot, pk, sigma1, minZero, patchEdges, &patchedEdges);
63 return py::make_tuple(result.first, result.second, patchedEdges);
64 });
65 cls.def_static("medianFilter", &Class::medianFilter, "img"_a, "outimg"_a, "halfsize"_a);
66 cls.def_static("makeMonotonic", &Class::makeMonotonic, "img"_a, "pk"_a);
67 // apportionFlux expects an empty vector containing HeavyFootprint pointers that is modified
68 // in the function. But when a list is passed to pybind11 in place of the vector,
69 // the changes are not passed back to python. So instead we create the vector in this lambda and
70 // include it in the return value.
71 cls.def_static("apportionFlux", [](MaskedImageT const& img, lsst::afw::detection::Footprint const& foot,
72 std::vector<std::shared_ptr<lsst::afw::image::Image<ImagePixelT>>>
73 templates,
74 std::vector<std::shared_ptr<lsst::afw::detection::Footprint>>
75 templ_footprints,
76 ImagePtrT templ_sum, std::vector<bool> const& ispsf,
77 std::vector<int> const& pkx, std::vector<int> const& pky,
78 int strayFluxOptions, double clipStrayFluxFraction) {
79 using HeavyFootprintPtrList = std::vector<std::shared_ptr<
80 typename lsst::afw::detection::HeavyFootprint<ImagePixelT, MaskPixelT, VariancePixelT>>>;
81
82 std::vector<std::shared_ptr<lsst::afw::image::MaskedImage<ImagePixelT, MaskPixelT, VariancePixelT>>>
83 result;
84 HeavyFootprintPtrList strays;
85 result = Class::apportionFlux(img, foot, templates, templ_footprints, templ_sum, ispsf, pkx, pky,
86 strays, strayFluxOptions, clipStrayFluxFraction);
87
88 return py::make_tuple(result, strays);
89 });
90 cls.def_static("hasSignificantFluxAtEdge", &Class::hasSignificantFluxAtEdge, "img"_a, "sfoot"_a,
91 "thresh"_a);
92 cls.def_static("getSignificantEdgePixels", &Class::getSignificantEdgePixels, "img"_a, "sfoot"_a,
93 "thresh"_a);
94 // There appears to be an issue binding to a static const member of a templated type, so for now
95 // we just use the values constants
96 cls.attr("ASSIGN_STRAYFLUX") = py::cast(Class::ASSIGN_STRAYFLUX);
97 cls.attr("STRAYFLUX_TO_POINT_SOURCES_WHEN_NECESSARY") =
98 py::cast(Class::STRAYFLUX_TO_POINT_SOURCES_WHEN_NECESSARY);
99 cls.attr("STRAYFLUX_TO_POINT_SOURCES_ALWAYS") = py::cast(Class::STRAYFLUX_TO_POINT_SOURCES_ALWAYS);
100 cls.attr("STRAYFLUX_R_TO_FOOTPRINT") = py::cast(Class::STRAYFLUX_R_TO_FOOTPRINT);
101 cls.attr("STRAYFLUX_NEAREST_FOOTPRINT") = py::cast(Class::STRAYFLUX_NEAREST_FOOTPRINT);
102 cls.attr("STRAYFLUX_TRIM") = py::cast(Class::STRAYFLUX_TRIM);
103};
104
105} // <anonymous>
106
107PYBIND11_MODULE(baselineUtils, mod) {
108 py::module::import("lsst.afw.image");
109 py::module::import("lsst.afw.detection");
110
111 declareBaselineUtils<float>(mod, "F");
112}
113
114} // deblender
115} // meas
116} // lsst
117
std::int32_t MaskPixel
default type for Masks and MaskedImage Masks
float VariancePixel
default type for MaskedImage variance images
PYBIND11_MODULE(baselineUtils, mod)