2つの行列を1つの行列に連結するにはどうすればよいですか?結果の行列は、2つの入力行列と同じ高さである必要があり、その幅は2つの入力行列の幅の合計に等しくなります。
このコードと同等の機能を実行する既存のメソッドを探しています。
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