Create a multi-channel image from multiple gray scale images

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public Image(
	Image<Gray, TDepth>[] channels
)
Visual Basic (Declaration)
Public Sub New ( _
	channels As Image(Of Gray, TDepth)() _
)
Visual C++
public:
Image(
	array<Image<Gray, TDepth>^>^ channels
)

Parameters

channels
Type: array< Emgu.CV..::.Image<(Of <(Gray, TDepth>)>) >[]()[]
The image channels to be merged into a single image

See Also