numpy.ctypeslib.as_array()
C-Types Foreign Function Interface (numpy.ctypeslib)
-
numpy.ctypeslib.as_array(obj, shape=None)
[source] -
Create a numpy array from a ctypes array or a ctypes POINTER. The numpy array shares the memory with the ctypes object.
The size parameter must be given if converting from a ctypes POINTER. The size parameter is ignored if converting from a ctypes array
-
numpy.ctypeslib.as_ctypes(obj)
[