Adds scalar to a matrix (c = a + scalar) Supports CV_32FC1 and CV_32FC2 type

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

Syntax

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

Parameters

a
IntPtr
The matrix to be added.
scalar
MCvScalar
The scalar to be added.
c
IntPtr
The sum of the matrix and the scalar

See Also