如何将两个矩阵连接成一个矩阵?生成的矩阵应该与两个输入矩阵具有相同的高度,并且其宽度将等于两个输入矩阵的宽度之和。
我正在寻找一种预先存在的方法来执行与此代码等效的操作:
def concatenate(mat0, mat1):
# Assume that mat0 and mat1 have the same height
res = cv.CreateMat(mat0.height, mat0.width + mat1.width, mat0.type)
for x in xrange(res.height):
for y in xrange(mat0.width):
cv.Set2D(res, x, y, mat0[x, y])
for y in xrange(mat1.width):
cv.Set2D(res, x, y + mat0.width, mat1[x, y])
return res