6

所以我使用 python 来调用共享 C++ 库中的方法。我在将 numpy 2D 数组转换为 C++ 2D 短裤数组作为函数输入时遇到问题。我创建了一个展示该问题的玩具示例。随意编译并尝试一下!

这是python代码(soexample.py):

# Python imports
from ctypes import CDLL
import numpy as np

# Open shared CPP library:
cpplib=CDLL('./libsoexample.so')
cppobj = cpplib.CPPClass_py()

# Stuck on converting to short**?
array = np.array([[1,2,3],[1,2,3]])
cpplib.func_py(cppobj,array)

这是 C++ 库(soexample.cpp):

#include <iostream>

using namespace std;

class CPPClass
{
  public:
  CPPClass(){}

  void func(unsigned short **array)
  {
      cout << array[0][0] << endl;
  }
};

// For use with python:
extern "C" {
    CPPClass* CPPClass_py(){ return new CPPClass(); }
    void func_py(CPPClass* myClass, unsigned short **array)
    {      
        myClass->func(array);    
    }
}

我使用以下命令编译:

g++ -fPIC -Wall -Wextra -shared -o libsoexample.so soexample.cpp

当我运行 python 文件时,我收到以下错误:

>> python soexample.py
Traceback (most recent call last):
  File "soexample.py", line 13, in <module>
    cpplib.func_py(cppobj,array)
ctypes.ArgumentError: argument 2: <type 'exceptions.TypeError'>: Don't know how to     convert parameter 2

我该如何正确纠正这个不幸TypeError

4

1 回答 1

4

您可以使用ctypes'sc_shortPOINTER来帮助进行中间转换。以下函数将 numpy 数组转换为 C 类型 2darray,可以将其传递给需要short **.

def c_short_2darr(numpy_arr):
  c_short_p = POINTER(c_short)
  arr = (c_short_p * len(numpy_arr) ) ()
  for i in range(len(numpy_arr)):
    arr[i] = (c_short * len(numpy_arr[i]))()
    for j in range(len(numpy_arr[i])):
      arr[i][j] = numpy_arr[i][j]
  return arr

请注意,我修改func_pyCPPClass::func采用了 2 个额外参数,即给定数组的宽度和长度。有了这个,CPPClass::func可以打印出数组的所有元素:

// ...
void CPPClass::func(unsigned short **array, size_t w, size_t h)
{
    for(size_t i = 0; i < w; ++i)
    {
      for(size_t j = 0; j < h; ++j)
          cout << array[i][j] << ", ";
      cout << '\n';
    }
}
// ...
void func_py(CPPClass *myClass,
             unsigned short **array, 
             size_t w, size_t h)
{
    myClass->func(array, w, h);
}

定义了该辅助函数后,现在应该可以执行以下操作:

>>> arr = numpy.array([ [1,2,3], [4,5,6] ])
>>> arr
array([[1, 2, 3],
       [4, 5, 6]])
>>> cpplib.func_py(cppobj, c_short_2darr(arr), 2, 3)
1, 2, 3,
4, 5, 6,
0
于 2013-06-14T03:40:39.797 回答