wrap_Options.cpp
Go to the documentation of this file.
00001 #include <pano_py/pano_py.h>
00002 
00003 #include <pano_core/pano_core.h>
00004 #include <pano_py/opencv.h>
00005 
00006 
00007 using namespace pano;
00008 using namespace cv;
00009 
00010 namespace pano_py{
00011 
00012 void wrap_Options(){
00013           bp::class_<std::list<std::string> >("list_string")
00014               .def("assign", &container_assign<std::list<std::string> >)
00015               .def("get", &container_get<std::list<std::string> >)
00016               ;
00017 
00018           bp::class_<Options>("Options")
00019               .def_readwrite("camera",&Options::camera)
00020               .def_readwrite("directory",&Options::directory)
00021               .def_readwrite("stitch_output",&Options::stitch_output)
00022               .def_readwrite("image_names",&Options::image_names)
00023               .def_readwrite("stitch_size",&Options::stitch_size)
00024               .def_readwrite("fitter_params",&Options::fitter_params)
00025               ;
00026 
00027 }
00028 
00029 }


pano_py
Author(s): Ethan Rublee
autogenerated on Mon Oct 6 2014 08:05:14