http://www.emgu.com
Adds one matrix to another (c = a + b).
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void Add(
IInputArray a,
IInputArray b,
IOutputArray c,
IInputArray mask = null,
DepthType depthType = DepthType.Default,
Stream stream = null
)
Public Shared Sub Add (
a As IInputArray,
b As IInputArray,
c As IOutputArray,
Optional mask As IInputArray = Nothing,
Optional depthType As DepthType = DepthType.Default,
Optional stream As Stream = Nothing
)
public:
static void Add(
IInputArray^ a,
IInputArray^ b,
IOutputArray^ c,
IInputArray^ mask = nullptr,
DepthType depthType = DepthType::Default,
Stream^ stream = nullptr
)
static member Add :
a : IInputArray *
b : IInputArray *
c : IOutputArray *
?mask : IInputArray *
?depthType : DepthType *
?stream : Stream
(* Defaults:
let _mask = defaultArg mask null
let _depthType = defaultArg depthType DepthType.Default
let _stream = defaultArg stream null
*)
-> unit
Parameters
- a
- Type: Emgu.CVIInputArray
The first matrix to be added. - b
- Type: Emgu.CVIInputArray
The second matrix to be added. - c
- Type: Emgu.CVIOutputArray
The sum of the two matrix - mask (Optional)
- Type: Emgu.CVIInputArray
The optional mask that is used to select a subarray. Use null if not needed - depthType (Optional)
- Type: Emgu.CV.CvEnumDepthType
Optional depth of the output array. - 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