Click or drag to resize

CvInvokeMulTransposed Method

http://www.emgu.com
Calculates the product of src and its transposition. The function evaluates dst=scale(src-delta)*(src-delta)^T if order=0, and dst=scale(src-delta)^T*(src-delta) otherwise.

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 MulTransposed(
	IInputArray src,
	IOutputArray dst,
	bool aTa,
	IInputArray delta = null,
	double scale = 1,
	DepthType dtype = DepthType.Default
)

Parameters

src
Type: Emgu.CVIInputArray
The source matrix
dst
Type: Emgu.CVIOutputArray
The destination matrix
aTa
Type: SystemBoolean
Order of multipliers
delta (Optional)
Type: Emgu.CVIInputArray
An optional array, subtracted from src before multiplication
scale (Optional)
Type: SystemDouble
An optional scaling
dtype (Optional)
Type: Emgu.CV.CvEnumDepthType
Optional depth type of the output array
See Also