Concate the current image with another image horizontally.

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

Syntax

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

Parameters

otherImage
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