Concate the current image with another image vertically.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, TDepth> ConcateVertical(
	Image<TColor, TDepth> otherImage
)
Public Function ConcateVertical ( _
	otherImage As Image(Of TColor, TDepth) _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ ConcateVertical(
	Image<TColor, TDepth>^ otherImage
)

Parameters

otherImage
Image<(Of <(TColor, TDepth>)>)
The other image to concate

Return Value

A new image that is the vertical concatening of this image and otherImage

See Also