Initial pass at some boost python bindings.

This commit is contained in:
Ethan Rublee
2011-05-23 17:26:58 +00:00
parent 3bb685a744
commit 44e9fdaa2d
12 changed files with 750 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#include "split.h"
#include <boost/python.hpp>
namespace bp = boost::python;
BOOST_PYTHON_MODULE(opencv)
{
//wrap all modules
opencv_wrappers::wrap_cv_core();
opencv_wrappers::wrap_mat();
opencv_wrappers::wrap_points();
opencv_wrappers::wrap_highgui();
}