http://www.emgu.com
Makes multi-channel array out of several single-channel arrays
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void MergeFrom(
GpuMat[] gpuMats,
Stream stream = null
)
Public Sub MergeFrom (
gpuMats As GpuMat(),
Optional stream As Stream = Nothing
)
public:
void MergeFrom(
array<GpuMat^>^ gpuMats,
Stream^ stream = nullptr
)
member MergeFrom :
gpuMats : GpuMat[] *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- gpuMats
- Type: Emgu.CV.CudaGpuMat
An array of single channel GpuMat where each item
in the array represent a single channel of the 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