mirror of
https://github.com/opencv/opencv.git
synced 2026-07-28 23:03:03 +04:00
Initial pass at some boost python bindings.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user