XRPrimer (C++ API)  0.6.0
xrprimer_pybind.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <pybind11/detail/common.h>
4 #include <pybind11/detail/internals.h>
5 #include <pybind11/eigen.h>
6 #include <pybind11/functional.h>
7 #include <pybind11/numpy.h>
8 #include <pybind11/operators.h>
9 #include <pybind11/pybind11.h>
10 #include <pybind11/stl.h>
11 #include <pybind11/stl_bind.h>
12 
15 
16 namespace py = pybind11;
17 using namespace py::literals;
18 
19 PYBIND11_MAKE_OPAQUE(std::vector<int>);
20 PYBIND11_MAKE_OPAQUE(std::vector<int64_t>);
21 PYBIND11_MAKE_OPAQUE(std::vector<uint8_t>);
22 PYBIND11_MAKE_OPAQUE(std::vector<float>);
23 PYBIND11_MAKE_OPAQUE(std::vector<double>);
24 PYBIND11_MAKE_OPAQUE(std::vector<PinholeCameraParameter>);
PYBIND11_MAKE_OPAQUE(std::vector< int >)