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,16 @@
|
||||
#include <boost/python.hpp>
|
||||
|
||||
#include <opencv2/core/core.hpp>
|
||||
|
||||
namespace bp = boost::python;
|
||||
|
||||
namespace opencv_wrappers
|
||||
{
|
||||
void wrap_cv_core()
|
||||
{
|
||||
bp::object opencv = bp::scope();
|
||||
//define opencv consts
|
||||
#include "cv_defines.cpp"
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user