Concate the current image with another image horizontally.

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

Syntax

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

Parameters

otherImage
Type: Emgu.CV..::.Image<(Of <(TColor, TDepth>)>)
The other image to concate

Return Value

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

See Also