LSSTApplications  17.0+11,17.0+34,17.0+56,17.0+57,17.0+59,17.0+7,17.0-1-g377950a+33,17.0.1-1-g114240f+2,17.0.1-1-g4d4fbc4+28,17.0.1-1-g55520dc+49,17.0.1-1-g5f4ed7e+52,17.0.1-1-g6dd7d69+17,17.0.1-1-g8de6c91+11,17.0.1-1-gb9095d2+7,17.0.1-1-ge9fec5e+5,17.0.1-1-gf4e0155+55,17.0.1-1-gfc65f5f+50,17.0.1-1-gfc6fb1f+20,17.0.1-10-g87f9f3f+1,17.0.1-11-ge9de802+16,17.0.1-16-ga14f7d5c+4,17.0.1-17-gc79d625+1,17.0.1-17-gdae4c4a+8,17.0.1-2-g26618f5+29,17.0.1-2-g54f2ebc+9,17.0.1-2-gf403422+1,17.0.1-20-g2ca2f74+6,17.0.1-23-gf3eadeb7+1,17.0.1-3-g7e86b59+39,17.0.1-3-gb5ca14a,17.0.1-3-gd08d533+40,17.0.1-30-g596af8797,17.0.1-4-g59d126d+4,17.0.1-4-gc69c472+5,17.0.1-6-g5afd9b9+4,17.0.1-7-g35889ee+1,17.0.1-7-gc7c8782+18,17.0.1-9-gc4bbfb2+3,w.2019.22
LSSTDataManagementBasePackage
_LinearTransform.cc
Go to the documentation of this file.
1 /*
2  * Developed for the LSST Data Management System.
3  * This product includes software developed by the LSST Project
4  * (https://www.lsst.org).
5  * See the COPYRIGHT file at the top-level directory of this distribution
6  * for details of code ownership.
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 GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #include "pybind11/pybind11.h"
23 #include "pybind11/eigen.h"
24 #include "pybind11/stl.h"
25 
26 #include "ndarray/pybind11.h"
27 
28 #include "lsst/utils/python.h"
29 
30 #include "lsst/geom/Extent.h"
31 #include "lsst/geom/Point.h"
33 
34 namespace py = pybind11;
35 using namespace pybind11::literals;
36 
37 namespace lsst {
38 namespace geom {
39 
41  wrappers.wrapType(
42  py::class_<LinearTransform, std::shared_ptr<LinearTransform>>(wrappers.module, "LinearTransform"),
43  [](auto & mod, auto & cls) {
44 
45  // Parameters enum is really only used as integer constants.
46  cls.attr("XX") = py::cast(int(LinearTransform::Parameters::XX));
47  cls.attr("YX") = py::cast(int(LinearTransform::Parameters::YX));
48  cls.attr("XY") = py::cast(int(LinearTransform::Parameters::XY));
49  cls.attr("YY") = py::cast(int(LinearTransform::Parameters::YY));
50 
51  /* Constructors */
52  cls.def(py::init<>());
53  cls.def(py::init<LinearTransform::Matrix const &>(), "matrix"_a);
54 
55  /* Operators */
56  cls.def("__call__",
57  py::overload_cast<Point2D const &>(&LinearTransform::operator(), py::const_));
58  cls.def("__call__",
59  py::overload_cast<Extent2D const &>(&LinearTransform::operator(), py::const_));
60  cls.def("__getitem__",
61  [](LinearTransform const &self, int i) { return self[utils::python::cppIndex(4, i)]; });
62  cls.def("__getitem__", [](LinearTransform const &self, std::pair<int, int> i) {
63  auto row = utils::python::cppIndex(2, i.first);
64  auto col = utils::python::cppIndex(2, i.second);
65  return self.getMatrix()(row, col);
66  });
67  cls.def("__mul__", &LinearTransform::operator*, py::is_operator());
68  cls.def("__add__", &LinearTransform::operator+, py::is_operator());
69  cls.def("__sub__", &LinearTransform::operator-, py::is_operator());
70  cls.def("__iadd__", &LinearTransform::operator+=);
71  cls.def("__isub__", &LinearTransform::operator-=);
72 
73  /* Members */
74  cls.def_static("makeScaling",
75  py::overload_cast<double>(&LinearTransform::makeScaling),
76  "scale"_a);
77  cls.def_static("makeScaling",
78  py::overload_cast<double, double>(&LinearTransform::makeScaling));
79  cls.def_static("makeRotation",
80  py::overload_cast<Angle>(LinearTransform::makeRotation),
81  "angle"_a);
82  cls.def("getParameterVector", &LinearTransform::getParameterVector);
83  cls.def("getMatrix",
84  py::overload_cast<>(& LinearTransform::getMatrix, py::const_));
85  cls.def("inverted", &LinearTransform::inverted);
86  cls.def("computeDeterminant", &LinearTransform::computeDeterminant);
87  cls.def("isIdentity", &LinearTransform::isIdentity);
88 
89  cls.def("set",
90  [](LinearTransform &self, double xx, double yx, double xy, double yy) {
91  self[LinearTransform::XX] = xx;
92  self[LinearTransform::XY] = xy;
93  self[LinearTransform::YX] = yx;
94  self[LinearTransform::YY] = yy;
95  },
96  "xx"_a, "yx"_a, "xy"_a, "yy"_a);
97 
98  cls.def("__str__", [](LinearTransform const &self) {
99  return py::str(py::cast(self.getMatrix()));
100  });
101  cls.def("__repr__", [](LinearTransform const &self) {
102  return py::str("LinearTransform(\n{}\n)").format(py::cast(self.getMatrix()));
103  });
104  cls.def("__reduce__", [cls](LinearTransform const &self) {
105  return py::make_tuple(cls, py::make_tuple(py::cast(self.getMatrix())));
106  });
107  }
108  );
109 }
110 
111 } // namespace geom
112 } // namespace lsst
int col
Definition: CR.cc:144
std::size_t cppIndex(std::ptrdiff_t size, std::ptrdiff_t i)
Compute a C++ index from a Python index (negative values count from the end) and range-check.
Definition: python.h:124
pybind11::module module
The module object passed to the PYBIND11_MODULE block that contains this WrapperCollection.
Definition: python.h:448
void wrapLinearTransform(WrapperCollection &wrappers)
A base class for image defects.
A helper class for subdividing pybind11 module across multiple translation units (i.e.
Definition: python.h:242
A 2D linear coordinate transformation.
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
int row
Definition: CR.cc:145