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.1.0.3408 (4.1.0.3408)
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