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.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public static void cvTranspose( IntPtr src, IntPtr dst ) |
Visual Basic (Declaration) |
---|
Public Shared Sub cvTranspose ( _ src As IntPtr, _ dst As IntPtr _ ) |
Visual C++ |
---|
public: static void cvTranspose( IntPtr src, IntPtr dst ) |
Parameters
- src
- Type: System..::.IntPtr
The source matrix
- dst
- Type: System..::.IntPtr
The destination matrix