http://www.emgu.com
Adds one matrix to another (c = a + b). Supports CV_8UC1, CV_8UC4, CV_32SC1, CV_32FC1 types.

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)

Syntax

C#
public static void Add(
	IntPtr a,
	IntPtr b,
	IntPtr c,
	IntPtr stream
)
Visual Basic
Public Shared Sub Add ( _
	a As IntPtr, _
	b As IntPtr, _
	c As IntPtr, _
	stream As IntPtr _
)
Visual C++
public:
static void Add(
	IntPtr a, 
	IntPtr b, 
	IntPtr c, 
	IntPtr stream
)

Parameters

a
Type: System..::..IntPtr
The first matrix to be added.
b
Type: System..::..IntPtr
The second matrix to be added.
c
Type: System..::..IntPtr
The sum of the two matrix
stream
Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).

See Also