Performs per-element division of two arrays or a scalar by an array.
Namespace: OpenCvSharp.CPlusPlus
Assembly: OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void Divide( InputArray src1, InputArray src2, OutputArray dst, double scale = 1, int dtype = -1 )
Parameters
- src1
- Type: OpenCvSharp.CPlusPlusInputArray
The first source array - src2
- Type: OpenCvSharp.CPlusPlusInputArray
The second source array; should have the same size and same type as src1 - dst
- Type: OpenCvSharp.CPlusPlusOutputArray
The destination array; will have the same size and same type as src2 - scale (Optional)
- Type: SystemDouble
Scale factor [By default this is 1] - dtype (Optional)
- Type: SystemInt32
[Missing <param name="dtype"/> documentation for "M:OpenCvSharp.CPlusPlus.Cv2.Divide(OpenCvSharp.CPlusPlus.InputArray,OpenCvSharp.CPlusPlus.InputArray,OpenCvSharp.CPlusPlus.OutputArray,System.Double,System.Int32)"]
See Also