gpt4 book ai didi

python - Cython - 将指向数组的指针转换为 Python 对象

转载 作者:太空狗 更新时间:2023-10-29 19:25:54 25 4
gpt4 key购买 nike

好吧,我快吃完了,我可以尝尝了。在过去几周左右的时间里,我一直在尝试创建一个 Python 扩展,以通过 Cython 与用 C++ 编写的库进行交互。在这里的人和几个 friend 的帮助下,我已经完成了 98% 的感觉。唯一剩下的就是:我这辈子都想不出如何将指向无符号短裤数组的指针转换为 Python 对象(最好是列表)。

一点背景,我正在尝试与设置回调函数的库的一部分进行交互,我已经成功地完成了这个:

global callbackfunc

ctypedef unsigned short const_ushort "const uint16_t"

ctypedef void (*Function1)(const_ushort *data, unsigned width, unsigned height)

cdef extern from "lib.hpp":
void SetCallback(Function1)

cdef void cSetCallback(Function1 function):
SetCallback(function)

cdef void callcallback(const_ushort *data, unsigned width, unsigned height):
global callbackfunc
callbackfunc(data,width,height)

cSetCallback(callcallback)

def PySetCallback(callbackFunc):
global callbackfunc
callbackfunc = callbackFunc

问题出现在函数“callcallback”中,我收到错误:“无法将‘const_ushort *’转换为 Python 对象”。我的第一次尝试是创建一个新的 python 列表,然后循环将数组的每个元素放入 python 列表中,如下所示:

datalist = []
for i in range(width*height):
datalist += data[i]

遗憾的是,编译后的 cython 代码试图将类型定义为“const const unsigned short”,这显然是个问题。

然后我试了一下:

datalist = []
for i in data:
datalist += i

这给了我“C 数组迭代需要已知的结束索引”。请注意,我对 C/C++ 知之甚少,因此大部分内容对我来说意义不大。

那么,无论如何,有没有什么有效的方法可以将这样的指针转换为 python 对象(最好比遍历数组更快,因为它通常大约有 57344 个项目,而且这对时间非常敏感)

编辑:更清楚一点,正如我提到的,我正在使用回调,库中调用它的 C++ 函数发送一个指向“const uint_16”数组的指针,这就是我以这种方式定义 const_ushort 的原因,否则类型不统一。我无法以任何方式修改库。

编辑2:看来我明白了。我最终要做的是将数组显式转换为无符号短裤数组而不是 const 无符号短裤数组,以便我可以使用非常量对它们进行索引。为此,我创建了另一个 C++ 函数,如下所示(别人为我编写的,我对 C++ 几乎一窍不通):

unsigned short *convert_short(const unsigned short *test){ return const_cast<unsigned short *>(test); }

这让我可以在我的类中创建“getindex”函数,并根据该函数返回正确的值。所以,是的,Python 似乎正确地读取了数组等等,所以这种情况似乎已经结束。非常感谢。

最佳答案

ctypedef unsigned short const_ushort "const uint16_t"

使 const 出现在 C 代码中,所以你得到 typedef unsigned short const uint16_t 其中 const 是无意义的。 (它还重新定义了标准类型 uint16_t,这是不应该的。)

你可能会取得更大的成功

ctypedef unsigned short *ushort_p "ushort_p"

出于某种原因,Cython 似乎无法识别 C const 关键字。您可能必须在回调周围使用包装器来处理 const 问题。

如果您希望将指针转换为 Python 对象,请将其包装在 cdef 类 中。确保类记录了高度和宽度,因为这些不会记录在 C 数组中。

关于python - Cython - 将指向数组的指针转换为 Python 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5271690/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com