Computes element-wise quotient of the two GpuMat (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.1106 (2.2.1.1106)

Syntax

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

Parameters

a
IntPtr
The first GpuMat
b
IntPtr
The second GpuMat
c
IntPtr
The element-wise quotient of the two GpuMat

See Also