http://www.emgu.com
Concate the current image with another image horizontally.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Image<TColor, TDepth> ConcateHorizontal(
Image<TColor, TDepth> otherImage
) |
Visual Basic |
---|
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
) |
Return Value
A new image that is the horizontal concatening of this image and
otherImage
See Also