标签: matlab opencv multidimensional-array 3d
在 openCV 中是否有一种有效的方法(即没有复制数据)来沿3D Mat的第三维创建向量,就像在MATLAB中一样:
X=rand(3,4,5); V=squeeze(X(2,2,:));% vector along the third dimension of elements in second row and col.
由于