Click or drag to resize

CvArrayTDepthDotProduct Method

http://www.emgu.com
Calculates and returns the Euclidean dot product of two arrays. src1 dot src2 = sumI(src1(I)*src2(I))

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public double DotProduct(
	CvArray<TDepth> otherArray
)

Parameters

otherArray
Type: Emgu.CVCvArrayTDepth
The other Array to apply dot product with

Return Value

Type: Double
src1 dot src2
Remarks
In case of multiple channel arrays the results for all channels are accumulated. In particular, cvDotProduct(a,a), where a is a complex vector, will return ||a||^2. The function can process multi-dimensional arrays, row by row, layer by layer and so on.
See Also