Calculates the product of src and its transposition. The function evaluates dst=(src-delta)*(src-delta)^T if order=0, and dst=(src-delta)^T*(src-delta) otherwise.

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static void cvMulTransposed(
	IntPtr src,
	IntPtr dst,
	int order,
	IntPtr delta
)
Visual Basic (Declaration)
Public Shared Sub cvMulTransposed ( _
	src As IntPtr, _
	dst As IntPtr, _
	order As Integer, _
	delta As IntPtr _
)
Visual C++
public:
static void cvMulTransposed(
	IntPtr src, 
	IntPtr dst, 
	int order, 
	IntPtr delta
)

Parameters

src
Type: System..::.IntPtr
The source matrix
dst
Type: System..::.IntPtr
The destination matrix
order
Type: System..::.Int32
Order of multipliers
delta
Type: System..::.IntPtr
An optional array, subtracted from src before multiplication

See Also