当我尝试将 ctypes 数组用作 numpy 数组时,我收到以下警告消息:
Python 2.7.1 (r271:86832, Nov 27 2010, 18:30:46) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import ctypes, numpy
>>> TenByteBuffer = ctypes.c_ubyte * 10
>>> a = TenByteBuffer()
>>> b = numpy.ctypeslib.as_array(a)
C:\Python27\lib\site-packages\numpy\ctypeslib.py:402: RuntimeWarning: Item size
computed from the PEP 3118 buffer format string does not match the actual item s
ize.
return array(obj, copy=False)
>>> b
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0], dtype=uint8)
不过,代码似乎正在运行。忽略这个警告是个坏主意吗?
背景:我正在调用一个实时生成数据的 C DLL。我需要向 DLL 传递一系列缓冲区来保存数据。在等待下一个缓冲区填充时,我想用 numpy 处理最新的缓冲区并保存结果。我正在使用上面的代码生成缓冲区,一切似乎都在工作,但我不想在地毯下扫除一个重要问题。