我正在使用从大图像文件创建的相当大的数组。我在使用过多内存时遇到问题,因此决定尝试使用numpy.memmap数组而不是标准numpy.array。我能够创建一个memmap并将数据从我的图像文件中分块加载到其中,但是我不确定如何将操作结果加载到memmap中。

例如,我的图像文件作为二进制整数数组读入numpy中。我编写了一个函数,将True单元格的任何区域缓冲(扩展)指定数量的单元格。此函数使用Boolean将输入数组转换为array.astype(bool)。如何将Boolean创建的新array.astype(bool)数组变成numpy.memmap数组?

同样,如果在输入数组的边缘比指定的缓冲区距离更靠近True单元,则该函数将在数组的边缘添加行和/或列,以在现有True单元周围提供完整的缓冲区。这将更改数组的形状。是否可以更改numpy.memmap的形状?

这是我的代码:

def getArray(dataset):
    '''Dataset is an instance of the GDALDataset class from the
    GDAL library for working with geospatial datasets

    '''
    chunks = readRaster.GetArrayParams(dataset, chunkSize=5000)
    datPath = re.sub(r'\.\w+$', '_temp.dat', dataset.GetDescription())
    pathExists = path.exists(datPath)
    arr = np.memmap(datPath, dtype=int, mode='r+',
                    shape=(dataset.RasterYSize, dataset.RasterXSize))
    if not pathExists:
        for chunk in chunks:
            xOff, yOff, xWidth, yWidth = chunk
            chunkArr = readRaster.GetArray(dataset, *chunk)
            arr[yOff:yOff + yWidth, xOff:xOff + xWidth] = chunkArr
    return arr

def Buffer(arr, dist, ring=False, full=True):
    '''Applies a buffer to any non-zero raster cells'''
    arr = arr.astype(bool)
    nzY, nzX = np.nonzero(arr)
    minY = np.amin(nzY)
    maxY = np.amax(nzY)
    minX = np.amin(nzX)
    maxX = np.amax(nzX)
    if minY - dist < 0:
        arr = np.vstack((np.zeros((abs(minY - dist), arr.shape[1]), bool),
                         arr))
    if maxY + dist >= arr.shape[0]:
        arr = np.vstack((arr,
                         np.zeros(((maxY + dist - arr.shape[0] + 1), arr.shape[1]), bool)))
    if minX - dist < 0:
        arr = np.hstack((np.zeros((arr.shape[0], abs(minX - dist)), bool),
                         arr))
    if maxX + dist >= arr.shape[1]:
        arr = np.hstack((arr,
                         np.zeros((arr.shape[0], (maxX + dist - arr.shape[1] + 1)), bool)))
    if dist >= 0: buffOp = binary_dilation
    else: buffOp = binary_erosion
    bufDist = abs(dist) * 2 + 1
    k = np.ones((bufDist, bufDist))
    bufArr = buffOp(arr, k)
    return bufArr.astype(int)

最佳答案

让我尝试回答您问题的第一部分。将结果加载到memmap数据存储中。

注意,我将假设磁盘上已经有一个memmap文件-它将是输入文件。名为MemmapInput,创建如下:

fpInput = np.memmap('MemmapInput', dtype='bool', mode='w+', shape=(3,4))
del fpInput
fpOutput = np.memmap('MemmapOutput', dtype='bool', mode='w+', shape=(3,4))
del fpOutput

在您的情况下,输出文件可能不存在,但是根据文档:
'r +'打开现有文件进行读写。

“w +”创建或覆盖现有文件以进行读写。

因此,第一次创建memmap文件时,它必须带有'w +',然后使用'r +'修改/覆盖该文件,则可以使用'r'获得只读副本。有关更多信息,请参见http://docs.scipy.org/doc/numpy/reference/generated/numpy.memmap.html

现在,我们将读取该文件并对其执行一些操作。要点是将结果加载到memamp文件中,必须先创建memmap文件并将其附加到文件中。
fpInput = np.memmap('MemmapInput', dtype='bool', mode='r', shape=(3,4))
fpOutput = np.memmap('MemmapOutput', dtype='bool', mode='r+', shape=(3,4))

使用fpOutput memmap文件执行任何您想做的事情,例如:
i,j = numpy.nonzero(fpInput==True)
for indexI in i:
  for indexJ in j:
    fpOutput[indexI-1,indexJ] = True
    fpOutput[indexI, indexJ-1] = True
    fpOutput[indexI+1, indexJ] = True
    fpOutput[indexI, indexJ+1] = True

10-06 14:28