Concate the current image with another image horizontally.
Namespace: Emgu.CVAssembly: 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
)
Return Value
A new image that is the horizontal concatening of this image and
otherImage
See Also