http://www.emgu.com
Makes multi-channel array out of several single-channel arrays
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public void MergeFrom(
GpuMat<TDepth>[] gpuMats,
Stream stream
) |
Visual Basic |
---|
Public Sub MergeFrom ( _
gpuMats As GpuMat(Of TDepth)(), _
stream As Stream _
) |
Visual C++ |
---|
public:
void MergeFrom(
array<GpuMat<TDepth>^>^ gpuMats,
Stream^ stream
) |
Parameters
- gpuMats
- Type: array<Emgu.CV.GPU..::..GpuMat<(Of <(<'TDepth>)>)>>[]()[][]
An array of single channel GpuMat where each item
in the array represent a single channel of the GpuMat
- stream
- Type: Emgu.CV.GPU..::..Stream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also