如何在Python中使用C ++中的float **?

时间:2010-06-18 13:26:50

标签: python c pointers swig ctypes

How to use float ** in Python with Swig?上我的问题没有成功后,我开始认为swig可能不是首选的武器。我需要绑定某些c函数。其中一个函数需要浮动**。你会推荐什么? ctypes的?

接口文件:

extern int read_data(const char *file,int *n_,int *m_,float **data_,int **classes_);

1 个答案:

答案 0 :(得分:2)

我现在已经将ctypes用于了几个项目,并对结果非常满意。我不认为我个人需要一个指向指针的包装器,但理论上,你应该能够做到以下几点:

from ctypes import *

your_dll = cdll.LoadLibrary("your_dll.dll")

PFloat = POINTER(c_float)
PInt   = POINTER(c_int)

p_data    = PFloat()
p_classes = PInt()
buff      = create_string_buffer(1024)
n1        = c_int( 0 )
n2        = c_int( 0 )

ret = your_dll.read_data( buff, byref(n1), byref(n2), byref(p_data), byref(p_classes) )

print('Data:    ', p_data.contents)
print('Classes: ', p_classes.contents)