computes element-wise quotient of a GpuMat and scalar (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 gpuMatDivide(
	IntPtr a,
	MCvScalar scalar,
	IntPtr c
)
Public Shared Sub gpuMatDivide ( _
	a As IntPtr, _
	scalar As MCvScalar, _
	c As IntPtr _
)
public:
static void gpuMatDivide(
	IntPtr a, 
	MCvScalar scalar, 
	IntPtr c
)

Parameters

a
IntPtr
The first GpuMat to be element-wise divided.
scalar
MCvScalar
The scalar to be divided
c
IntPtr
The result of the GpuMat divided by the scalar

See Also