Click or drag to resize
CvInvokeDivide Method
http://www.emgu.com
Divides one array by another: dst(I)=scale * src1(I)/src2(I), if src1!=IntPtr.Zero; dst(I)=scale/src2(I), if src1==IntPtr.Zero; All the arrays must have the same type, and the same size (or ROI size)

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void Divide(
	IInputArray src1,
	IInputArray src2,
	IOutputArray dst,
	double scale = 1,
	DepthType dtype = DepthType.Default
)

Parameters

src1
Type: Emgu.CVIInputArray
The first source array. If the pointer is IntPtr.Zero, the array is assumed to be all 1s.
src2
Type: Emgu.CVIInputArray
The second source array
dst
Type: Emgu.CVIOutputArray
The destination array
scale (Optional)
Type: SystemDouble
Optional scale factor
dtype (Optional)
Type: Emgu.CV.CvEnumDepthType
Optional depth of the output array
See Also