0
我使用numpy.memmap
(如下所示)創建了大型numpy array
。如何計算基於xy座標的偏移量以從numpy.memmap中讀取?
import numpy as np
memmapData = np.memmap('test.memmap', dtype='uint8', mode='w+', shape=(10000, 10000, 3))
現在如何讀取基於一些XY座標的數組。讀完之後,我需要繪製一個矩形。 (即)X1 = 0,Y1 = 1000 X2 = X1 + 500,Y2 = Y1 + 500。所以,現在我怎麼能通過上面的座標讀取test.memmap
的numpy數組。在這我該如何使用numpy.memmap屬性offset
。
@ hpaulj你能稍微解釋一下你的代碼嗎? –