我正在尝试使用 cython 从 python 脚本调用 c++ 代码。我已经设法使用此处的示例,但问题是:我的 c++ 代码包括来自 opencv 的非标准库。我相信我没有正确链接它们,所以我需要有人查看我的setup.py以及我的cpp_rect.h和cpp_rect.cpp文件。
我得到的错误是关于 *.cpp 文件的粗线 yn:cv::Mat img1(7,7,CV_32FC2,Scalar(1,3)); 当我尝试测试库时,执行时收到包含错误$ python userect.py
:
Traceback (most recent call last):
File "userect.py", line 2, in <module>
from rectangle import Rectangle
ImportError: dlopen(/Users/marcelosalloum/Desktop/python_cpp_interface/rectangle.so, 2): Symbol not found: __ZN2cv3Mat10deallocateEv
Referenced from: /Users/marcelosalloum/Desktop/python_cpp_interface/rectangle.so
Expected in: flat namespace
in /Users/marcelosalloum/Desktop/python_cpp_interface/rectangle.so
未找到符号 (__ZN2cv3Mat10deallocateEv) 与cv::Mat::deallocate()
函数有关,这表明我的导入无法正常工作。
有任何想法吗?
我的其他课程如下:
这是我的setup.py文件。请注意,我已经包含了 2 个目录,但不确定我是否正确:
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(
name = 'Demos',
ext_modules=[
Extension("rectangle",
sources=["rectangle.pyx", "cpp_rect.cpp"], # Note, you can link against a c++ library instead of including the source
include_dirs=[".", "/usr/local/include/opencv/", "/usr/local/include/"],
language="c++"),
],
cmdclass = {'build_ext': build_ext},
)
我的cpp_rect.h文件包含一个 cv.h 和一个命名空间 cv,如下所示:
#include "source/AntiShake.h"
#include <iostream>
#include "cv.h"
using namespace cv;
class Rectangle {
public:
int x0, y0, x1, y1;
Rectangle();
Rectangle(int x0, int y0, int x1, int y1);
~Rectangle();
int getLength();
int getHeight();
int getArea();
void move(int dx, int dy);
**void openCV();**
Rectangle operator+(const Rectangle& other);
};
我的 openCV() 函数只是从 opencv (文件cpp_rect.cpp)实例化一个 cv::Mat :
#include "cpp_rect.h"
Rectangle::Rectangle() {
x0 = y0 = x1 = y1 = 0;
}
Rectangle::Rectangle(int a, int b, int c, int d) {
x0 = a;
y0 = b;
x1 = c;
y1 = d;
}
Rectangle::~Rectangle() {
}
void Rectangle::openCV(){
**cv::Mat img1(7,7,CV_32FC2,Scalar(1,3));**
}
...
我可以使用以下命令编译该文件:$ python setup.py build_ext --inplace
,它为我提供了 *.so 文件。但是当我运行我的 userect.py 脚本时,我得到了这个问题中首先描述的包含错误。
有任何想法吗?