cython を使用して Python スクリプトから C++ コードを呼び出そうとしています。私はすでにhereの例で作業することができましたが、問題は、私の c++ コードに opencv の非標準ライブラリが含まれていることです。それらを正しくリンクしていないと思うので、誰かに私のsetup.pyとcpp_rect.hとcpp_rect.cppファイルを見てもらう必要があります。
私が得ているエラーは、*.cpp ファイルの太字の行に関するものです: 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 スクリプトを実行すると、この質問で最初に説明したインクルード エラーが表示されます。
何か案は?