使用Python 3.6和Python进行dotNET / pythonnet我已经掌握了图像数组。这是System.Single [,]
类型我希望将其转换为numpy数组,以便我可以在Python中实际使用它。我已经设置了一个函数来逐步遍历该数组并将其转换为元素 - 但是有什么更合理(也更快)我可以使用吗?
def MeasurementArrayToNumpy(TwoDArray):
hBound = TwoDArray.GetUpperBound(0)
vBound = TwoDArray.GetUpperBound(1)
resultArray = np.zeros([hBound, vBound])
for c in range(TwoDArray.GetUpperBound(0)):
for r in range(TwoDArray.GetUpperBound(1)):
resultArray[c,r] = TwoDArray[c,r]
return resultArray
答案 0 :(得分:5)
@denfromufa - 这是一个非常有用的链接。
建议使用Marshal.Copy或np.frombuffer进行直接内存复制。我无法让Marshal.Copy版本工作 - 一些恶作剧需要使用带有Marshal的2D数组并且以某种方式改变了数组的内容 - 但是np.frombuffer版本似乎对我有用并减少了对于3296 * 2471阵列(~25s - > ~1.50ms),完成时间为~16000。这对我的目的来说足够好了
该方法需要更多导入,因此我将其包含在下面的代码段中
import ctypes
from System.Runtime.InteropServices import GCHandle, GCHandleType
def SingleToNumpyFromBuffer(TwoDArray):
src_hndl = GCHandle.Alloc(TwoDArray, GCHandleType.Pinned)
try:
src_ptr = src_hndl.AddrOfPinnedObject().ToInt32()
bufType = ctypes.c_float*len(TwoDArray)
cbuf = bufType.from_address(src_ptr)
resultArray = np.frombuffer(cbuf, dtype=cbuf._type_)
finally:
if src_hndl.IsAllocated: src_hndl.Free()
return resultArray
答案 1 :(得分:0)
我修改了rbp109函数,使其可以与System.Int32 [,,]类型的RGB图像一起使用。然后将得到的numpy数组重新整形,以便可以在opencv窗口中显示图像
def net2Numpy(net_img,width,height):
src_hndl = GCHandle.Alloc(net_img, GCHandleType.Pinned)
try:
src_ptr = src_hndl.AddrOfPinnedObject().ToInt32()
bufType = ctypes.c_int*len(net_img)
cbuf = bufType.from_address(src_ptr)
resultArray = np.frombuffer(cbuf, dtype=cbuf._type_)
finally:
if src_hndl.IsAllocated: src_hndl.Free()
resultArray = resultArray.astype(dtype=np.uint8)
resultArray = resultArray.reshape((height,width,3),order='C')
return resultArray
答案 2 :(得分:0)
在denfromufa's link之后,我认为Robert McLeod提供了最佳解决方案。他还指出了使用np.frombuffer
的缺点:
一个人可以用np.frombuffer进行零复制,但是这样一来,Python的垃圾收集器和C#的垃圾收集器都会管理一堆内存。
Robert McLeod在github问题上的摘录:
import numpy as np
import ctypes
import clr, System
from System import Array, Int32
from System.Runtime.InteropServices import GCHandle, GCHandleType
_MAP_NP_NET = {
np.dtype('float32'): System.Single,
np.dtype('float64'): System.Double,
np.dtype('int8') : System.SByte,
np.dtype('int16') : System.Int16,
np.dtype('int32') : System.Int32,
np.dtype('int64') : System.Int64,
np.dtype('uint8') : System.Byte,
np.dtype('uint16') : System.UInt16,
np.dtype('uint32') : System.UInt32,
np.dtype('uint64') : System.UInt64,
np.dtype('bool') : System.Boolean,
}
_MAP_NET_NP = {
'Single' : np.dtype('float32'),
'Double' : np.dtype('float64'),
'SByte' : np.dtype('int8'),
'Int16' : np.dtype('int16'),
'Int32' : np.dtype('int32'),
'Int64' : np.dtype('int64'),
'Byte' : np.dtype('uint8'),
'UInt16' : np.dtype('uint16'),
'UInt32' : np.dtype('uint32'),
'UInt64' : np.dtype('uint64'),
'Boolean': np.dtype('bool'),
}
def asNumpyArray(netArray):
'''
Given a CLR `System.Array` returns a `numpy.ndarray`. See _MAP_NET_NP for
the mapping of CLR types to Numpy dtypes.
'''
dims = np.empty(netArray.Rank, dtype=int)
for I in range(netArray.Rank):
dims[I] = netArray.GetLength(I)
netType = netArray.GetType().GetElementType().Name
try:
npArray = np.empty(dims, order='C', dtype=_MAP_NET_NP[netType])
except KeyError:
raise NotImplementedError("asNumpyArray does not yet support System type {}".format(netType) )
try: # Memmove
sourceHandle = GCHandle.Alloc(netArray, GCHandleType.Pinned)
sourcePtr = sourceHandle.AddrOfPinnedObject().ToInt64()
destPtr = npArray.__array_interface__['data'][0]
ctypes.memmove(destPtr, sourcePtr, npArray.nbytes)
finally:
if sourceHandle.IsAllocated: sourceHandle.Free()
return npArray
def asNetArray(npArray):
'''
Given a `numpy.ndarray` returns a CLR `System.Array`. See _MAP_NP_NET for
the mapping of Numpy dtypes to CLR types.
Note: `complex64` and `complex128` arrays are converted to `float32`
and `float64` arrays respectively with shape [m,n,...] -> [m,n,...,2]
'''
dims = npArray.shape
dtype = npArray.dtype
# For complex arrays, we must make a view of the array as its corresponding
# float type.
if dtype == np.complex64:
dtype = np.dtype('float32')
dims.append(2)
npArray = npArray.view(np.float32).reshape(dims)
elif dtype == np.complex128:
dtype = np.dtype('float64')
dims.append(2)
npArray = npArray.view(np.float64).reshape(dims)
netDims = Array.CreateInstance(Int32, npArray.ndim)
for I in range(npArray.ndim):
netDims[I] = Int32(dims[I])
if not npArray.flags.c_contiguous:
npArray = npArray.copy(order='C')
assert npArray.flags.c_contiguous
try:
netArray = Array.CreateInstance(_MAP_NP_NET[dtype], netDims)
except KeyError:
raise NotImplementedError("asNetArray does not yet support dtype {}".format(dtype))
try: # Memmove
destHandle = GCHandle.Alloc(netArray, GCHandleType.Pinned)
sourcePtr = npArray.__array_interface__['data'][0]
destPtr = destHandle.AddrOfPinnedObject().ToInt64()
ctypes.memmove(destPtr, sourcePtr, npArray.nbytes)
finally:
if destHandle.IsAllocated: destHandle.Free()
return netArray
if __name__ == '__main__':
from time import perf_counter
import matplotlib.pyplot as plt
import psutil
tries = 1000
foo = np.full([1024,1024], 2.5, dtype='float32')
netMem = np.zeros(tries)
t_asNet = np.zeros(tries)
netFoo = asNetArray( foo ) # Lazy loading makes the first iteration very slow
for I in range(tries):
t0 = perf_counter()
netFoo = asNetArray( foo )
t_asNet[I] = perf_counter() - t0
netMem[I] = psutil.virtual_memory().free / 2.0**20
t_asNumpy = np.zeros(tries)
numpyMem = np.zeros(tries)
unNetFoo = asNumpyArray( netFoo ) # Lazy loading makes the first iteration very slow
for I in range(tries):
t0 = perf_counter()
unNetFoo = asNumpyArray( netFoo )
t_asNumpy[I] = perf_counter() - t0
numpyMem[I] = psutil.virtual_memory().free / 2.0**20
# Convert times to milliseconds
t_asNet *= 1000
t_asNumpy *= 1000
np.testing.assert_array_almost_equal( unNetFoo, foo )
print( "Numpy to .NET converted {} bytes in {:.3f} +/- {:.3f} ms (mean: {:.1f} ns/ele)".format( \
foo.nbytes, t_asNet.mean(), t_asNet.std(), t_asNet.mean()/foo.size*1e6 ) )
print( ".NET to Numpy converted {} bytes in {:.3f} +/- {:.3f} ms (mean: {:.1f} ns/ele)".format( \
foo.nbytes, t_asNumpy.mean(), t_asNumpy.std(), t_asNumpy.mean()/foo.size*1e6 ) )
plt.figure()
plt.plot(np.arange(tries), netMem, '-', label='asNetArray')
plt.plot(np.arange(tries), numpyMem, '-', label='asNumpyArray')
plt.legend(loc='best')
plt.ylabel('Free memory (MB)')
plt.xlabel('Iteration')
plt.show(block=True)
还值得注意的是pythonnet具有一项新的实验性功能,它似乎很有前途:编解码器。仅当您从源代码构建并设法找出文档时才相关: