Loading [MathJax]/extensions/tex2jax.js
LSST Applications g0fba68d861+849f694866,g1fd858c14a+7a7b9dd5ed,g2c84ff76c0+5cb23283cf,g30358e5240+f0e04ebe90,g35bb328faa+fcb1d3bbc8,g436fd98eb5+bdc6fcdd04,g4af146b050+742274f7cd,g4d2262a081+9d5bd0394b,g4e0f332c67+cb09b8a5b6,g53246c7159+fcb1d3bbc8,g5a012ec0e7+477f9c599b,g60b5630c4e+bdc6fcdd04,g67b6fd64d1+2218407a0c,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g87b7deb4dc+777438113c,g8852436030+ebf28f0d95,g89139ef638+2218407a0c,g9125e01d80+fcb1d3bbc8,g989de1cb63+2218407a0c,g9f33ca652e+42fb53f4c8,g9f7030ddb1+11b9b6f027,ga2b97cdc51+bdc6fcdd04,gab72ac2889+bdc6fcdd04,gabe3b4be73+1e0a283bba,gabf8522325+3210f02652,gb1101e3267+9c79701da9,gb58c049af0+f03b321e39,gb89ab40317+2218407a0c,gcf25f946ba+ebf28f0d95,gd6cbbdb0b4+e8f9c9c900,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+47bbabaf80,gded526ad44+8c3210761e,ge278dab8ac+3ef3db156b,ge410e46f29+2218407a0c,gf67bdafdda+2218407a0c,v29.0.0.rc3
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
_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>
29
37
38namespace py = pybind11;
39using namespace py::literals;
40
41namespace lsst {
42namespace afw {
43namespace math {
44
45namespace {
54template <typename KernelT>
55void declareWarpingKernel(lsst::cpputils::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::cpputils::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::cpputils::python::WrapperCollection &wrappers) {
93 wrappers.wrap([](auto &mod) {
94 typename DestImageT::SinglePixel const EdgePixel =
96 mod.def("warpImage",
97 (int (*)(DestImageT &, geom::SkyWcs const &, SrcImageT const &, geom::SkyWcs const &,
98 WarpingControl const &, typename DestImageT::SinglePixel)) &
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)) &
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::cpputils::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::cpputils::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
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 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition SkyWcs.h:117
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
A kernel described by a pair of functions: func(x, y) = colFunc(x) * rowFunc(y)
Definition Kernel.h:860
Parameters to control convolution.
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
Transform< Point2Endpoint, Point2Endpoint > TransformPoint2ToPoint2
Definition Transform.h:300
py::class_< PixelAreaBoundedField, std::shared_ptr< PixelAreaBoundedField >, BoundedField > PyClass
void wrapWarpExposure(lsst::cpputils::python::WrapperCollection &)
int warpCenteredImage(DestImageT &destImage, SrcImageT const &srcImage, lsst::geom::LinearTransform const &linearTransform, lsst::geom::Point2D const &centerPosition, WarpingControl const &control, typename DestImageT::SinglePixel padValue=lsst::afw::math::edgePixel< DestImageT >(typename lsst::afw::image::detail::image_traits< DestImageT >::image_category()))
Warp an image with a LinearTranform about a specified point.
int warpImage(DestImageT &destImage, geom::SkyWcs const &destWcs, SrcImageT const &srcImage, geom::SkyWcs const &srcWcs, WarpingControl const &control, typename DestImageT::SinglePixel padValue=lsst::afw::math::edgePixel< DestImageT >(typename lsst::afw::image::detail::image_traits< DestImageT >::image_category()))
Warp an Image or MaskedImage to a new Wcs.
int warpExposure(DestExposureT &destExposure, SrcExposureT const &srcExposure, WarpingControl const &control, typename DestExposureT::MaskedImageT::SinglePixel padValue=lsst::afw::math::edgePixel< typename DestExposureT::MaskedImageT >(typename lsst::afw::image::detail::image_traits< typename DestExposureT::MaskedImageT >::image_category()))
Warp (remap) one exposure to another.
ImageT::SinglePixel edgePixel(lsst::afw::image::detail::Image_tag)
Return an off-the-edge pixel appropriate for a given Image type.
typename ImageT::image_category image_category
Definition ImageBase.h:67