http://www.emgu.com
Computes per-element minimum of two GpuMats (dst = min(src1, src2))
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void Min(
IInputArray src1,
IInputArray src2,
IOutputArray dst,
Stream stream = null
)
Public Shared Sub Min (
src1 As IInputArray,
src2 As IInputArray,
dst As IOutputArray,
Optional stream As Stream = Nothing
)
public:
static void Min(
IInputArray^ src1,
IInputArray^ src2,
IOutputArray^ dst,
Stream^ stream = nullptr
)
static member Min :
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