Click or drag to resize
CudaInvokeMax Method
http://www.emgu.com
Computes per-element maximum of two GpuMats (dst = max(src1, src2))

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void Max(
	IInputArray src1,
	IInputArray src2,
	IOutputArray dst,
	Stream stream = null
)

Parameters

src1
Type: Emgu.CVIInputArray
The first GpuMat
src2
Type: Emgu.CVIInputArray
The second GpuMat
dst
Type: Emgu.CVIOutputArray
The result GpuMat
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