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.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
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