基于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 #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:

基于pybind11用python调用opencv C++接口最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/18037.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>