Subtracts one matrix from another (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 gpuMatSubtract(
	IntPtr a,
	MCvScalar scalar,
	IntPtr c
)
Public Shared Sub gpuMatSubtract ( _
	a As IntPtr, _
	scalar As MCvScalar, _
	c As IntPtr _
)
public:
static void gpuMatSubtract(
	IntPtr a, 
	MCvScalar scalar, 
	IntPtr c
)

Parameters

a
IntPtr
The matrix to be substraced from
scalar
MCvScalar
The scalar to be substracted
c
IntPtr
The matrix substraced by the scalar

See Also