Click or drag to resize
CvInvokeTranspose Method
http://www.emgu.com
Transposes matrix src1: dst(i,j)=src(j,i) Note that no complex conjugation is done in case of complex matrix. Conjugation should be done separately: look at the sample code in cvXorS for example

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void Transpose(
	IInputArray src,
	IOutputArray dst
)

Parameters

src
Type: Emgu.CVIInputArray
The source matrix
dst
Type: Emgu.CVIOutputArray
The destination matrix
See Also