HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
main.cpp
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"
4 
5 #include "labelfile.h"
6 #include "classifiedhsimage.h"
7 #include "hsimage.h"
8 
9 #include "pybind11_opencv_numpy/ndarray_converter.h"
10 
11 
12 //declarations for Python class exports
13 void export_labelfile(pybind11::module m);
14 void export_hsimage(pybind11::module m);
15 void export_classifiedhsimage(pybind11::module m);
16 
17 
18 //PYBIND11_MAKE_OPAQUE(std::vector<std::string>)
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>)
25 PYBIND11_MAKE_OPAQUE(std::vector<classColor>)
26 PYBIND11_MAKE_OPAQUE(std::vector<colorClass>)
27 
28 PYBIND11_MODULE(HSI,m)
29 {
30  namespace py = pybind11;
31 
32  NDArrayConverter::init_numpy();
33 
34 // py::bind_vector<std::vector<std::string> >(m, "StringVector");
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");
43 
44  export_labelfile(m);
45  export_hsimage(m);
46  export_classifiedhsimage(m);
47 }
48 
49 
50 //BOOST_PYTHON_MODULE(HSI)
51 //{
52 // namespace bp = boost::python;
53 
54 // // specify that this module is actually a package
55 // bp::object package = bp::scope();
56 // package.attr("__path__") = "HSI";
57 
58 // init_ar();
59 
60 // //initialize converters
61 // boost::python::to_python_converter<cv::Mat,
62 // pbcvt::matToNDArrayBoostConverter>();
63 // pbcvt::matFromNDArrayBoostConverter();
64 
65 // boost::python::to_python_converter<cv::Vec3b,
66 // cv_vec3b_to_python_converter>();
67 
68 // iterable_converter()
69 // .from_python<std::vector<float>> () \
70 // .from_python<std::vector<std::string>> () \
71 // ;
72 
73 // std_pair_to_python_converter<std::string, cv::Vec3b>();
74 
75 // MAKE_VECTOR_WRAPPER(std::vector<std::string>, stringVector);
76 // MAKE_VECTOR_WRAPPER(std::vector<u_int16_t>, uint16Vector);
77 // MAKE_VECTOR_WRAPPER(std::vector<std::vector<u_int16_t>>, classSpectraArray);
78 // MAKE_VECTOR_WRAPPER(std::vector<std::vector<double>>, classTFArray);
79 // MAKE_VECTOR_WRAPPER(std::vector<double>, doubleVector);
80 // MAKE_VECTOR_WRAPPER(std::vector<float>, floatVector);
81 // MAKE_VECTOR_WRAPPER_LIMITED(std::vector<cv::Mat>, cvMatVector);
82 // MAKE_VECTOR_WRAPPER_LIMITED(std::vector<classColor>, classInfoVector);
83 
84 // export_labelfile();
85 // export_hsimage();
86 // export_classifiedhsimage();
87 //}
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.
Definition: labelfile.h:41
std::pair< std::string, cv::Vec3b > classColor
The classColor typedef creates a simple interface for pairing a class name with a specific OpenCV col...