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 (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvTranspose(
	IntPtr src,
	IntPtr dst
)
Public Shared Sub cvTranspose ( _
	src As IntPtr, _
	dst As IntPtr _
)
public:
static void cvTranspose(
	IntPtr src, 
	IntPtr dst
)

Parameters

src
IntPtr
The source matrix
dst
IntPtr
The destination matrix

See Also