| 12 | void BindTwoViewGeometryScene(py::module& m); |
| 13 | |
| 14 | void BindSceneTypes(py::module& m) { |
| 15 | BindConstants(m); |
| 16 | BindPoint2D(m); |
| 17 | BindCamera(m); |
| 18 | BindFrame(m); |
| 19 | BindSceneImage(m); |
| 20 | BindTwoViewGeometryScene(m); |
| 21 | |
| 22 | // Must be defined here, see: https://github.com/colmap/colmap/pull/2558 |
| 23 | py::implicitly_convertible<py::iterable, Point2DVector>(); |
| 24 | } |
| 25 | |
| 26 | void BindCorrespondenceGraph(py::module& m); |
| 27 | void BindDatabase(py::module& m); |
no test coverage detected