http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Calculates and returns the Euclidean dot product of two arrays.
src1 dot src2 = sumI(src1(I)*src2(I))
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.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static double cvDotProduct( IntPtr src1, IntPtr src2 ) |
Visual Basic |
---|
Public Shared Function cvDotProduct ( _ src1 As IntPtr, _ src2 As IntPtr _ ) As Double |
Visual C++ |
---|
public: static double cvDotProduct( IntPtr src1, IntPtr src2 ) |
Parameters
- src1
- Type: System..::..IntPtr
The first source array.
- src2
- Type: System..::..IntPtr
The second source array