我正在寻找一种有效的方法来对更大的矩阵执行子矩阵运算,而无需诉诸 for 循环。
我目前正在执行操作(对于 3x3 窗口):
newMatrix = numpy.zeros([numRows, numCols])
for i in range(1, numRows-1):
for j in range(1, numCols-1):
sub = matrix[i-1:i+2, j-1:j+2]
newMatrix[i][j] = ... #do things with sub matrix
这比使用 numpy 矩阵的正常操作要慢得多。有什么 numpy 可以解决这个问题,还是希望太多?
编辑:具体示例
xWeight = numpy.array([[-1./8, 0, 1./8], [-2./8, 0, 2./8], [-1./8, 0, 1./8]])
yWeight = numpy.array([[1./8, 2./8, 1./8], [0, 0, 0], [-1./8, -2./8, -1./8]])
内循环:
dz_dx = numpy.sum(xWeight * sub)
dz_dy = numpy.sum(yWeight * sub)