LSST Applications 27.0.0,g0265f82a02+469cd937ee,g02d81e74bb+21ad69e7e1,g1470d8bcf6+cbe83ee85a,g2079a07aa2+e67c6346a6,g212a7c68fe+04a9158687,g2305ad1205+94392ce272,g295015adf3+81dd352a9d,g2bbee38e9b+469cd937ee,g337abbeb29+469cd937ee,g3939d97d7f+72a9f7b576,g487adcacf7+71499e7cba,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+df404f777f,g5a732f18d5+be83d3ecdb,g64a986408d+21ad69e7e1,g858d7b2824+21ad69e7e1,g8a8a8dda67+a6fc98d2e7,g99cad8db69+f62e5b0af5,g9ddcbc5298+d4bad12328,ga1e77700b3+9c366c4306,ga8c6da7877+71e4819109,gb0e22166c9+25ba2f69a1,gb6a65358fc+469cd937ee,gbb8dafda3b+69d3c0e320,gc07e1c2157+a98bf949bb,gc120e1dc64+615ec43309,gc28159a63d+469cd937ee,gcf0d15dbbd+72a9f7b576,gdaeeff99f8+a38ce5ea23,ge6526c86ff+3a7c1ac5f1,ge79ae78c31+469cd937ee,gee10cc3b42+a6fc98d2e7,gf1cff7945b+21ad69e7e1,gfbcc870c63+9a11dc8c8f
LSST Data Management Base Package
Loading...
Searching...
No Matches
_warpExposure.cc
Go to the documentation of this file.
1/*
2 * LSST Data Management System
3 * Copyright 2008-2016 AURA/LSST.
4 *
5 * This product includes software developed by the
6 * LSST Project (http://www.lsst.org/).
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
23#include <cstdint>
24#include <memory>
25#include <string>
26
27#include <pybind11/pybind11.h>
28#include <lsst/utils/python.h>
29
37
38namespace py = pybind11;
39using namespace py::literals;
40
41namespace lsst {
42namespace afw {
43namespace math {
44
45namespace {
54template <typename KernelT>
55void declareWarpingKernel(lsst::utils::python::WrapperCollection &wrappers, std::string const &name) {
56 using PyClass = py::class_<KernelT, std::shared_ptr<KernelT>, SeparableKernel>;
57 wrappers.wrapType(PyClass(wrappers.module, name.c_str()), [](auto &mod, auto &cls) {
58 cls.def(py::init<int>(), "order"_a);
59 cls.def("getOrder", &KernelT::getOrder);
60 cls.def("clone", &KernelT::clone);
61 table::io::python::addPersistableMethods(cls);
62 });
63}
64
73template <typename KernelT>
74void declareSimpleWarpingKernel(lsst::utils::python::WrapperCollection &wrappers, std::string const &name) {
75 using PyClass = py::class_<KernelT, std::shared_ptr<KernelT>, SeparableKernel>;
76 wrappers.wrapType(PyClass(wrappers.module, name.c_str()), [](auto &mod, auto &cls) {
77 cls.def(py::init<>());
78 cls.def("clone", &KernelT::clone);
79 table::io::python::addPersistableMethods(cls);
80 });
81}
82
91template <typename DestImageT, typename SrcImageT>
92void declareImageWarpingFunctions(lsst::utils::python::WrapperCollection &wrappers) {
93 wrappers.wrap([](auto &mod) {
94 typename DestImageT::SinglePixel const EdgePixel =
95 edgePixel<DestImageT>(typename image::detail::image_traits<DestImageT>::image_category());
96 mod.def("warpImage",
97 (int (*)(DestImageT &, geom::SkyWcs const &, SrcImageT const &, geom::SkyWcs const &,
98 WarpingControl const &, typename DestImageT::SinglePixel)) &
99 warpImage<DestImageT, SrcImageT>,
100 "destImage"_a, "destWcs"_a, "srcImage"_a, "srcWcs"_a, "control"_a, "padValue"_a = EdgePixel);
101
102 mod.def("warpImage",
103 (int (*)(DestImageT &, SrcImageT const &, geom::TransformPoint2ToPoint2 const &,
104 WarpingControl const &, typename DestImageT::SinglePixel)) &
105 warpImage<DestImageT, SrcImageT>,
106 "destImage"_a, "srcImage"_a, "srcToDest"_a, "control"_a, "padValue"_a = EdgePixel);
107
108 mod.def("warpCenteredImage", &warpCenteredImage<DestImageT, SrcImageT>, "destImage"_a, "srcImage"_a,
109 "linearTransform"_a, "centerPoint"_a, "control"_a, "padValue"_a = EdgePixel);
110 });
111}
112
123template <typename DestPixelT, typename SrcPixelT>
124void declareWarpingFunctions(lsst::utils::python::WrapperCollection &wrappers) {
127 using DestImageT = image::Image<DestPixelT>;
128 using SrcImageT = image::Image<SrcPixelT>;
131 wrappers.wrap([](auto &mod) {
132 mod.def("warpExposure", &warpExposure<DestExposureT, SrcExposureT>, "destExposure"_a, "srcExposure"_a,
133 "control"_a,
134 "padValue"_a = edgePixel<DestMaskedImageT>(
136 });
137 declareImageWarpingFunctions<DestImageT, SrcImageT>(wrappers);
138 declareImageWarpingFunctions<DestMaskedImageT, SrcMaskedImageT>(wrappers);
139}
140
141void declareWarpExposure(lsst::utils::python::WrapperCollection &wrappers) {
142 using PyClass = py::class_<WarpingControl, std::shared_ptr<WarpingControl>>;
143 wrappers.wrapType(PyClass(wrappers.module, "WarpingControl"), [](auto &mod, auto cls) {
144 cls.def(py::init<std::string, std::string, int, int, image::MaskPixel>(), "warpingKernelName"_a,
145 "maskWarpingKernelName"_a = "", "cacheSize"_a = 0, "interpLength"_a = 0,
146 "growFullMask"_a = 0);
147
148 cls.def("getCacheSize", &WarpingControl::getCacheSize);
149 cls.def("setCacheSize", &WarpingControl::setCacheSize, "cacheSize"_a);
150 cls.def("getInterpLength", &WarpingControl::getInterpLength);
151 cls.def("setInterpLength", &WarpingControl::setInterpLength, "interpLength"_a);
152 cls.def("setWarpingKernelName", &WarpingControl::setWarpingKernelName, "warpingKernelName"_a);
153 cls.def("getWarpingKernel", &WarpingControl::getWarpingKernel);
154 cls.def("setWarpingKernel", &WarpingControl::setWarpingKernel, "warpingKernel"_a);
155 cls.def("setMaskWarpingKernelName", &WarpingControl::setMaskWarpingKernelName,
156 "maskWarpingKernelName"_a);
157 cls.def("getMaskWarpingKernel", &WarpingControl::getMaskWarpingKernel);
158 cls.def("hasMaskWarpingKernel", &WarpingControl::hasMaskWarpingKernel);
159 cls.def("setMaskWarpingKernelName", &WarpingControl::setMaskWarpingKernelName,
160 "maskWarpingKernelName"_a);
161 cls.def("setMaskWarpingKernel", &WarpingControl::setMaskWarpingKernel, "maskWarpingKernel"_a);
162 cls.def("getGrowFullMask", &WarpingControl::getGrowFullMask);
163 cls.def("setGrowFullMask", &WarpingControl::setGrowFullMask, "growFullMask"_a);
164 table::io::python::addPersistableMethods(cls);
165 });
166}
167} // namespace
168void wrapWarpExposure(lsst::utils::python::WrapperCollection &wrappers) {
169 wrappers.addSignatureDependency("lsst.afw.image");
170 wrappers.addSignatureDependency("lsst.afw.geom.skyWcs");
171
172 declareWarpExposure(wrappers);
173 declareWarpingKernel<LanczosWarpingKernel>(wrappers, "LanczosWarpingKernel");
174 declareSimpleWarpingKernel<BilinearWarpingKernel>(wrappers, "BilinearWarpingKernel");
175 declareSimpleWarpingKernel<NearestWarpingKernel>(wrappers, "NearestWarpingKernel");
176 declareWarpingFunctions<double, double>(wrappers);
177 declareWarpingFunctions<double, float>(wrappers);
178 declareWarpingFunctions<double, int>(wrappers);
179 declareWarpingFunctions<double, std::uint16_t>(wrappers);
180 declareWarpingFunctions<float, float>(wrappers);
181 declareWarpingFunctions<float, int>(wrappers);
182 declareWarpingFunctions<float, std::uint16_t>(wrappers);
183 declareWarpingFunctions<int, int>(wrappers);
184 declareWarpingFunctions<std::uint16_t, std::uint16_t>(wrappers);
185}
186} // namespace math
187} // namespace afw
188} // namespace lsst
A class to contain the data, WCS, and other information needed to describe an image of the sky.
Definition Exposure.h:72
A class to represent a 2-dimensional array of pixels.
Definition Image.h:51
A class to manipulate images, masks, and variance as a single object.
Definition MaskedImage.h:74
py::class_< PixelAreaBoundedField, std::shared_ptr< PixelAreaBoundedField >, BoundedField > PyClass
void wrapWarpExposure(lsst::utils::python::WrapperCollection &)
typename ImageT::image_category image_category
Definition ImageBase.h:67