http://www.emgu.com
Computes element-wise quotient of the two GpuMat (c = scale * a / b).
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void Divide(
IInputArray a,
IInputArray b,
IOutputArray c,
double scale = 1,
DepthType depthType = DepthType.Default,
Stream stream = null
)
Public Shared Sub Divide (
a As IInputArray,
b As IInputArray,
c As IOutputArray,
Optional scale As Double = 1,
Optional depthType As DepthType = DepthType.Default,
Optional stream As Stream = Nothing
)
public:
static void Divide(
IInputArray^ a,
IInputArray^ b,
IOutputArray^ c,
double scale = 1,
DepthType depthType = DepthType::Default,
Stream^ stream = nullptr
)
static member Divide :
a : IInputArray *
b : IInputArray *
c : IOutputArray *
?scale : float *
?depthType : DepthType *
?stream : Stream
(* Defaults:
let _scale = defaultArg scale 1
let _depthType = defaultArg depthType DepthType.Default
let _stream = defaultArg stream null
*)
-> unit
Parameters
- a
- Type: Emgu.CVIInputArray
The first GpuMat - b
- Type: Emgu.CVIInputArray
The second GpuMat - c
- Type: Emgu.CVIOutputArray
The element-wise quotient of the two GpuMat - scale (Optional)
- Type: SystemDouble
The scale - depthType (Optional)
- Type: Emgu.CV.CvEnumDepthType
[Missing <param name="depthType"/> documentation for "M:Emgu.CV.Cuda.CudaInvoke.Divide(Emgu.CV.IInputArray,Emgu.CV.IInputArray,Emgu.CV.IOutputArray,System.Double,Emgu.CV.CvEnum.DepthType,Emgu.CV.Cuda.Stream)"]
- stream (Optional)
- Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also