1 #include "pybind11_opencv_numpy/pybind11/pybind11.h"
2 #include "pybind11_opencv_numpy/pybind11/stl.h"
3 #include "pybind11_opencv_numpy/pybind11/stl_bind.h"
6 #include "classifiedhsimage.h"
9 #include "pybind11_opencv_numpy/ndarray_converter.h"
13 void export_labelfile(pybind11::module m);
14 void export_hsimage(pybind11::module m);
15 void export_classifiedhsimage(pybind11::module m);
19 PYBIND11_MAKE_OPAQUE(std::vector<u_int16_t>)
20 PYBIND11_MAKE_OPAQUE(std::vector<std::vector<u_int16_t> >)
21 PYBIND11_MAKE_OPAQUE(std::vector<
double>)
22 PYBIND11_MAKE_OPAQUE(std::vector<std::vector<
double> >)
23 PYBIND11_MAKE_OPAQUE(std::vector<
float>)
24 PYBIND11_MAKE_OPAQUE(std::vector<cv::Mat>)
28 PYBIND11_MODULE(HSI,m)
30 namespace py = pybind11;
32 NDArrayConverter::init_numpy();
35 py::bind_vector<std::vector<u_int16_t> >(m,
"UInt16Vector");
36 py::bind_vector<std::vector<std::vector<u_int16_t> > >(m,
"UInt16VectorArray");
37 py::bind_vector<std::vector<double> >(m,
"DoubleVector");
38 py::bind_vector<std::vector<std::vector<double> > >(m,
"DoubleVectorArray");
39 py::bind_vector<std::vector<float> >(m,
"FloatVector");
40 py::bind_vector<std::vector<cv::Mat> >(m,
"MatVector");
41 py::bind_vector<std::vector<classColor> >(m,
"ClassInfoVector");
42 py::bind_vector<std::vector<colorClass> >(m,
"ColorInfoVector");
46 export_classifiedhsimage(m);
std::pair< cv::Vec3b, std::string > colorClass
The colorClass typedef creates a simple interface that is reversed from classColor, for ease of use in creating Python dict() types relating a color to a class.
std::pair< std::string, cv::Vec3b > classColor
The classColor typedef creates a simple interface for pairing a class name with a specific OpenCV col...