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.2.1.1150 (2.2.1.1150)

Syntax

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

Parameters

a
IntPtr
The first matrix to be added.
b
IntPtr
The second matrix to be added.
c
IntPtr
The sum of the two matrix

See Also