我正在使用 ctypes 在 Python 中实现 C++ 函数。C++ 函数应该返回一个指向数组的指针。不幸的是,我还没有弄清楚如何在 Python 中访问数组。我尝试了 numpy.frombuffer,但没有成功。它只是返回了一个任意数字的数组。显然我没有正确使用它。这是一个大小为 10 的数组的简单示例:
function.cpp的内容:
extern "C" int* function(){
int* information = new int[10];
for(int k=0;k<10;k++){
information[k] = k;
}
return information;
}
wrapper.py 的内容:
import ctypes
import numpy as np
output = ctypes.CDLL('./library.so').function()
ArrayType = ctypes.c_double*10
array_pointer = ctypes.cast(output, ctypes.POINTER(ArrayType))
print np.frombuffer(array_pointer.contents)
要编译我正在使用的 C++ 文件:
g++ -c -fPIC function.cpp -o function.o
g++ -shared -Wl,-soname,library.so -o library.so function.o
你有什么建议我必须做些什么来访问 Python 中的数组值?