Click or drag to resize
CudaInvokeAdd Method
http://www.emgu.com
Adds one matrix to another (c = a + b).

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void Add(
	IInputArray a,
	IInputArray b,
	IOutputArray c,
	IInputArray mask = null,
	DepthType depthType = DepthType.Default,
	Stream stream = null
)

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

[Missing <param name="depthType"/> documentation for "M:Emgu.CV.Cuda.CudaInvoke.Add(Emgu.CV.IInputArray,Emgu.CV.IInputArray,Emgu.CV.IOutputArray,Emgu.CV.IInputArray,Emgu.CV.CvEnum.DepthType,Emgu.CV.Cuda.Stream)"]

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