基于pybind11用python调用opencv C++接口
目的
C++代码提供python接口。用CMakeLists.txt和setup.py搭配,编译。
先安装pybind11
git clone https://github.com/pybind/pybind11.git
cd pybind11
mkdir build
cd build
cmake ..
make
sudo make install
example.cpp
#include
#define STRINGIFY(x) #x
#define MACRO_STRINGIFY(x) STRINGIFY(x)
int add(int i, int j) {
return i + j;
}
void show() {
printf("in show()");
cv:
共有 0 条评论