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