3

我正在尝试使用 cython 从 python 脚本调用 c++ 代码。我已经设法使用此处的示例,但问题是:我的 c++ 代码包括来自 opencv 的非标准库。我相信我没有正确链接它们,所以我需要有人查看我的setup.py以及我的cpp_rect.hcpp_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 脚本时,我得到了这个问题中首先描述的包含错误。

有任何想法吗?

4

1 回答 1

3

已解决,感谢 Dietmar Kühl 的评论和来自 youtube 的这段视频

什么问题?我发现我的 setup.py 配置错误。它应该是这样的:

from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

setup(
    name = 'DyCppInterface',
    version = '1.0',
    author = 'Marcelo Salloum dos Santos',
    # The ext modules interface the cpp code with the python one:
    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=[".","source" , "/opt/local/include/opencv", "/opt/local/include"],
            language="c++",
            library_dirs=['/opt/local/lib', 'source'],
            libraries=['opencv_core', 'LibCppOpenCV'])
    ],
    cmdclass = {'build_ext': build_ext},
)

为了正确配置它需要注意的三件事是:

  • include_dirs: setup.py 或 .h 和 .cpp 中的每个引用文件都应在 include_dirs 中具有其容器文件夹;
  • library_dirs:每个引用的库都应在此处写入其容器文件夹;
  • 图书馆:一个必须把图书馆的名字放在这里

有关如何为 cython 配置库的更多问题,可以通过观看有关如何使用和配置动态库(使用 Eclipse CDT)的视频来回答。

于 2013-08-26T14:34:10.760 回答