Click or drag to resize
CvInvokeMax Method
http://www.emgu.com
Calculates per-element maximum of two arrays: dst(I)=max(src1(I), src2(I)) All the arrays must have a single channel, the same data 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 Max(
	IInputArray src1,
	IInputArray src2,
	IOutputArray dst
)

Parameters

src1
Type: Emgu.CVIInputArray
The first source array
src2
Type: Emgu.CVIInputArray
The second source array.
dst
Type: Emgu.CVIOutputArray
The destination array
See Also