Cv2Divide Method (Double, InputArray, OutputArray, Int32)
|
Performs per-element division of two arrays or a scalar by an array.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static void Divide(
double scale,
InputArray src2,
OutputArray dst,
int dtype = -1
)
Public Shared Sub Divide (
scale As Double,
src2 As InputArray,
dst As OutputArray,
Optional dtype As Integer = -1
)
public:
static void Divide(
double scale,
InputArray^ src2,
OutputArray^ dst,
int dtype = -1
)
static member Divide :
scale : float *
src2 : InputArray *
dst : OutputArray *
?dtype : int
(* Defaults:
let _dtype = defaultArg dtype -1
*)
-> unit
OpenCvSharp.Cv2.Divide = function(scale, src2, dst, dtype);
Parameters
- scale
- Type: SystemDouble
Scale factor - src2
- Type: OpenCvSharpInputArray
The first source array - dst
- Type: OpenCvSharpOutputArray
The destination array; will have the same size and same type as src2 - dtype (Optional)
- Type: SystemInt32
See Also