我正在尝试在.so文件中生成C ++代码并在python中导入.so文件。我的C ++代码是
extern "C" int top(int a, int b){
return a + b;
}
extern "C" int fark(int a, int b){
return a - b;
}
extern "C" int carp(int a, int b){
return a * b;
}
extern "C" int bol(int a, int b){
return a / b;
}
extern "C" void foto(string s)
{
Mat im = imread(s, 1);
if (im.empty())
{
cout << "url hatali" << endl;
}
else
{
imshow("foto", im);
waitKey(1000);
}
}
extern "C" void gri(string s){
Mat im = imread(s, 1);
if (im.empty())
{
cout << "url hatali" << endl;
}
else
{
cvtColor(im, im, CV_RGB2GRAY);
imshow("Gri", im);
waitKey(1000);
}
}
extern "C" void asdf(string s ,int i){
Mat im = imread(s, 1);
if (im.empty())
{
cout << "url hatali" << endl;
}
else
{
cvtColor(im, im, CV_RGB2GRAY);
threshold(im, im, i, 255, THRESH_BINARY);
imshow("Binary", im);
waitKey(1000);
}
}
我的生成命令是:g ++ -c -fPIC webcam.cpp -o webcam.o -lopencv_core -lopencv_highgui g ++ -shared -Wl,-soname,webcam.so -o webcam.so webcam.o
我生成.so文件但是当我在我的python代码中导入我的.so文件时,我得到错误: _ZN2cv6imshowERKNS_6StringERKNS_11_InputArrayE
我的python代码是:
from ctypes import cdll
mydll=cdll.LoadLibrary('/PATH/deneme.so')
print(mydll.top(123,123))
print(mydll.carp(123,123))
print(mydll.fark(123,123))
print(mydll.bol(123,123))
答案 0 :(得分:1)
我的生成命令是:g ++ -c -fPIC webcam.cpp -o webcam.o -lopencv_core -lopencv_highgui g ++ -shared -Wl,-soname,webcam.so -o webcam.so webcam.o
您需要将库放在链接步骤中,而不是编译步骤。
g++ -c -fPIC webcam.cpp -o webcam.o
g++ -fPIC -shared -Wl,-soname,webcam.so -o webcam.so webcam.o -lopencv_core -lopencv_highgui
正如@πάνταῥεῖ所指出的,你应该注意在std::string
函数的接口中放置extern "C"
。