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
_AffineTransform.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 
29 #include "lsst/utils/python.h"
30 
31 namespace py = pybind11;
32 using namespace pybind11::literals;
33 
34 namespace lsst {
35 namespace geom {
36 
38  wrappers.wrapType(
39  py::class_<AffineTransform, std::shared_ptr<AffineTransform>>(wrappers.module, "AffineTransform"),
40  [](auto & mod, auto & cls) mutable {
41 
42  // Parameters enum is really only used as integer constants.
43  cls.attr("XX") = py::cast(int(AffineTransform::Parameters::XX));
44  cls.attr("YX") = py::cast(int(AffineTransform::Parameters::YX));
45  cls.attr("XY") = py::cast(int(AffineTransform::Parameters::XY));
46  cls.attr("YY") = py::cast(int(AffineTransform::Parameters::YY));
47  cls.attr("X") = py::cast(int(AffineTransform::Parameters::X));
48  cls.attr("Y") = py::cast(int(AffineTransform::Parameters::Y));
49 
50  /* Constructors */
51  cls.def(py::init<>());
52  cls.def(py::init<Eigen::Matrix3d const &>(), "matrix"_a);
53  cls.def(py::init<Eigen::Matrix2d const &>(), "linear"_a);
54  cls.def(py::init<Eigen::Vector2d const &>(), "translation"_a);
55  cls.def(py::init<Eigen::Matrix2d const &, Eigen::Vector2d const &>(),
56  "linear"_a, "translation"_a);
57  cls.def(py::init<LinearTransform const &>(), "linear"_a);
58  cls.def(py::init<Extent2D const &>(), "translation"_a);
59  cls.def(py::init<LinearTransform const &, Extent2D const &>(), "linear"_a, "translation"_a);
60 
61  /* Operators and special methods */
62  cls.def("__mul__", &AffineTransform::operator*, py::is_operator());
63  cls.def("__call__",
64  py::overload_cast<Point2D const &>(&AffineTransform::operator(), py::const_));
65  cls.def("__call__",
66  py::overload_cast<Extent2D const &>(&AffineTransform::operator(), py::const_));
67  cls.def("__setitem__", [](AffineTransform &self, int i, double value) {
68  if (i < 0 || i > 5) {
69  PyErr_Format(PyExc_IndexError, "Invalid index for AffineTransform: %d", i);
70  throw py::error_already_set();
71  }
72  self[i] = value;
73  });
74  cls.def("__getitem__", [](AffineTransform const &self, int row, int col) {
75  if (row < 0 || row > 2 || col < 0 || col > 2) {
76  PyErr_Format(PyExc_IndexError, "Invalid index for AffineTransform: %d, %d", row, col);
77  throw py::error_already_set();
78  }
79  return (self.getMatrix())(row, col);
80  });
81  cls.def("__getitem__", [](AffineTransform const &self, int i) {
82  if (i < 0 || i > 5) {
83  PyErr_Format(PyExc_IndexError, "Invalid index for AffineTransform: %d", i);
84  throw py::error_already_set();
85  }
86  return self[i];
87  });
88  cls.def("__str__", [](AffineTransform const &self) {
89  return py::str(py::cast(self.getMatrix())); }
90  );
91  cls.def("__repr__", [](AffineTransform const &self) {
92  return py::str("AffineTransform(\n{}\n)").format(py::cast(self.getMatrix()));
93  });
94  cls.def("__reduce__", [cls](AffineTransform const &self) {
95  return py::make_tuple(cls, py::make_tuple(py::cast(self.getMatrix())));
96  });
97 
98  /* Members */
99  cls.def("inverted", &AffineTransform::inverted);
100  cls.def("isIdentity", &AffineTransform::isIdentity);
101  cls.def("getTranslation", (Extent2D & (AffineTransform::*)()) & AffineTransform::getTranslation);
102  cls.def("getLinear", (LinearTransform & (AffineTransform::*)()) & AffineTransform::getLinear);
103  cls.def("getMatrix", &AffineTransform::getMatrix);
104  cls.def("getParameterVector", &AffineTransform::getParameterVector);
105  cls.def("setParameterVector", &AffineTransform::setParameterVector);
106  cls.def_static("makeScaling", py::overload_cast<double>(&AffineTransform::makeScaling));
107  cls.def_static("makeScaling", py::overload_cast<double, double>(&AffineTransform::makeScaling));
108  cls.def_static("makeRotation", &AffineTransform::makeRotation, "angle"_a);
109  cls.def_static("makeTranslation", &AffineTransform::makeTranslation, "translation"_a);
110 
111  /* Non-members */
112  mod.def("makeAffineTransformFromTriple", makeAffineTransformFromTriple);
113  }
114  );
115 }
116 
117 } // namespace geom
118 } // namespace lsst
int col
Definition: CR.cc:144
An affine coordinate transformation consisting of a linear transformation and an offset.
pybind11::module module
The module object passed to the PYBIND11_MODULE block that contains this WrapperCollection.
Definition: python.h:448
A base class for image defects.
void wrapAffineTransform(utils::python::WrapperCollection &wrappers)
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
AffineTransform makeAffineTransformFromTriple(Point2D const &p1, Point2D const &p2, Point2D const &p3, Point2D const &q1, Point2D const &q2, Point2D const &q3)
int row
Definition: CR.cc:145