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: 4.1.1.3497 (4.1.1.3497)
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