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

Parameters

a
IntPtr
The matrix where subtraction take place
b
IntPtr
The matrix to be substracted
c
IntPtr
The result of a - b

See Also