http://www.emgu.com
Computes per-element maximum of two GpuMats (dst = max(src1, src2))
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void Max(
IInputArray src1,
IInputArray src2,
IOutputArray dst,
Stream stream = null
)
Public Shared Sub Max (
src1 As IInputArray,
src2 As IInputArray,
dst As IOutputArray,
Optional stream As Stream = Nothing
)
public:
static void Max(
IInputArray^ src1,
IInputArray^ src2,
IOutputArray^ dst,
Stream^ stream = nullptr
)
static member Max :
src1 : IInputArray *
src2 : IInputArray *
dst : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
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