opencv中如何将两个类型为Mat的矩阵合为一个矩阵?

2025-05-06 18:27:38
推荐回答(1个)
回答(1):

Mat dstMat = M.column(4); //M为目的矩阵 3*4
srcMat.copyTo(dstMat);