我需要通过套接字发送图像,并且需要尽快完成。图像表示为 3d numpy 数组。发送的数据可以达到 500000 字节以上。
到目前为止,我是这样做的:
array_data_type = image.dtype.name
array_shape = image.shape
to_send = array_data_shape + SEPARATOR + cPickle.dumps(array_shape) + SEPARATOR + image.tobytes()
streaming_socket.sendall(to_send)
连接现在大约需要 0.044 秒,我希望它更快。可以更快吗?
拉莫斯之舞
相关分类