http://www.emgu.com
Makes multi-channel array out of several single-channel arrays
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
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